scsi: scsi-sysfs: Adjust error returned for adapter reset request
authorweiping zhang <zhangweiping@didichuxing.com>
Thu, 10 Aug 2017 17:52:17 +0000 (01:52 +0800)
committerMartin K. Petersen <martin.petersen@oracle.com>
Fri, 25 Aug 2017 02:29:06 +0000 (22:29 -0400)
commit92227b8d3d7fd0c9a5b78c3967a756e83a43b36d
treebda123f86f2955c302beda0245a926da16685ac2
parent085e56766f74e8fdafb0e988c150e28464747cdc
scsi: scsi-sysfs: Adjust error returned for adapter reset request

If scsi_host_template->host_reset is NULL and the user requests an
adapter reset through

echo adapter > /sys/class/scsi_host/hostx/host_reset

-EINVAL will be returned even though the "adapter" argument is perfectly
valid.

Change this so that we only return -EINVAL if the provided string is
invalid.  If the host does not implement a ->host_reset function we'll
return -EOPNOTSUPP.

[mkp: tweaked patch description]

Signed-off-by: weiping zhang <zhangweiping@didichuxing.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/scsi_sysfs.c