diff options
author | Petr Uzel <petr.uzel@suse.cz> | 2011-10-21 13:31:09 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-11-26 09:10:32 -0800 |
commit | d4da9e6f97a19945901c923e3f8123d40d3524da (patch) | |
tree | 4c329239099ce2345f524cb54cf013b30bfbac87 /drivers | |
parent | 350f6cb41bfba103222b6de79deb642f4efd2a33 (diff) | |
download | lwn-d4da9e6f97a19945901c923e3f8123d40d3524da.tar.gz lwn-d4da9e6f97a19945901c923e3f8123d40d3524da.zip |
st: fix race in st_scsi_execute_end
commit c68bf8eeaa57c852e74adcf597237be149eef830 upstream.
The call to complete() in st_scsi_execute_end() wakes up sleeping thread
in write_behind_check(), which frees the st_request, thus invalidating
the pointer to the associated bio structure, which is then passed to the
blk_rq_unmap_user(). Fix by storing pointer to bio structure into
temporary local variable.
This bug is present since at least linux-2.6.32.
Signed-off-by: Petr Uzel <petr.uzel@suse.cz>
Reported-by: Juergen Groß <juergen.gross@ts.fujitsu.com>
Reviewed-by: Jan Kara <jack@suse.cz>
Acked-by: Kai Mäkisara <kai.makisara@kolumbus.fi>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/scsi/st.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/scsi/st.c b/drivers/scsi/st.c index 5081f97cbdaa..723da1d14e83 100644 --- a/drivers/scsi/st.c +++ b/drivers/scsi/st.c @@ -461,14 +461,16 @@ static void st_scsi_execute_end(struct request *req, int uptodate) { struct st_request *SRpnt = req->end_io_data; struct scsi_tape *STp = SRpnt->stp; + struct bio *tmp; STp->buffer->cmdstat.midlevel_result = SRpnt->result = req->errors; STp->buffer->cmdstat.residual = req->resid_len; + tmp = SRpnt->bio; if (SRpnt->waiting) complete(SRpnt->waiting); - blk_rq_unmap_user(SRpnt->bio); + blk_rq_unmap_user(tmp); __blk_put_request(req->q, req); } |