Lines Matching refs:mount_options
1075 unsigned long *mount_options, in reiserfs_parse_options() argument
1143 c = reiserfs_getopt(s, &pos, opts, &arg, mount_options); in reiserfs_parse_options()
1240 *mount_options |= 1 << REISERFS_USRQUOTA; in reiserfs_parse_options()
1242 *mount_options |= 1 << REISERFS_GRPQUOTA; in reiserfs_parse_options()
1249 *mount_options &= ~(1 << REISERFS_USRQUOTA); in reiserfs_parse_options()
1251 *mount_options &= ~(1 << REISERFS_GRPQUOTA); in reiserfs_parse_options()
1290 if ((!(*mount_options & (1 << REISERFS_USRQUOTA)) && in reiserfs_parse_options()
1292 (!(*mount_options & (1 << REISERFS_GRPQUOTA)) && in reiserfs_parse_options()
1311 static void handle_data_mode(struct super_block *s, unsigned long mount_options) in handle_data_mode() argument
1313 if (mount_options & (1 << REISERFS_DATA_LOG)) { in handle_data_mode()
1318 } else if (mount_options & (1 << REISERFS_DATA_ORDERED)) { in handle_data_mode()
1323 } else if (mount_options & (1 << REISERFS_DATA_WRITEBACK)) { in handle_data_mode()
1390 unsigned long mount_options = REISERFS_SB(s)->s_mount_opt; in reiserfs_remount() local
1412 (s, arg, &mount_options, &blocks, NULL, &commit_max_age, in reiserfs_remount()
1452 s_mount_opt & ~safe_mask) | (mount_options & safe_mask); in reiserfs_remount()
1510 handle_data_mode(s, mount_options); in reiserfs_remount()
1511 handle_barrier_mode(s, mount_options); in reiserfs_remount()