Lines Matching defs:mnt_opts
939 * @mnt_opts: LSM processed mount options
943 void security_free_mnt_opts(void **mnt_opts)
945 if (!*mnt_opts)
947 call_void_hook(sb_free_mnt_opts, *mnt_opts);
948 *mnt_opts = NULL;
955 * @mnt_opts: LSM processed mount options
957 * Eat (scan @options) and save them in @mnt_opts.
961 int security_sb_eat_lsm_opts(char *options, void **mnt_opts)
963 return call_int_hook(sb_eat_lsm_opts, options, mnt_opts);
970 * @mnt_opts: new mount options
972 * Determine if the new mount options in @mnt_opts are allowed given the
978 void *mnt_opts)
980 return call_int_hook(sb_mnt_opts_compat, sb, mnt_opts);
987 * @mnt_opts: (re)mount options
995 void *mnt_opts)
997 return call_int_hook(sb_remount, sb, mnt_opts);
1097 * @mnt_opts: binary mount options
1106 void *mnt_opts,
1111 int rc = mnt_opts ? -EOPNOTSUPP : LSM_RET_DEFAULT(sb_set_mnt_opts);
1114 rc = scall->hl->hook.sb_set_mnt_opts(sb, mnt_opts, kern_flags,