Lines Matching refs:parsed_options
607 struct mount_options parsed_options; in ocfs2_remount() local
613 if (!ocfs2_parse_options(sb, data, &parsed_options, 1) || in ocfs2_remount()
614 !ocfs2_check_set_options(sb, &parsed_options)) { in ocfs2_remount()
621 if ((osb->s_mount_opt & tmp) != (parsed_options.mount_opt & tmp)) { in ocfs2_remount()
628 (parsed_options.mount_opt & OCFS2_MOUNT_DATA_WRITEBACK)) { in ocfs2_remount()
637 (parsed_options.mount_opt & OCFS2_MOUNT_INODE64)) { in ocfs2_remount()
704 osb->s_mount_opt = parsed_options.mount_opt; in ocfs2_remount()
705 osb->s_atime_quantum = parsed_options.atime_quantum; in ocfs2_remount()
706 osb->preferred_slot = parsed_options.slot; in ocfs2_remount()
707 if (parsed_options.commit_interval) in ocfs2_remount()
708 osb->osb_commit_interval = parsed_options.commit_interval; in ocfs2_remount()
971 struct mount_options parsed_options; in ocfs2_fill_super() local
980 if (!ocfs2_parse_options(sb, data, &parsed_options, 0)) { in ocfs2_fill_super()
1000 if (!ocfs2_check_set_options(sb, &parsed_options)) { in ocfs2_fill_super()
1004 osb->s_mount_opt = parsed_options.mount_opt; in ocfs2_fill_super()
1005 osb->s_atime_quantum = parsed_options.atime_quantum; in ocfs2_fill_super()
1006 osb->preferred_slot = parsed_options.slot; in ocfs2_fill_super()
1007 osb->osb_commit_interval = parsed_options.commit_interval; in ocfs2_fill_super()
1009 ocfs2_la_set_sizes(osb, parsed_options.localalloc_opt); in ocfs2_fill_super()
1010 osb->osb_resv_level = parsed_options.resv_level; in ocfs2_fill_super()
1011 osb->osb_dir_resv_level = parsed_options.resv_level; in ocfs2_fill_super()
1012 if (parsed_options.dir_resv_level == -1) in ocfs2_fill_super()
1013 osb->osb_dir_resv_level = parsed_options.resv_level; in ocfs2_fill_super()
1015 osb->osb_dir_resv_level = parsed_options.dir_resv_level; in ocfs2_fill_super()
1017 status = ocfs2_verify_userspace_stack(osb, &parsed_options); in ocfs2_fill_super()