X-Git-Url: https://git.whamcloud.com/?a=blobdiff_plain;f=lustre%2Finclude%2Flustre_param.h;h=f201515151c157fed09dcb6e4a9744959db10196;hb=295968fa7257978bba7aa4fedb28cd3563d4a5e0;hp=49e5dc5c802a1857cbd4a6923e42be605d4a1cbc;hpb=33db53607dac6ee63755358147526c16843ac9c8;p=fs%2Flustre-release.git diff --git a/lustre/include/lustre_param.h b/lustre/include/lustre_param.h index 49e5dc5..f201515 100644 --- a/lustre/include/lustre_param.h +++ b/lustre/include/lustre_param.h @@ -27,7 +27,7 @@ * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved. * Use is subject to license terms. * - * Copyright (c) 2011, Whamcloud, Inc. + * Copyright (c) 2011, 2012, Intel Corporation. */ /* * This file is part of Lustre, http://www.lustre.org/ @@ -48,11 +48,20 @@ * @{ */ +/* For interoperability */ +struct cfg_interop_param { + char *old_param; + char *new_param; +}; + /* obd_config.c */ int class_find_param(char *buf, char *key, char **valp); +struct cfg_interop_param *class_find_old_param(const char *param, + struct cfg_interop_param *ptr); int class_get_next_param(char **params, char *copy); int class_match_param(char *buf, char *key, char **valp); int class_parse_nid(char *buf, lnet_nid_t *nid, char **endh); +int class_parse_nid_quiet(char *buf, lnet_nid_t *nid, char **endh); int class_parse_net(char *buf, __u32 *net, char **endh); int class_match_nid(char *buf, char *key, lnet_nid_t nid); int class_match_net(char *buf, char *key, __u32 net); @@ -88,6 +97,7 @@ int do_lcfg(char *cfgname, lnet_nid_t nid, int cmd, #define PARAM_FAILMODE "failover.mode=" /* initial mount only */ #define PARAM_ACTIVE "active=" /* activate/deactivate */ #define PARAM_NETWORK "network=" /* bind on nid */ +#define PARAM_ID_UPCALL "identity_upcall=" /* identity upcall */ /* Prefixes for parameters handled by obd's proc methods (XXX_process_config) */ #define PARAM_OST "ost." @@ -97,11 +107,14 @@ int do_lcfg(char *cfgname, lnet_nid_t nid, int cmd, #define PARAM_MDC "mdc." #define PARAM_LLITE "llite." #define PARAM_LOV "lov." +#define PARAM_LOD "lod." +#define PARAM_OSP "osp." #define PARAM_SYS "sys." /* global */ #define PARAM_SRPC "srpc." #define PARAM_SRPC_FLVR "srpc.flavor." #define PARAM_SRPC_UDESC "srpc.udesc.cli2mdt" #define PARAM_SEC "security." +#define PARAM_QUOTA "quota." /* global */ /** @} param */