Lines Matching defs:mnt_opts
1252 * @mnt_opts: LSM processed mount options
1256 void security_free_mnt_opts(void **mnt_opts)
1258 if (!*mnt_opts)
1260 call_void_hook(sb_free_mnt_opts, *mnt_opts);
1261 *mnt_opts = NULL;
1268 * @mnt_opts: LSM processed mount options
1270 * Eat (scan @options) and save them in @mnt_opts.
1274 int security_sb_eat_lsm_opts(char *options, void **mnt_opts)
1276 return call_int_hook(sb_eat_lsm_opts, 0, options, mnt_opts);
1283 * @mnt_opts: new mount options
1285 * Determine if the new mount options in @mnt_opts are allowed given the
1291 void *mnt_opts)
1293 return call_int_hook(sb_mnt_opts_compat, 0, sb, mnt_opts);
1300 * @mnt_opts: (re)mount options
1308 void *mnt_opts)
1310 return call_int_hook(sb_remount, 0, sb, mnt_opts);
1410 * @mnt_opts: binary mount options
1419 void *mnt_opts,
1424 mnt_opts ? -EOPNOTSUPP : 0, sb,
1425 mnt_opts, kern_flags, set_kern_flags);