Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 218406
b: refs/heads/master
c: 18edc84
h: refs/heads/master
v: v3
  • Loading branch information
Divy Le Ray authored and David S. Miller committed Oct 25, 2010
1 parent 30ff75b commit 98f4bb1
Show file tree
Hide file tree
Showing 2 changed files with 6 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: e341b2ddc1e8e5ff998ac5462dc5138775d1d492
refs/heads/master: 18edc84cf15cbe114dcdf7e8612ee52586d0aad7
8 changes: 5 additions & 3 deletions trunk/drivers/net/cxgb3/cxgb3_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1266,11 +1266,13 @@ static int cxgb_up(struct adapter *adap)
}

if (!(adap->flags & QUEUES_BOUND)) {
err = bind_qsets(adap);
if (err) {
CH_ERR(adap, "failed to bind qsets, err %d\n", err);
int ret = bind_qsets(adap);

if (ret < 0) {
CH_ERR(adap, "failed to bind qsets, err %d\n", ret);
t3_intr_disable(adap);
free_irq_resources(adap);
err = ret;
goto out;
}
adap->flags |= QUEUES_BOUND;
Expand Down

0 comments on commit 98f4bb1

Please sign in to comment.