Messages in this thread |  | | | Date | Mon, 29 Mar 2010 09:39:57 +0800 | | From | Lai Jiangshan <> | | Subject | Re: [RFC patch] extable and module add object is static |
| |
Mathieu Desnoyers wrote: > +static int core_object_is_static(void *obj) > +{ [...] > + if (addr >= (unsigned long)__per_cpu_start && > + addr <= (unsigned long)__per_cpu_end) > + return 1;
This may only correct for UP. You may need arch-special codes for SMP.
|  |