From mboxrd@z Thu Jan 1 00:00:00 1970 From: Hannes Reinecke Subject: [PATCH 3/5] scsi-disk: Fixup debugging statement Date: Tue, 5 Jul 2011 13:03:33 +0200 Message-ID: <1309863815-28236-4-git-send-email-hare@suse.de> References: <1309863815-28236-1-git-send-email-hare@suse.de> <1309863815-28236-2-git-send-email-hare@suse.de> <1309863815-28236-3-git-send-email-hare@suse.de> Cc: Paolo Bonzini , Stefan Haynoczi , kvm@vger.kernel.org, Alexander Graf , Hannes Reinecke To: qemu-devel@nongnu.org Return-path: Received: from cantor2.suse.de ([195.135.220.15]:54693 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755740Ab1GELEz (ORCPT ); Tue, 5 Jul 2011 07:04:55 -0400 In-Reply-To: <1309863815-28236-3-git-send-email-hare@suse.de> Sender: kvm-owner@vger.kernel.org List-ID: A debugging statement wasn't converted to the new interface. Signed-off-by: Hannes Reinecke --- hw/scsi-disk.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/hw/scsi-disk.c b/hw/scsi-disk.c index c2a99fe..5804662 100644 --- a/hw/scsi-disk.c +++ b/hw/scsi-disk.c @@ -1007,7 +1007,7 @@ static int32_t scsi_send_command(SCSIRequest *req, uint8_t *buf) command = buf[0]; outbuf = (uint8_t *)r->iov.iov_base; - DPRINTF("Command: lun=%d tag=0x%x data=0x%02x", lun, tag, buf[0]); + DPRINTF("Command: lun=%d tag=0x%x data=0x%02x", req->lun, req->tag, buf[0]); if (scsi_req_parse(&r->req, buf) != 0) { BADF("Unsupported command length, command %x\n", command); -- 1.7.3.4