Lines Matching refs:parsed_options
644 struct mount_options parsed_options; in ocfs2_remount() local
650 if (!ocfs2_parse_options(sb, data, &parsed_options, 1) || in ocfs2_remount()
651 !ocfs2_check_set_options(sb, &parsed_options)) { in ocfs2_remount()
658 if ((osb->s_mount_opt & tmp) != (parsed_options.mount_opt & tmp)) { in ocfs2_remount()
665 (parsed_options.mount_opt & OCFS2_MOUNT_DATA_WRITEBACK)) { in ocfs2_remount()
674 (parsed_options.mount_opt & OCFS2_MOUNT_INODE64)) { in ocfs2_remount()
741 osb->s_mount_opt = parsed_options.mount_opt; in ocfs2_remount()
742 osb->s_atime_quantum = parsed_options.atime_quantum; in ocfs2_remount()
743 osb->preferred_slot = parsed_options.slot; in ocfs2_remount()
744 if (parsed_options.commit_interval) in ocfs2_remount()
745 osb->osb_commit_interval = parsed_options.commit_interval; in ocfs2_remount()
1011 struct mount_options parsed_options; in ocfs2_fill_super() local
1020 if (!ocfs2_parse_options(sb, data, &parsed_options, 0)) { in ocfs2_fill_super()
1041 if (!ocfs2_check_set_options(sb, &parsed_options)) { in ocfs2_fill_super()
1045 osb->s_mount_opt = parsed_options.mount_opt; in ocfs2_fill_super()
1046 osb->s_atime_quantum = parsed_options.atime_quantum; in ocfs2_fill_super()
1047 osb->preferred_slot = parsed_options.slot; in ocfs2_fill_super()
1048 osb->osb_commit_interval = parsed_options.commit_interval; in ocfs2_fill_super()
1050 ocfs2_la_set_sizes(osb, parsed_options.localalloc_opt); in ocfs2_fill_super()
1051 osb->osb_resv_level = parsed_options.resv_level; in ocfs2_fill_super()
1052 osb->osb_dir_resv_level = parsed_options.resv_level; in ocfs2_fill_super()
1053 if (parsed_options.dir_resv_level == -1) in ocfs2_fill_super()
1054 osb->osb_dir_resv_level = parsed_options.resv_level; in ocfs2_fill_super()
1056 osb->osb_dir_resv_level = parsed_options.dir_resv_level; in ocfs2_fill_super()
1058 status = ocfs2_verify_userspace_stack(osb, &parsed_options); in ocfs2_fill_super()