2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
3 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
7 * of the GNU General Public License version 2.
10 #include <linux/slab.h>
11 #include <linux/spinlock.h>
12 #include <linux/completion.h>
13 #include <linux/buffer_head.h>
14 #include <linux/gfs2_ondisk.h>
15 #include <linux/parser.h>
52 static const match_table_t tokens = {
53 {Opt_lockproto, "lockproto=%s"},
54 {Opt_locktable, "locktable=%s"},
55 {Opt_hostdata, "hostdata=%s"},
56 {Opt_spectator, "spectator"},
57 {Opt_ignore_local_fs, "ignore_local_fs"},
58 {Opt_localflocks, "localflocks"},
59 {Opt_localcaching, "localcaching"},
61 {Opt_nodebug, "nodebug"},
62 {Opt_upgrade, "upgrade"},
65 {Opt_quota_off, "quota=off"},
66 {Opt_quota_account, "quota=account"},
67 {Opt_quota_on, "quota=on"},
69 {Opt_noquota, "noquota"},
70 {Opt_suiddir, "suiddir"},
71 {Opt_nosuiddir, "nosuiddir"},
72 {Opt_data_writeback, "data=writeback"},
73 {Opt_data_ordered, "data=ordered"},
75 {Opt_discard, "discard"},
76 {Opt_nodiscard, "nodiscard"},
77 {Opt_commit, "commit=%d"},
82 * gfs2_mount_args - Parse mount options
89 int gfs2_mount_args(struct gfs2_sbd *sdp, struct gfs2_args *args, char *options)
93 substring_t tmp[MAX_OPT_ARGS];
96 /* Split the options into tokens with the "," character and
100 o = strsep(&options, ",");
106 token = match_token(o, tokens, tmp);
109 match_strlcpy(args->ar_lockproto, &tmp[0],
113 match_strlcpy(args->ar_locktable, &tmp[0],
117 match_strlcpy(args->ar_hostdata, &tmp[0],
121 args->ar_spectator = 1;
123 case Opt_ignore_local_fs:
124 args->ar_ignore_local_fs = 1;
126 case Opt_localflocks:
127 args->ar_localflocks = 1;
129 case Opt_localcaching:
130 args->ar_localcaching = 1;
139 args->ar_upgrade = 1;
142 args->ar_posix_acl = 1;
145 args->ar_posix_acl = 0;
149 args->ar_quota = GFS2_QUOTA_OFF;
151 case Opt_quota_account:
152 args->ar_quota = GFS2_QUOTA_ACCOUNT;
156 args->ar_quota = GFS2_QUOTA_ON;
159 args->ar_suiddir = 1;
162 args->ar_suiddir = 0;
164 case Opt_data_writeback:
165 args->ar_data = GFS2_DATA_WRITEBACK;
167 case Opt_data_ordered:
168 args->ar_data = GFS2_DATA_ORDERED;
174 args->ar_discard = 1;
177 args->ar_discard = 0;
180 rv = match_int(&tmp[0], &args->ar_commit);
181 if (rv || args->ar_commit <= 0) {
182 fs_info(sdp, "commit mount option requires a positive numeric argument\n");
183 return rv ? rv : -EINVAL;
188 fs_info(sdp, "invalid mount option: %s\n", o);