Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 292955
b: refs/heads/master
c: 6f68794
h: refs/heads/master
i:
  292953: f71dbf4
  292951: c65b9cb
v: v3
  • Loading branch information
Robert Love authored and James Bottomley committed Feb 19, 2012
1 parent 820b346 commit ed31fde
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 7e5adcfb31c26a68b75a249ef1c7f52fc5ec6e1b
refs/heads/master: 6f68794c9283bbce3f7c91d3be34cb4f4f6ed960
6 changes: 3 additions & 3 deletions trunk/drivers/scsi/fcoe/fcoe.c
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ static struct fcoe_interface *fcoe_interface_create(struct net_device *netdev,
if (!fcoe) {
FCOE_NETDEV_DBG(netdev, "Could not allocate fcoe structure\n");
fcoe = ERR_PTR(-ENOMEM);
goto out_nomod;
goto out_putmod;
}

dev_hold(netdev);
Expand All @@ -400,12 +400,12 @@ static struct fcoe_interface *fcoe_interface_create(struct net_device *netdev,
kfree(fcoe);
dev_put(netdev);
fcoe = ERR_PTR(err);
goto out_nomod;
goto out_putmod;
}

goto out;

out_nomod:
out_putmod:
module_put(THIS_MODULE);
out:
return fcoe;
Expand Down

0 comments on commit ed31fde

Please sign in to comment.