|
@@ -504,27 +504,23 @@ void unlock_ipi_call_lock(void)
|
|
|
spin_unlock_irq(&call_lock);
|
|
|
}
|
|
|
|
|
|
-static struct call_data_struct * call_data;
|
|
|
-
|
|
|
-/*
|
|
|
- * this function sends a 'generic call function' IPI to all other CPUs
|
|
|
- * in the system.
|
|
|
- */
|
|
|
-
|
|
|
-int smp_call_function (void (*func) (void *info), void *info, int nonatomic,
|
|
|
- int wait)
|
|
|
-/*
|
|
|
- * [SUMMARY] Run a function on all other CPUs.
|
|
|
- * <func> The function to run. This must be fast and non-blocking.
|
|
|
- * <info> An arbitrary pointer to pass to the function.
|
|
|
- * <nonatomic> currently unused.
|
|
|
- * <wait> If true, wait (atomically) until function has completed on other CPUs.
|
|
|
- * [RETURNS] 0 on success, else a negative status code. Does not return until
|
|
|
+static struct call_data_struct *call_data;
|
|
|
+
|
|
|
+/**
|
|
|
+ * smp_call_function(): Run a function on all other CPUs.
|
|
|
+ * @func: The function to run. This must be fast and non-blocking.
|
|
|
+ * @info: An arbitrary pointer to pass to the function.
|
|
|
+ * @nonatomic: currently unused.
|
|
|
+ * @wait: If true, wait (atomically) until function has completed on other CPUs.
|
|
|
+ *
|
|
|
+ * Returns 0 on success, else a negative status code. Does not return until
|
|
|
* remote CPUs are nearly ready to execute <<func>> or are or have executed.
|
|
|
*
|
|
|
* You must not call this function with disabled interrupts or from a
|
|
|
* hardware interrupt handler or from a bottom half handler.
|
|
|
*/
|
|
|
+int smp_call_function (void (*func) (void *info), void *info, int nonatomic,
|
|
|
+ int wait)
|
|
|
{
|
|
|
struct call_data_struct data;
|
|
|
int cpus;
|