Lines Matching refs:index
32 module_param_named(index, ovl_index_def, bool, 0644);
33 MODULE_PARM_DESC(index,
34 "Default to on or off for the inodes index feature");
154 fsparam_enum("index", Opt_index, ovl_parameter_bool),
605 config->index = result.uint_32;
606 ctx->set.index = true;
732 ofs->config.index = ovl_index_def;
797 /* Workdir/index are useless in non-upper mount */
805 if (config->index && set.index) {
806 pr_info("option \"index=on\" is useless in a non-upper mount, ignore\n");
807 set.index = false;
809 config->index = false;
867 /* Resolve nfs_export -> index dependency */
868 if (config->nfs_export && !config->index) {
873 } else if (set.nfs_export && set.index) {
874 pr_err("conflicting options: nfs_export=on,index=off\n");
876 } else if (set.index) {
878 * There was an explicit index=off that resulted
881 pr_info("disabling nfs_export due to index=off\n");
884 /* Automatically enable index otherwise. */
885 config->index = true;
995 if (ofs->config.index != ovl_index_def)
996 seq_printf(m, ",index=%s", ofs->config.index ? "on" : "off");