aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/fcoe/fcoe.c
diff options
context:
space:
mode:
authorMike Christie <michaelc@cs.wisc.edu>2009-10-21 16:27:44 -0700
committerJames Bottomley <James.Bottomley@suse.de>2009-12-04 12:00:31 -0600
commit8eca355fa8af660557fbdd5506bde1392eee9bfe (patch)
tree9c42e36295ad001aa4d898ae890be1d8d68b20d8 /drivers/scsi/fcoe/fcoe.c
parent[SCSI] libfc: removes unused disc_work and ex_list (diff)
downloadlinux-dev-8eca355fa8af660557fbdd5506bde1392eee9bfe.tar.xz
linux-dev-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 '')
-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