[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <m33adwpuff.fsf@intrepid.localdomain>
Date: Mon, 02 Mar 2009 02:47:32 +0100
From: Krzysztof Halasa <khc@...waw.pl>
To: Herbert Xu <herbert@...dor.apana.org.au>,
Christian Hohnstaedt <chohnstaedt@...ominate.com>
Cc: lkml <linux-kernel@...r.kernel.org>
Subject: [PATCH] Build fix for ixp4xx_crypto in 2.6.29-rc*
There is another user of IXP4xx queue manager, fix it.
Signed-off-by: Krzysztof HaĆasa <khc@...waw.pl>
--- a/drivers/crypto/ixp4xx_crypto.c
+++ b/drivers/crypto/ixp4xx_crypto.c
@@ -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;
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists