blob: 68a9530196f299c518856e6e4926376fcc4560cf [file] [log] [blame]
Arjan van de Ven22a9d642009-01-07 08:45:46 -08001/*
2 * async.h: Asynchronous function calls for boot performance
3 *
4 * (C) Copyright 2009 Intel Corporation
5 * Author: Arjan van de Ven <arjan@linux.intel.com>
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; version 2
10 * of the License.
11 */
12
13#include <linux/types.h>
14#include <linux/list.h>
15
16typedef u64 async_cookie_t;
17typedef void (async_func_ptr) (void *data, async_cookie_t cookie);
18
19extern async_cookie_t async_schedule(async_func_ptr *ptr, void *data);
Cornelia Huck766ccb92009-01-20 15:31:31 +010020extern async_cookie_t async_schedule_domain(async_func_ptr *ptr, void *data,
21 struct list_head *list);
Arjan van de Ven22a9d642009-01-07 08:45:46 -080022extern void async_synchronize_full(void);
Cornelia Huck766ccb92009-01-20 15:31:31 +010023extern void async_synchronize_full_domain(struct list_head *list);
Arjan van de Ven22a9d642009-01-07 08:45:46 -080024extern void async_synchronize_cookie(async_cookie_t cookie);
Cornelia Huck766ccb92009-01-20 15:31:31 +010025extern void async_synchronize_cookie_domain(async_cookie_t cookie,
26 struct list_head *list);
Arjan van de Ven22a9d642009-01-07 08:45:46 -080027