From patchwork Thu Jul 9 20:45:47 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chuck Lever X-Patchwork-Id: 6759441 Return-Path: X-Original-To: patchwork-linux-nfs@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 7D860C05AD for ; Thu, 9 Jul 2015 20:47:48 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id BBD1C2053B for ; Thu, 9 Jul 2015 20:47:47 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id B48AF2078F for ; Thu, 9 Jul 2015 20:47:46 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754081AbbGIUp4 (ORCPT ); Thu, 9 Jul 2015 16:45:56 -0400 Received: from mail-qk0-f174.google.com ([209.85.220.174]:35515 "EHLO mail-qk0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754049AbbGIUpu (ORCPT ); Thu, 9 Jul 2015 16:45:50 -0400 Received: by qkbp125 with SMTP id p125so194095892qkb.2; Thu, 09 Jul 2015 13:45:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:subject:to:date:message-id:in-reply-to:references :user-agent:mime-version:content-type:content-transfer-encoding; bh=3+GfDuw03ua/d3c7bxbn5XDMDaVY6HtlNnV2JwgvWFo=; b=OZvqWNcCZyYANx1Xg7rFzR3OjlYqaarc5x3olSBRlsUIYbKdpccg/73mGWlOlSxJ0L a9L3AuzupQ5BL+gF6iFPm3ZwnlZ3k02dumqitRB+P+HX7DKsxOwk8kTFQ8575gG1la0q 4xX7lvSfByh/07XWNyLIpzPurBNDAxWrXIcjJ4TU0ovjAbawYtYFgfcNMvHT5+Fk6tzj 6CkYCPEMJ8PU4MrAneshm7B08AS9abCC/zbIE9VAHW73312zHFKVfEUGjyjygpfcBsDD +tPb4p+ZiyJiNW33eQLDdOfrua0zPAiBeDVX32jg3S4syInMPLEenJLqvXv0TMPE1rAF ifug== X-Received: by 10.140.150.211 with SMTP id 202mr8778221qhw.42.1436474749569; Thu, 09 Jul 2015 13:45:49 -0700 (PDT) Received: from klimt.1015granger.net ([2604:8800:100:81fc:be5f:f4ff:fed6:c3ba]) by smtp.gmail.com with ESMTPSA id b31sm4349909qge.5.2015.07.09.13.45.48 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 09 Jul 2015 13:45:48 -0700 (PDT) From: Chuck Lever Subject: [PATCH v1 5/5] svcrdma: Boost NFS READ/WRITE payload size maximum To: linux-nfs@vger.kernel.org, linux-rdma@vger.kernel.org Date: Thu, 09 Jul 2015 16:45:47 -0400 Message-ID: <20150709204546.8481.65857.stgit@klimt.1015granger.net> In-Reply-To: <20150709204230.8481.45457.stgit@klimt.1015granger.net> References: <20150709204230.8481.45457.stgit@klimt.1015granger.net> User-Agent: StGIT/0.14.3 MIME-Version: 1.0 Sender: linux-nfs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-nfs@vger.kernel.org X-Spam-Status: No, score=-7.1 required=5.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,RP_MATCHES_RCVD,T_DKIM_INVALID,UNPARSEABLE_RELAY autolearn=unavailable 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 Increased to 1 megabyte. Signed-off-by: Chuck Lever --- include/linux/sunrpc/svc_rdma.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" 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 13af61b..1bca6dd 100644 --- a/include/linux/sunrpc/svc_rdma.h +++ b/include/linux/sunrpc/svc_rdma.h @@ -172,7 +172,7 @@ struct svcxprt_rdma { #define RDMAXPRT_SQ_PENDING 2 #define RDMAXPRT_CONN_PENDING 3 -#define RPCRDMA_MAX_SVC_SEGS (64) /* server max scatter/gather */ +#define RPCRDMA_MAX_SVC_SEGS (256) /* server max scatter/gather */ #if RPCSVC_MAXPAYLOAD < (RPCRDMA_MAX_SVC_SEGS << PAGE_SHIFT) #define RPCRDMA_MAXPAYLOAD RPCSVC_MAXPAYLOAD #else