Re: 2.6.16-rc6-mm2

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



* Christoph Lameter <[email protected]> wrote:

> Sorry that patch was still against mm1. Here is a fixed up version 
> that applies cleanly against mm2:

i have applied both patches you sent in this thread but it still 
triggers tons of messages:

 printk: 104 messages suppressed.
 BUG: using smp_processor_id() in preemptible [00000001] code: distccd/9263
 caller is __handle_mm_fault+0x58/0xd70
  [<c0105d6f>] show_trace+0xd/0x10
  [<c0105d89>] dump_stack+0x17/0x1a
  [<c0585ab4>] debug_smp_processor_id+0x88/0xa0
  [<c016eb63>] __handle_mm_fault+0x58/0xd70
  [<c110ff1c>] do_page_fault+0x2e5/0x672
  [<c0104a69>] error_code+0x39/0x40
  [<c110eade>] __kprobes_text_start+0x6/0x14

trying to fix it i realized that i'd have to touch tons of 
architectures, which all duplicate this piece of code:

/* Use these for per-cpu local_t variables: on some archs they are
 * much more efficient than these naive implementations.  Note they take
 * a variable, not an address.
 */
#define cpu_local_read(v)	local_read(&__get_cpu_var(v))
#define cpu_local_set(v, i)	local_set(&__get_cpu_var(v), (i))
#define cpu_local_inc(v)	local_inc(&__get_cpu_var(v))
#define cpu_local_dec(v)	local_dec(&__get_cpu_var(v))
#define cpu_local_add(i, v)	local_add((i), &__get_cpu_var(v))
#define cpu_local_sub(i, v)	local_sub((i), &__get_cpu_var(v))

#define __cpu_local_inc(v)	cpu_local_inc(v)
#define __cpu_local_dec(v)	cpu_local_dec(v)
#define __cpu_local_add(i, v)	cpu_local_add((i), (v))
#define __cpu_local_sub(i, v)	cpu_local_sub((i), (v))

that code must all be consolidated into a header in asm-generic, so that 
the per-arch file only implements _truly_ per-arch logic.

	Ingo
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[Index of Archives]     [Kernel Newbies]     [Netfilter]     [Bugtraq]     [Photo]     [Stuff]     [Gimp]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Video 4 Linux]     [Linux for the blind]     [Linux Resources]
  Powered by Linux