Whamcloud - gitweb
- I had set the rpc buffer size down to 4k to ease testing, the smaller
authorbehlendo <behlendo>
Fri, 22 Feb 2002 02:25:59 +0000 (02:25 +0000)
committerbehlendo <behlendo>
Fri, 22 Feb 2002 02:25:59 +0000 (02:25 +0000)
  buffer size accidentally got commited with the other changes.  This
  change just resets it to the original 64k size.

lustre/mds/handler.c
lustre/ost/ost_handler.c

index 33e1649..a6ad4f6 100644 (file)
@@ -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;
index 0359a00..060c5c3 100644 (file)
@@ -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;