From patchwork Thu Jul 10 17:44:26 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chuck Lever X-Patchwork-Id: 4524881 Return-Path: X-Original-To: patchwork-linux-rdma@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 17908BEEAA for ; Thu, 10 Jul 2014 17:44:33 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 55A612020F for ; Thu, 10 Jul 2014 17:44:32 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 7FF8220204 for ; Thu, 10 Jul 2014 17:44:30 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751717AbaGJRo3 (ORCPT ); Thu, 10 Jul 2014 13:44:29 -0400 Received: from mail-ie0-f171.google.com ([209.85.223.171]:34426 "EHLO mail-ie0-f171.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751117AbaGJRo3 (ORCPT ); Thu, 10 Jul 2014 13:44:29 -0400 Received: by mail-ie0-f171.google.com with SMTP id at1so3190381iec.16 for ; Thu, 10 Jul 2014 10:44:28 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:subject:to:cc:date:message-id:in-reply-to:references :user-agent:mime-version:content-type:content-transfer-encoding; bh=eauqmHoklOpl+bb5p08SbmZNtYsTcTZbbqSUBlk5sLc=; b=QpJq6VvkvOkqfIBCxbgoad9iIQVhHUlQM/eDBgfkVnaXdYQDOsgIBLfEEaGTy6Ce8o VhhgElzqdPYVOjKn6JWp/v1g76Omsd/au4NnDzdjSh0sx2Q3ZPx7b6rkUtmb71au/b+L MLQ16ASp5bMiCcE9oui8Z7XZC/mqGylVdNFnskxJpzFFbI2AYjKguYxkMQz9DCZoHIx6 c4EXspg8x+MDpcjHpfWKw02Q9dpabHp6dj1ZBK3C2hava1mQNeKCxXhP/iLIHNX0scrK KZBz/uwGDO5LfMKs8bk/Rj1SY7q46gICdQefo0AF6uPHPcSJoq2x91aFk1V9sNosyOW1 ymLA== X-Received: by 10.50.131.230 with SMTP id op6mr14863724igb.25.1405014268073; Thu, 10 Jul 2014 10:44:28 -0700 (PDT) Received: from klimt.1015granger.net ([2604:8800:100:81fc:be5f:f4ff:fed6:c3ba]) by mx.google.com with ESMTPSA id l9sm7426620ige.2.2014.07.10.10.44.27 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 10 Jul 2014 10:44:27 -0700 (PDT) From: Chuck Lever Subject: [PATCH 1/2] svcrdma: Increase credit limit to 32 To: swise@ogc.net Cc: linux-nfs@vger.kernel.org, linux-rdma@vger.kernel.org Date: Thu, 10 Jul 2014 13:44:26 -0400 Message-ID: <20140710174426.3734.33938.stgit@klimt.1015granger.net> In-Reply-To: <20140710174225.3734.44692.stgit@klimt.1015granger.net> References: <20140710174225.3734.44692.stgit@klimt.1015granger.net> User-Agent: StGIT/0.14.3 MIME-Version: 1.0 Sender: linux-rdma-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-rdma@vger.kernel.org X-Spam-Status: No, score=-7.4 required=5.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,RP_MATCHES_RCVD,T_DKIM_INVALID,UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Signed-off-by: Chuck Lever --- include/linux/sunrpc/svc_rdma.h | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" 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/include/linux/sunrpc/svc_rdma.h b/include/linux/sunrpc/svc_rdma.h index 5cf99a0..975da75 100644 --- a/include/linux/sunrpc/svc_rdma.h +++ b/include/linux/sunrpc/svc_rdma.h @@ -174,8 +174,7 @@ struct svcxprt_rdma { * page size of 4k, or 32k * 2 ops / 4k = 16 outstanding RDMA_READ. */ #define RPCRDMA_ORD (64/4) #define RPCRDMA_SQ_DEPTH_MULT 8 -#define RPCRDMA_MAX_THREADS 16 -#define RPCRDMA_MAX_REQUESTS 16 +#define RPCRDMA_MAX_REQUESTS 32 #define RPCRDMA_MAX_REQ_SIZE 4096 /* svc_rdma_marshal.c */