summaryrefslogtreecommitdiffstats
path: root/drivers/scsi
diff options
context:
space:
mode:
authorMike Christie2009-10-22 01:27:44 +0200
committerJames Bottomley2009-12-04 19:00:31 +0100
commit8eca355fa8af660557fbdd5506bde1392eee9bfe (patch)
tree9c42e36295ad001aa4d898ae890be1d8d68b20d8 /drivers/scsi
parent[SCSI] libfc: removes unused disc_work and ex_list (diff)
downloadkernel-qcow2-linux-8eca355fa8af660557fbdd5506bde1392eee9bfe.tar.gz
kernel-qcow2-linux-8eca355fa8af660557fbdd5506bde1392eee9bfe.tar.xz
kernel-qcow2-linux-8eca355fa8af660557fbdd5506bde1392eee9bfe.zip
[SCSI] fcoe: initialize return value in fcoe_destroy
When doing echo ethX > /sys..../destroy I am getting errors when the tear down succeeds. It looks like the reason for this is because the rc var is not getting set when the destruction works. This just sets it to zero. Signed-off-by: Mike Christie <michaelc@cs.wisc.edu> Signed-off-by: Robert Love <robert.w.love@intel.com> Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers/scsi')
-rw-r--r--drivers/scsi/fcoe/fcoe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/fcoe/fcoe.c b/drivers/scsi/fcoe/fcoe.c
index 7c898875838f..8702c8d728dd 100644
--- a/drivers/scsi/fcoe/fcoe.c
+++ b/drivers/scsi/fcoe/fcoe.c
@@ -1631,7 +1631,7 @@ static int fcoe_destroy(const char *buffer, struct kernel_param *kp)
{
struct fcoe_interface *fcoe;
struct net_device *netdev;
- int rc;
+ int rc = 0;
mutex_lock(&fcoe_config_mutex);
#ifdef CONFIG_FCOE_MODULE