]> git.baikalelectronics.ru Git - kernel.git/commit
block: Don't access request after it might be freed
authorRoland Dreier <roland@purestorage.com>
Thu, 22 Nov 2012 10:00:11 +0000 (02:00 -0800)
committerJens Axboe <axboe@kernel.dk>
Fri, 23 Nov 2012 13:32:55 +0000 (14:32 +0100)
commit3aee0fff2b1d07758566771fbdea06d503cab208
treec6d5444d06949edfd5d13fa0beed0992dd2ae469
parent4682e96daf1c17c19bf991887905fd29bc666ee6
block: Don't access request after it might be freed

After we've done __elv_add_request() and __blk_run_queue() in
blk_execute_rq_nowait(), the request might finish and be freed
immediately.  Therefore checking if the type is REQ_TYPE_PM_RESUME
isn't safe afterwards, because if it isn't, rq might be gone.
Instead, check beforehand and stash the result in a temporary.

This fixes crashes in blk_execute_rq_nowait() I get occasionally when
running with lots of memory debugging options enabled -- I think this
race is usually harmless because the window for rq to be reallocated
is so small.

Signed-off-by: Roland Dreier <roland@purestorage.com>
Cc: stable@kernel.org
Signed-off-by: Jens Axboe <axboe@kernel.dk>
block/blk-exec.c