Whamcloud - gitweb
Increase MDS and OST request buffers to 128k each
authorbraam <braam>
Wed, 27 Mar 2002 22:04:59 +0000 (22:04 +0000)
committerbraam <braam>
Wed, 27 Mar 2002 22:04:59 +0000 (22:04 +0000)
lustre/mds/handler.c
lustre/ost/ost_handler.c

index c589d2d..87c48b9 100644 (file)
@@ -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) {
index 6d818e0..f74d346 100644 (file)
@@ -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) {