From 132735117010e819645dcfeef170cee8d75b4be4 Mon Sep 17 00:00:00 2001 From: braam Date: Wed, 27 Mar 2002 22:04:59 +0000 Subject: [PATCH] Increase MDS and OST request buffers to 128k each --- lustre/mds/handler.c | 2 +- lustre/ost/ost_handler.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lustre/mds/handler.c b/lustre/mds/handler.c index c589d2d..87c48b9 100644 --- a/lustre/mds/handler.c +++ b/lustre/mds/handler.c @@ -502,7 +502,7 @@ static int mds_setup(struct obd_device *obddev, obd_count len, void *buf) mds->mds_ctxt.pwd = mnt->mnt_root; mds->mds_ctxt.fs = KERNEL_DS; - mds->mds_service = ptlrpc_init_svc(64 * 1024, + mds->mds_service = ptlrpc_init_svc(128 * 1024, MDS_REQUEST_PORTAL, MDC_REPLY_PORTAL, "self", mds_handle); if (!mds->mds_service) { diff --git a/lustre/ost/ost_handler.c b/lustre/ost/ost_handler.c index 6d818e0..f74d346 100644 --- a/lustre/ost/ost_handler.c +++ b/lustre/ost/ost_handler.c @@ -678,7 +678,7 @@ static int ost_setup(struct obd_device *obddev, obd_count len, RETURN(-EINVAL); } - ost->ost_service = ptlrpc_init_svc(2 * 1024, + ost->ost_service = ptlrpc_init_svc(128 * 1024, OST_REQUEST_PORTAL, OSC_REPLY_PORTAL, "self", ost_handle); if (!ost->ost_service) { -- 1.8.3.1