Lines Matching refs:parsed_options

610 	struct mount_options parsed_options;  in ocfs2_remount()  local
616 if (!ocfs2_parse_options(sb, data, &parsed_options, 1) || in ocfs2_remount()
617 !ocfs2_check_set_options(sb, &parsed_options)) { in ocfs2_remount()
623 if ((osb->s_mount_opt & tmp) != (parsed_options.mount_opt & tmp)) { in ocfs2_remount()
631 if ((osb->s_mount_opt & tmp) != (parsed_options.mount_opt & tmp)) { in ocfs2_remount()
638 (parsed_options.mount_opt & OCFS2_MOUNT_DATA_WRITEBACK)) { in ocfs2_remount()
647 (parsed_options.mount_opt & OCFS2_MOUNT_INODE64)) { in ocfs2_remount()
714 osb->s_mount_opt = parsed_options.mount_opt; in ocfs2_remount()
715 osb->s_atime_quantum = parsed_options.atime_quantum; in ocfs2_remount()
716 osb->preferred_slot = parsed_options.slot; in ocfs2_remount()
717 if (parsed_options.commit_interval) in ocfs2_remount()
718 osb->osb_commit_interval = parsed_options.commit_interval; in ocfs2_remount()
982 struct mount_options parsed_options; in ocfs2_fill_super() local
991 if (!ocfs2_parse_options(sb, data, &parsed_options, 0)) { in ocfs2_fill_super()
1012 if (!ocfs2_check_set_options(sb, &parsed_options)) { in ocfs2_fill_super()
1016 osb->s_mount_opt = parsed_options.mount_opt; in ocfs2_fill_super()
1017 osb->s_atime_quantum = parsed_options.atime_quantum; in ocfs2_fill_super()
1018 osb->preferred_slot = parsed_options.slot; in ocfs2_fill_super()
1019 osb->osb_commit_interval = parsed_options.commit_interval; in ocfs2_fill_super()
1021 ocfs2_la_set_sizes(osb, parsed_options.localalloc_opt); in ocfs2_fill_super()
1022 osb->osb_resv_level = parsed_options.resv_level; in ocfs2_fill_super()
1023 osb->osb_dir_resv_level = parsed_options.resv_level; in ocfs2_fill_super()
1024 if (parsed_options.dir_resv_level == -1) in ocfs2_fill_super()
1025 osb->osb_dir_resv_level = parsed_options.resv_level; in ocfs2_fill_super()
1027 osb->osb_dir_resv_level = parsed_options.dir_resv_level; in ocfs2_fill_super()
1029 status = ocfs2_verify_userspace_stack(osb, &parsed_options); in ocfs2_fill_super()