diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2009-01-10 21:58:09 -0800 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-01-11 19:12:52 +0100 |
commit | f7df8ed164996cd2c6aca9674388be6ef78d8b37 (patch) | |
tree | cdd2cb084b8aa19f6688b24aefe71d170a8c8c22 /drivers/oprofile/buffer_sync.h | |
parent | fbd59a8d1f7cf325fdb6828659f1fb76631e87b3 (diff) | |
download | linux-3.10-f7df8ed164996cd2c6aca9674388be6ef78d8b37.tar.gz linux-3.10-f7df8ed164996cd2c6aca9674388be6ef78d8b37.tar.bz2 linux-3.10-f7df8ed164996cd2c6aca9674388be6ef78d8b37.zip |
cpumask: convert misc driver functions
Impact: use new cpumask API.
Convert misc driver functions to use struct cpumask.
To Do:
- Convert iucv_buffer_cpumask to cpumask_var_t.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: Mike Travis <travis@sgi.com>
Acked-by: Dean Nelson <dcn@sgi.com>
Cc: Robert Richter <robert.richter@amd.com>
Cc: oprofile-list@lists.sf.net
Cc: Jeremy Fitzhardinge <jeremy@xensource.com>
Cc: Chris Wright <chrisw@sous-sol.org>
Cc: virtualization@lists.osdl.org
Cc: xen-devel@lists.xensource.com
Cc: Ursula Braun <ursula.braun@de.ibm.com>
Cc: linux390@de.ibm.com
Cc: linux-s390@vger.kernel.org
Diffstat (limited to 'drivers/oprofile/buffer_sync.h')
-rw-r--r-- | drivers/oprofile/buffer_sync.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/oprofile/buffer_sync.h b/drivers/oprofile/buffer_sync.h index 3110732c183..0ebf5db6267 100644 --- a/drivers/oprofile/buffer_sync.h +++ b/drivers/oprofile/buffer_sync.h @@ -19,4 +19,8 @@ void sync_stop(void); /* sync the given CPU's buffer */ void sync_buffer(int cpu); +/* initialize/destroy the buffer system. */ +int buffer_sync_init(void); +void buffer_sync_cleanup(void); + #endif /* OPROFILE_BUFFER_SYNC_H */ |