diff options
author | Glenn Elliott <gelliott@cs.unc.edu> | 2012-03-30 16:43:52 -0400 |
---|---|---|
committer | Glenn Elliott <gelliott@cs.unc.edu> | 2012-03-30 16:43:52 -0400 |
commit | 62f2907f445b08f958acf1cc1a0c29736d4ba206 (patch) | |
tree | a11743eddcc125c9c3ac0c527078338e3d01b295 /kernel | |
parent | d0961e328a2a4c026c884c768b798cb882922708 (diff) |
Nested inheritance with fine-grained locking.
Minor hack to lockdep was required too allow
the inheritance propagation locking logic to
work.
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/lockdep.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/kernel/lockdep.c b/kernel/lockdep.c index 298c9276dfdb..4b3107a244fa 100644 --- a/kernel/lockdep.c +++ b/kernel/lockdep.c | |||
@@ -583,6 +583,10 @@ static int static_obj(void *obj) | |||
583 | end = (unsigned long) &_end, | 583 | end = (unsigned long) &_end, |
584 | addr = (unsigned long) obj; | 584 | addr = (unsigned long) obj; |
585 | 585 | ||
586 | // GLENN | ||
587 | return 1; | ||
588 | |||
589 | |||
586 | /* | 590 | /* |
587 | * static variable? | 591 | * static variable? |
588 | */ | 592 | */ |