Lines Matching refs:mount_options
1121 unsigned long *mount_options, in reiserfs_parse_options() argument
1189 c = reiserfs_getopt(s, &pos, opts, &arg, mount_options); in reiserfs_parse_options()
1288 *mount_options |= 1 << REISERFS_USRQUOTA; in reiserfs_parse_options()
1290 *mount_options |= 1 << REISERFS_GRPQUOTA; in reiserfs_parse_options()
1293 *mount_options &= ~(1 << REISERFS_USRQUOTA); in reiserfs_parse_options()
1295 *mount_options &= ~(1 << REISERFS_GRPQUOTA); in reiserfs_parse_options()
1334 if ((!(*mount_options & (1 << REISERFS_USRQUOTA)) && in reiserfs_parse_options()
1336 (!(*mount_options & (1 << REISERFS_GRPQUOTA)) && in reiserfs_parse_options()
1355 static void handle_data_mode(struct super_block *s, unsigned long mount_options) in handle_data_mode() argument
1357 if (mount_options & (1 << REISERFS_DATA_LOG)) { in handle_data_mode()
1362 } else if (mount_options & (1 << REISERFS_DATA_ORDERED)) { in handle_data_mode()
1367 } else if (mount_options & (1 << REISERFS_DATA_WRITEBACK)) { in handle_data_mode()
1434 unsigned long mount_options = REISERFS_SB(s)->s_mount_opt; in reiserfs_remount() local
1455 (s, arg, &mount_options, &blocks, NULL, &commit_max_age, in reiserfs_remount()
1495 s_mount_opt & ~safe_mask) | (mount_options & safe_mask); in reiserfs_remount()
1553 handle_data_mode(s, mount_options); in reiserfs_remount()
1554 handle_barrier_mode(s, mount_options); in reiserfs_remount()