aboutsummaryrefslogtreecommitdiffstats
path: root/mm
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2009-03-15 01:03:11 -0400
committerIngo Molnar <mingo@elte.hu>2009-03-30 16:59:44 -0400
commit19cefdffbfe0f7e280f21e80875937e8700e99e2 (patch)
tree7a82d84609af22469d3f96d371d14b7dcf65d1f2 /mm
parent6700ec65c207068a81a535e9dca616fefac21671 (diff)
lockdep: annotate reclaim context (__GFP_NOFS), fix SLOB
Impact: build fix fix typo in mm/slob.c: mm/slob.c:469: error: ‘flags’ undeclared (first use in this function) mm/slob.c:469: error: (Each undeclared identifier is reported only once mm/slob.c:469: error: for each function it appears in.) Cc: Nick Piggin <npiggin@suse.de> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> LKML-Reference: <20090128135457.350751756@chello.nl> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'mm')
-rw-r--r--mm/slob.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/slob.c b/mm/slob.c
index 1264799df5d1..4b1c0c1d63cb 100644
--- a/mm/slob.c
+++ b/mm/slob.c
@@ -464,7 +464,7 @@ void *__kmalloc_node(size_t size, gfp_t gfp, int node)
464 unsigned int *m; 464 unsigned int *m;
465 int align = max(ARCH_KMALLOC_MINALIGN, ARCH_SLAB_MINALIGN); 465 int align = max(ARCH_KMALLOC_MINALIGN, ARCH_SLAB_MINALIGN);
466 466
467 lockdep_trace_alloc(flags); 467 lockdep_trace_alloc(gfp);
468 468
469 if (size < PAGE_SIZE - align) { 469 if (size < PAGE_SIZE - align) {
470 if (!size) 470 if (!size)