Whamcloud - gitweb
b=17710
authorzhanghc <zhanghc>
Wed, 7 Jan 2009 08:07:04 +0000 (08:07 +0000)
committerzhanghc <zhanghc>
Wed, 7 Jan 2009 08:07:04 +0000 (08:07 +0000)
uncommit the patch for further investigation

i=Andreas

lustre/include/lustre_cfg.h
lustre/include/lustre_param.h
lustre/mgs/mgs_llog.c
lustre/obdclass/obd_config.c

index 837166b..c51c0d3 100644 (file)
@@ -67,7 +67,6 @@ enum lcfg_command_type {
         LCFG_LOV_DEL_OBD        = 0x00cf00e,
         LCFG_PARAM              = 0x00cf00f,
         LCFG_MARKER             = 0x00cf010,
-        LCFG_SET_LDLM_TIMEOUT   = 0x00cf011,
         LCFG_LOG_START          = 0x00ce011,
         LCFG_LOG_END            = 0x00ce012,
         LCFG_LOV_ADD_INA        = 0x00ce013,
index 28dc2df..0b7caf6 100644 (file)
@@ -66,7 +66,6 @@ int do_lcfg(char *cfgname, lnet_nid_t nid, int cmd,
 
 /* System global or special params not handled in obd's proc */
 #define PARAM_SYS_TIMEOUT          "sys.timeout="      /* global */
-#define PARAM_LDLM_TIMEOUT         "sys.ldlm_timeout=" /* global */
 #define PARAM_MGSNODE              "mgsnode="          /* during mount */
 #define PARAM_FAILNODE             "failover.node="    /* llog generation */
 #define PARAM_FAILMODE             "failover.mode="    /* llog generation */
index 64357dc..e328f33 100644 (file)
@@ -2264,24 +2264,6 @@ static int mgs_write_log_param(struct obd_device *obd, struct fs_db *fsdb,
                 GOTO(end, rc);
         }
 
-        if (class_match_param(ptr, PARAM_LDLM_TIMEOUT, &tmp) == 0) {
-                /* Change ldlm timeout */
-                int timeout;
-                timeout = simple_strtoul(tmp, NULL, 0);
-                CDEBUG(D_MGS, "ldlm timeout %d\n", timeout);
-                         
-                lustre_cfg_bufs_reset(&bufs, NULL);
-                lcfg = lustre_cfg_new(LCFG_SET_LDLM_TIMEOUT, &bufs);
-                lcfg->lcfg_num = timeout;
-                /* modify all servers and clients */
-                rc = mgs_write_log_direct_all(obd, fsdb, mti, lcfg,
-                                              mti->mti_fsname,
-                                              "ldlm_timeout"); 
-                lustre_cfg_free(lcfg);
-                GOTO(end, rc);
-        }
-
         if (class_match_param(ptr, PARAM_OSC""PARAM_ACTIVE, &tmp) == 0) {
                 /* active=0 means off, anything else means on */
                 char mdt_index[16];
index ed6a33e..eb8d415 100644 (file)
@@ -850,20 +850,11 @@ int class_process_config(struct lustre_cfg *lcfg)
                 GOTO(out, err = 0);
         }
         case LCFG_SET_TIMEOUT: {
-                CDEBUG(D_IOCTL, "changing lustre obd_timeout from %d to %d\n",
+                CDEBUG(D_IOCTL, "changing lustre timeout from %d to %d\n",
                        obd_timeout, lcfg->lcfg_num);
                 obd_timeout = max(lcfg->lcfg_num, 1U);
                 GOTO(out, err = 0);
         }
-        case LCFG_SET_LDLM_TIMEOUT: {
-                CDEBUG(D_IOCTL, "changing lustre ldlm_timeout from %d to %d\n",
-                       ldlm_timeout, lcfg->lcfg_num);
-                ldlm_timeout = max(lcfg->lcfg_num, 1U);
-                if (ldlm_timeout > obd_timeout)
-                        ldlm_timeout = max(obd_timeout / 3, 1U);
-
-                GOTO(out, err = 0);
-        }
         case LCFG_SET_UPCALL: {
                 LCONSOLE_ERROR_MSG(0x15a, "recovery upcall is deprecated\n");
                 /* COMPAT_146 Don't fail on old configs */