linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] drivers/block/xen-blkback: preq.dev is used without initialized
@ 2013-02-28  2:34 Chen Gang
  2013-03-01 13:43 ` Konrad Rzeszutek Wilk
  2013-04-03 12:56 ` William Dauchy
  0 siblings, 2 replies; 10+ messages in thread
From: Chen Gang @ 2013-02-28  2:34 UTC (permalink / raw)
  To: Konrad Rzeszutek Wilk, Jan Beulich, roger.pau,
	stefano.stabellini, dgdegra
  Cc: xen-devel, linux-kernel


  if call xen_vbd_translate failed, the preq.dev will be not initialized.
  so use blkif->vbd.pdevice instead (still better to print relative info).

additional information:
  before commit 01c681d4c70d64cb72142a2823f27c4146a02e63, the value printed
  here was bogus, as it was the guest provided value from req->u.rw.handle
  rather than the actual device.

Signed-off-by: Chen Gang <gang.chen@asianux.com>
Acked-by: Jan Beulich <JBeulich@suse.com>
---
 drivers/block/xen-blkback/blkback.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/drivers/block/xen-blkback/blkback.c b/drivers/block/xen-blkback/blkback.c
index de1f319..6d1cc3d 100644
--- a/drivers/block/xen-blkback/blkback.c
+++ b/drivers/block/xen-blkback/blkback.c
@@ -904,7 +904,8 @@ static int dispatch_rw_block_io(struct xen_blkif *blkif,
 		pr_debug(DRV_PFX "access denied: %s of [%llu,%llu] on dev=%04x\n",
 			 operation == READ ? "read" : "write",
 			 preq.sector_number,
-			 preq.sector_number + preq.nr_sects, preq.dev);
+			 preq.sector_number + preq.nr_sects,
+			 blkif->vbd.pdevice);
 		goto fail_response;
 	}
 
-- 
1.7.7.6

^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2013-04-03 16:38 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-02-28  2:34 [PATCH v2] drivers/block/xen-blkback: preq.dev is used without initialized Chen Gang
2013-03-01 13:43 ` Konrad Rzeszutek Wilk
2013-03-05  0:54   ` Chen Gang
2013-04-03 12:56 ` William Dauchy
2013-04-03 13:01   ` Jan Beulich
2013-04-03 13:25     ` William Dauchy
2013-04-03 13:42       ` Jan Beulich
2013-04-03 13:56         ` William Dauchy
2013-04-03 14:34           ` Jan Beulich
2013-04-03 16:37             ` Konrad Rzeszutek Wilk

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).