Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 261728
b: refs/heads/master
c: 6f06e3a
h: refs/heads/master
v: v3
  • Loading branch information
Hillf Danton authored and James Bottomley committed Jul 28, 2011
1 parent 1152add commit 9ef8ba8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 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: 688fd36427050a87b19f6830c882ee77bb851ecf
refs/heads/master: 6f06e3a7b2f2d840d42a0c2b9906f444e8f2eba6
5 changes: 4 additions & 1 deletion trunk/drivers/scsi/libfc/fc_exch.c
Original file line number Diff line number Diff line change
Expand Up @@ -2465,8 +2465,11 @@ int fc_setup_exch_mgr(void)

fc_exch_workqueue = create_singlethread_workqueue("fc_exch_workqueue");
if (!fc_exch_workqueue)
return -ENOMEM;
goto err;
return 0;
err:
kmem_cache_destroy(fc_em_cachep);
return -ENOMEM;
}

/**
Expand Down

0 comments on commit 9ef8ba8

Please sign in to comment.