mm: fix null pointer dereference in wait_iff_congested()
authorZlatko Calusic <[email protected]>
Fri, 28 Dec 2012 02:16:38 +0000 (03:16 +0100)
committerLinus Torvalds <[email protected]>
Fri, 28 Dec 2012 16:42:39 +0000 (08:42 -0800)
commitecccd1248d6e6986130ffcc3b0d003cb46a485c0
treebc9fdf3caf32e846776f13985f837c89455cbb39
parent101e5c7470eb7f77ae87f966b9155f0dbb5b4698
mm: fix null pointer dereference in wait_iff_congested()

An unintended consequence of commit 4ae0a48b5efc ("mm: modify
pgdat_balanced() so that it also handles order-0") is that
wait_iff_congested() can now be called with NULL 'struct zone *'
producing kernel oops like this:

  BUG: unable to handle kernel NULL pointer dereference
  IP: [<ffffffff811542d9>] wait_iff_congested+0x59/0x140

This trivial patch fixes it.

Reported-by: Zhouping Liu <[email protected]>
Reported-and-tested-by: Sedat Dilek <[email protected]>
Cc: Andrew Morton <[email protected]>
Cc: Mel Gorman <[email protected]>
Cc: Hugh Dickins <[email protected]>
Signed-off-by: Zlatko Calusic <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
mm/vmscan.c