Messages in this thread |  | | From | Rusty Russell <> | | Subject | Re: [PATCH 2/3] generic-ipi: remove kmalloc() | | Date | Wed, 18 Feb 2009 16:01:06 +1030 |
| |
On Wednesday 18 February 2009 08:29:06 Peter Zijlstra wrote: > Remove the use of kmalloc() from the smp_call_function_*() calls.
This patch is actually quite nice. Not sure it's correct, but it's neat :)
One minor quibble:
> + data = &per_cpu(csd_data, me);
"data = &__get_cpu_var(csd_data);" is slightly preferred. A few less cycles.
Thanks, Rusty.
|  |