diff options
author | Peter Oberparleiter <[email protected]> | 2015-10-27 10:49:54 +0100 |
---|---|---|
committer | Martin K. Petersen <[email protected]> | 2015-11-09 12:26:31 -0500 |
commit | 863e02d0e173bb9d8cea6861be22820b25c076cc (patch) | |
tree | 3835a8c70034c73503159edcb280c3a1c5884b29 | |
parent | 92e6246c8e02f4ce9960731e2411e49c1f0fabbf (diff) |
scsi_sysfs: Fix queue_ramp_up_period return code
Writing a number to /sys/bus/scsi/devices/<sdev>/queue_ramp_up_period
returns the value of that number instead of the number of bytes written.
This behavior can confuse programs expecting POSIX write() semantics.
Fix this by returning the number of bytes written instead.
Signed-off-by: Peter Oberparleiter <[email protected]>
Reviewed-by: Hannes Reinecke <[email protected]>
Cc: [email protected]
Reviewed-by: Matthew R. Ochs <[email protected]>
Reviewed-by: Ewan D. Milne <[email protected]>
Signed-off-by: Martin K. Petersen <[email protected]>
-rw-r--r-- | drivers/scsi/scsi_sysfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/scsi_sysfs.c b/drivers/scsi/scsi_sysfs.c index fdcf0abe613f..8b7fa8aece66 100644 --- a/drivers/scsi/scsi_sysfs.c +++ b/drivers/scsi/scsi_sysfs.c @@ -921,7 +921,7 @@ sdev_store_queue_ramp_up_period(struct device *dev, return -EINVAL; sdev->queue_ramp_up_period = msecs_to_jiffies(period); - return period; + return count; } static DEVICE_ATTR(queue_ramp_up_period, S_IRUGO | S_IWUSR, |