Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758920AbZCBBrp (ORCPT ); Sun, 1 Mar 2009 20:47:45 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1757256AbZCBBrh (ORCPT ); Sun, 1 Mar 2009 20:47:37 -0500 Received: from khc.piap.pl ([195.187.100.11]:33239 "EHLO khc.piap.pl" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757093AbZCBBrg convert rfc822-to-8bit (ORCPT ); Sun, 1 Mar 2009 20:47:36 -0500 To: Herbert Xu , Christian Hohnstaedt Cc: lkml Subject: [PATCH] Build fix for ixp4xx_crypto in 2.6.29-rc* From: Krzysztof Halasa Date: Mon, 02 Mar 2009 02:47:32 +0100 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-2 Content-Transfer-Encoding: 8BIT Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 885 Lines: 26 There is another user of IXP4xx queue manager, fix it. Signed-off-by: Krzysztof Ha?asa --- 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@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/