]> www.infradead.org Git - users/jedix/linux-maple.git/commit
writeback: fix dereferencing NULL bdi->dev on trace_writeback_queue
authorWu Fengguang <fengguang.wu@intel.com>
Sun, 5 Feb 2012 02:54:03 +0000 (20:54 -0600)
committerMaxim Uvarov <maxim.uvarov@oracle.com>
Wed, 4 Apr 2012 21:38:49 +0000 (14:38 -0700)
commit950c59856b44507d1d20152adc832ec59a01fc2a
tree5c63333d3a0242dd2238b387a7308ab6337927cf
parenta9eb253e76830c86060916fbc8f5567ea4712c57
writeback: fix dereferencing NULL bdi->dev on trace_writeback_queue

commit 977b7e3a52a7421ad33a393a38ece59f3d41c2fa upstream.

When a SD card is hot removed without umount, del_gendisk() will call
bdi_unregister() without destroying/freeing it. This leaves the bdi in
the bdi->dev = NULL, bdi->wb.task = NULL, bdi->bdi_list removed state.

When sync(2) gets the bdi before bdi_unregister() and calls
bdi_queue_work() after the unregister, trace_writeback_queue will be
dereferencing the NULL bdi->dev. Fix it with a simple test for NULL.

LKML-reference: http://lkml.org/lkml/2012/1/18/346
Reported-by: Rabin Vincent <rabin@rab.in>
Tested-by: Namjae Jeon <linkinjeon@gmail.com>
Signed-off-by: Wu Fengguang <fengguang.wu@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
include/trace/events/writeback.h