Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 132015
b: refs/heads/master
c: 1777f1a
h: refs/heads/master
i:
  132013: 206ebd6
  132011: 56a8ffd
  132007: d700f40
  131999: 85818c1
v: v3
  • Loading branch information
Krzysztof Hałasa authored and Herbert Xu committed Mar 4, 2009
1 parent 7ab7cb5 commit 566300c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 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: a760a6656e6f00bb0144a42a048cf0266646e22c
refs/heads/master: 1777f1a978153e8b887c1e1eb5160ac46098b142
6 changes: 4 additions & 2 deletions trunk/drivers/crypto/ixp4xx_crypto.c
Original file line number Diff line number Diff line change
Expand Up @@ -457,10 +457,12 @@ static int init_ixp_crypto(void)
if (!ctx_pool) {
goto err;
}
ret = qmgr_request_queue(SEND_QID, NPE_QLEN_TOTAL, 0, 0);
ret = qmgr_request_queue(SEND_QID, NPE_QLEN_TOTAL, 0, 0,
"ixp_crypto:out", NULL);
if (ret)
goto err;
ret = qmgr_request_queue(RECV_QID, NPE_QLEN, 0, 0);
ret = qmgr_request_queue(RECV_QID, NPE_QLEN, 0, 0,
"ixp_crypto:in", NULL);
if (ret) {
qmgr_release_queue(SEND_QID);
goto err;
Expand Down

0 comments on commit 566300c

Please sign in to comment.