From patchwork Sat Dec 19 02:09:56 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Scott Feldman X-Patchwork-Id: 41460 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id CEAABB7088 for ; Sat, 19 Dec 2009 13:10:20 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932703AbZLSCKA (ORCPT ); Fri, 18 Dec 2009 21:10:00 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S932694AbZLSCJ7 (ORCPT ); Fri, 18 Dec 2009 21:09:59 -0500 Received: from sj-iport-4.cisco.com ([171.68.10.86]:13472 "EHLO sj-iport-4.cisco.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932684AbZLSCJ5 (ORCPT ); Fri, 18 Dec 2009 21:09:57 -0500 Authentication-Results: sj-iport-4.cisco.com; dkim=neutral (message not signed) header.i=none X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: ApsEAE/EK0urRN+J/2dsb2JhbACECrsDhwCQD4Evgi1SBA X-IronPort-AV: E=Sophos;i="4.47,421,1257120000"; d="scan'208";a="65056856" Received: from sj-core-3.cisco.com ([171.68.223.137]) by sj-iport-4.cisco.com with ESMTP; 19 Dec 2009 02:09:56 +0000 Received: from savbu-pc100.cisco.com (savbu-pc100.cisco.com [10.193.164.29]) by sj-core-3.cisco.com (8.13.8/8.14.3) with ESMTP id nBJ29uXZ020573; Sat, 19 Dec 2009 02:09:56 GMT From: Scott Feldman Subject: [net-next PATCH 4/6] enic: Bug fix: align desc ring sizes to 32 descs To: davem@davemloft.net Cc: netdev@vger.kernel.org Date: Fri, 18 Dec 2009 18:09:56 -0800 Message-ID: <20091219020956.2745.51293.stgit@savbu-pc100.cisco.com> In-Reply-To: <20091219020758.2745.85264.stgit@savbu-pc100.cisco.com> References: <20091219020758.2745.85264.stgit@savbu-pc100.cisco.com> User-Agent: StGIT/0.12.1 MIME-Version: 1.0 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org enic: Bug fix: align desc ring sizes to 32 descs Previous driver was aligning ring sizes to 16 descs, but hardware actually wants desc ring sizes to be aligned to 32 descs. Signed-off-by: Scott Feldman Signed-off-by: Vasanthy Kolluri --- drivers/net/enic/enic_res.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/drivers/net/enic/enic_res.c b/drivers/net/enic/enic_res.c index 3211114..a605da1 100644 --- a/drivers/net/enic/enic_res.c +++ b/drivers/net/enic/enic_res.c @@ -74,13 +74,13 @@ int enic_get_vnic_config(struct enic *enic) min_t(u32, ENIC_MAX_WQ_DESCS, max_t(u32, ENIC_MIN_WQ_DESCS, c->wq_desc_count)); - c->wq_desc_count &= 0xfffffff0; /* must be aligned to groups of 16 */ + c->wq_desc_count &= 0xffffffe0; /* must be aligned to groups of 32 */ c->rq_desc_count = min_t(u32, ENIC_MAX_RQ_DESCS, max_t(u32, ENIC_MIN_RQ_DESCS, c->rq_desc_count)); - c->rq_desc_count &= 0xfffffff0; /* must be aligned to groups of 16 */ + c->rq_desc_count &= 0xffffffe0; /* must be aligned to groups of 32 */ if (c->mtu == 0) c->mtu = 1500;