aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi
diff options
context:
space:
mode:
authorNao Nishijima <nao.nishijima.xt@hitachi.com>2011-08-25 05:04:14 -0400
committerJames Bottomley <JBottomley@Parallels.com>2011-08-29 03:16:20 -0400
commitfe2d1851e9dc69da8de5dfe3fc748d041c31e25a (patch)
tree06bcf345255dcb0265622cadcff2d567cebc0be0 /drivers/scsi
parenta72c5e5eb738033938ab30d6a634b74d1d060f10 (diff)
[SCSI] sd: Use sd_printk() instead of printk()
sd_ioctl() still use printk() for log output. It should use sd_printk() instead of printk(), as well as other sd_*. All SCSI messages should output via s*_printk() instead of printk(). Signed-off-by: Nao Nishijima <nao.nishijima.xt@hitachi.com> Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Diffstat (limited to 'drivers/scsi')
-rw-r--r--drivers/scsi/sd.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/scsi/sd.c b/drivers/scsi/sd.c
index 953773cb26d9..a7942e5c8be8 100644
--- a/drivers/scsi/sd.c
+++ b/drivers/scsi/sd.c
@@ -1066,12 +1066,13 @@ static int sd_ioctl(struct block_device *bdev, fmode_t mode,
1066 unsigned int cmd, unsigned long arg) 1066 unsigned int cmd, unsigned long arg)
1067{ 1067{
1068 struct gendisk *disk = bdev->bd_disk; 1068 struct gendisk *disk = bdev->bd_disk;
1069 struct scsi_device *sdp = scsi_disk(disk)->device; 1069 struct scsi_disk *sdkp = scsi_disk(disk);
1070 struct scsi_device *sdp = sdkp->device;
1070 void __user *p = (void __user *)arg; 1071 void __user *p = (void __user *)arg;
1071 int error; 1072 int error;
1072 1073
1073 SCSI_LOG_IOCTL(1, printk("sd_ioctl: disk=%s, cmd=0x%x\n", 1074 SCSI_LOG_IOCTL(1, sd_printk(KERN_INFO, sdkp, "sd_ioctl: disk=%s, "
1074 disk->disk_name, cmd)); 1075 "cmd=0x%x\n", disk->disk_name, cmd));
1075 1076
1076 /* 1077 /*
1077 * If we are in the middle of error recovery, don't let anyone 1078 * If we are in the middle of error recovery, don't let anyone