From 8e0a035ee43c6833c8e558fc6c06cf71cc2481f6 Mon Sep 17 00:00:00 2001 From: behlendo Date: Fri, 22 Feb 2002 02:25:59 +0000 Subject: [PATCH] - I had set the rpc buffer size down to 4k to ease testing, the smaller buffer size accidentally got commited with the other changes. This change just resets it to the original 64k size. --- 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 33e1649..a6ad4f6 100644 --- a/lustre/mds/handler.c +++ b/lustre/mds/handler.c @@ -584,7 +584,7 @@ static int mds_setup(struct obd_device *obddev, obd_count len, OBD_ALLOC(mds->mds_service, sizeof(*mds->mds_service)); if (mds->mds_service == NULL) return -ENOMEM; - mds->mds_service->srv_buf_size = 4 * 1024; + mds->mds_service->srv_buf_size = 64 * 1024; mds->mds_service->srv_portal = MDS_REQUEST_PORTAL; memcpy(&mds->mds_service->srv_self, &peer, sizeof(peer)); mds->mds_service->srv_wait_queue = &mds->mds_waitq; diff --git a/lustre/ost/ost_handler.c b/lustre/ost/ost_handler.c index 0359a00..060c5c3 100644 --- a/lustre/ost/ost_handler.c +++ b/lustre/ost/ost_handler.c @@ -629,7 +629,7 @@ static int ost_setup(struct obd_device *obddev, obd_count len, OBD_ALLOC(ost->ost_service, sizeof(*ost->ost_service)); if (ost->ost_service == NULL) return -ENOMEM; - ost->ost_service->srv_buf_size = 4 * 1024; + ost->ost_service->srv_buf_size = 64 * 1024; ost->ost_service->srv_portal = OST_REQUEST_PORTAL; memcpy(&ost->ost_service->srv_self, &peer, sizeof(peer)); ost->ost_service->srv_wait_queue = &ost->ost_waitq; -- 1.8.3.1