Skip to content

Commit 1777f1a

Browse files
Krzysztof Hałasaherbertx
authored andcommitted
crypto: ixp4xx - Fix qmgr_request_queue build failure
There is another user of IXP4xx queue manager, fix it. Signed-off-by: Krzysztof Hałasa <[email protected]> Signed-off-by: Herbert Xu <[email protected]>
1 parent a760a66 commit 1777f1a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

drivers/crypto/ixp4xx_crypto.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -457,10 +457,12 @@ static int init_ixp_crypto(void)
457457
if (!ctx_pool) {
458458
goto err;
459459
}
460-
ret = qmgr_request_queue(SEND_QID, NPE_QLEN_TOTAL, 0, 0);
460+
ret = qmgr_request_queue(SEND_QID, NPE_QLEN_TOTAL, 0, 0,
461+
"ixp_crypto:out", NULL);
461462
if (ret)
462463
goto err;
463-
ret = qmgr_request_queue(RECV_QID, NPE_QLEN, 0, 0);
464+
ret = qmgr_request_queue(RECV_QID, NPE_QLEN, 0, 0,
465+
"ixp_crypto:in", NULL);
464466
if (ret) {
465467
qmgr_release_queue(SEND_QID);
466468
goto err;

0 commit comments

Comments
 (0)