aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/lockdep.c
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2010-04-05 12:16:37 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2010-04-05 12:16:37 -0400
commit9e74e7c81a24aee66024fc477786bd1de84e293b (patch)
tree8f172b7e5a86fe6b51e46f1d219e9c0707beab60 /kernel/lockdep.c
parent4946d54cb55e86a156216fcfeed5568514b0830f (diff)
parentd5e50daf92df8afcb701fd717b301985691e802f (diff)
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu: module: add stub for is_module_percpu_address percpu, module: implement and use is_kernel/module_percpu_address() module: encapsulate percpu handling better and record percpu_size
Diffstat (limited to 'kernel/lockdep.c')
-rw-r--r--kernel/lockdep.c21
1 files changed, 5 insertions, 16 deletions
diff --git a/kernel/lockdep.c b/kernel/lockdep.c
index c927a549db2c..9bbb9c841e48 100644
--- a/kernel/lockdep.c
+++ b/kernel/lockdep.c
@@ -582,9 +582,6 @@ static int static_obj(void *obj)
582 unsigned long start = (unsigned long) &_stext, 582 unsigned long start = (unsigned long) &_stext,
583 end = (unsigned long) &_end, 583 end = (unsigned long) &_end,
584 addr = (unsigned long) obj; 584 addr = (unsigned long) obj;
585#ifdef CONFIG_SMP
586 int i;
587#endif
588 585
589 /* 586 /*
590 * static variable? 587 * static variable?
@@ -595,24 +592,16 @@ static int static_obj(void *obj)
595 if (arch_is_kernel_data(addr)) 592 if (arch_is_kernel_data(addr))
596 return 1; 593 return 1;
597 594
598#ifdef CONFIG_SMP
599 /* 595 /*
600 * percpu var? 596 * in-kernel percpu var?
601 */ 597 */
602 for_each_possible_cpu(i) { 598 if (is_kernel_percpu_address(addr))
603 start = (unsigned long) &__per_cpu_start + per_cpu_offset(i); 599 return 1;
604 end = (unsigned long) &__per_cpu_start + PERCPU_ENOUGH_ROOM
605 + per_cpu_offset(i);
606
607 if ((addr >= start) && (addr < end))
608 return 1;
609 }
610#endif
611 600
612 /* 601 /*
613 * module var? 602 * module static or percpu var?
614 */ 603 */
615 return is_module_address(addr); 604 return is_module_address(addr) || is_module_percpu_address(addr);
616} 605}
617 606
618/* 607/*