diff options
Diffstat (limited to 'fs/gfs2/mount.c')
-rw-r--r-- | fs/gfs2/mount.c | 185 |
1 files changed, 0 insertions, 185 deletions
diff --git a/fs/gfs2/mount.c b/fs/gfs2/mount.c deleted file mode 100644 index f7e8527a21e0..000000000000 --- a/fs/gfs2/mount.c +++ /dev/null | |||
@@ -1,185 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved. | ||
3 | * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved. | ||
4 | * | ||
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. | ||
8 | */ | ||
9 | |||
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> | ||
16 | |||
17 | #include "gfs2.h" | ||
18 | #include "incore.h" | ||
19 | #include "super.h" | ||
20 | #include "sys.h" | ||
21 | #include "util.h" | ||
22 | |||
23 | enum { | ||
24 | Opt_lockproto, | ||
25 | Opt_locktable, | ||
26 | Opt_hostdata, | ||
27 | Opt_spectator, | ||
28 | Opt_ignore_local_fs, | ||
29 | Opt_localflocks, | ||
30 | Opt_localcaching, | ||
31 | Opt_debug, | ||
32 | Opt_nodebug, | ||
33 | Opt_upgrade, | ||
34 | Opt_acl, | ||
35 | Opt_noacl, | ||
36 | Opt_quota_off, | ||
37 | Opt_quota_account, | ||
38 | Opt_quota_on, | ||
39 | Opt_quota, | ||
40 | Opt_noquota, | ||
41 | Opt_suiddir, | ||
42 | Opt_nosuiddir, | ||
43 | Opt_data_writeback, | ||
44 | Opt_data_ordered, | ||
45 | Opt_meta, | ||
46 | Opt_discard, | ||
47 | Opt_nodiscard, | ||
48 | Opt_err, | ||
49 | }; | ||
50 | |||
51 | static const match_table_t tokens = { | ||
52 | {Opt_lockproto, "lockproto=%s"}, | ||
53 | {Opt_locktable, "locktable=%s"}, | ||
54 | {Opt_hostdata, "hostdata=%s"}, | ||
55 | {Opt_spectator, "spectator"}, | ||
56 | {Opt_ignore_local_fs, "ignore_local_fs"}, | ||
57 | {Opt_localflocks, "localflocks"}, | ||
58 | {Opt_localcaching, "localcaching"}, | ||
59 | {Opt_debug, "debug"}, | ||
60 | {Opt_nodebug, "nodebug"}, | ||
61 | {Opt_upgrade, "upgrade"}, | ||
62 | {Opt_acl, "acl"}, | ||
63 | {Opt_noacl, "noacl"}, | ||
64 | {Opt_quota_off, "quota=off"}, | ||
65 | {Opt_quota_account, "quota=account"}, | ||
66 | {Opt_quota_on, "quota=on"}, | ||
67 | {Opt_quota, "quota"}, | ||
68 | {Opt_noquota, "noquota"}, | ||
69 | {Opt_suiddir, "suiddir"}, | ||
70 | {Opt_nosuiddir, "nosuiddir"}, | ||
71 | {Opt_data_writeback, "data=writeback"}, | ||
72 | {Opt_data_ordered, "data=ordered"}, | ||
73 | {Opt_meta, "meta"}, | ||
74 | {Opt_discard, "discard"}, | ||
75 | {Opt_nodiscard, "nodiscard"}, | ||
76 | {Opt_err, NULL} | ||
77 | }; | ||
78 | |||
79 | /** | ||
80 | * gfs2_mount_args - Parse mount options | ||
81 | * @sdp: | ||
82 | * @data: | ||
83 | * | ||
84 | * Return: errno | ||
85 | */ | ||
86 | |||
87 | int gfs2_mount_args(struct gfs2_sbd *sdp, struct gfs2_args *args, char *options) | ||
88 | { | ||
89 | char *o; | ||
90 | int token; | ||
91 | substring_t tmp[MAX_OPT_ARGS]; | ||
92 | |||
93 | /* Split the options into tokens with the "," character and | ||
94 | process them */ | ||
95 | |||
96 | while (1) { | ||
97 | o = strsep(&options, ","); | ||
98 | if (o == NULL) | ||
99 | break; | ||
100 | if (*o == '\0') | ||
101 | continue; | ||
102 | |||
103 | token = match_token(o, tokens, tmp); | ||
104 | switch (token) { | ||
105 | case Opt_lockproto: | ||
106 | match_strlcpy(args->ar_lockproto, &tmp[0], | ||
107 | GFS2_LOCKNAME_LEN); | ||
108 | break; | ||
109 | case Opt_locktable: | ||
110 | match_strlcpy(args->ar_locktable, &tmp[0], | ||
111 | GFS2_LOCKNAME_LEN); | ||
112 | break; | ||
113 | case Opt_hostdata: | ||
114 | match_strlcpy(args->ar_hostdata, &tmp[0], | ||
115 | GFS2_LOCKNAME_LEN); | ||
116 | break; | ||
117 | case Opt_spectator: | ||
118 | args->ar_spectator = 1; | ||
119 | break; | ||
120 | case Opt_ignore_local_fs: | ||
121 | args->ar_ignore_local_fs = 1; | ||
122 | break; | ||
123 | case Opt_localflocks: | ||
124 | args->ar_localflocks = 1; | ||
125 | break; | ||
126 | case Opt_localcaching: | ||
127 | args->ar_localcaching = 1; | ||
128 | break; | ||
129 | case Opt_debug: | ||
130 | args->ar_debug = 1; | ||
131 | break; | ||
132 | case Opt_nodebug: | ||
133 | args->ar_debug = 0; | ||
134 | break; | ||
135 | case Opt_upgrade: | ||
136 | args->ar_upgrade = 1; | ||
137 | break; | ||
138 | case Opt_acl: | ||
139 | args->ar_posix_acl = 1; | ||
140 | break; | ||
141 | case Opt_noacl: | ||
142 | args->ar_posix_acl = 0; | ||
143 | break; | ||
144 | case Opt_quota_off: | ||
145 | case Opt_noquota: | ||
146 | args->ar_quota = GFS2_QUOTA_OFF; | ||
147 | break; | ||
148 | case Opt_quota_account: | ||
149 | args->ar_quota = GFS2_QUOTA_ACCOUNT; | ||
150 | break; | ||
151 | case Opt_quota_on: | ||
152 | case Opt_quota: | ||
153 | args->ar_quota = GFS2_QUOTA_ON; | ||
154 | break; | ||
155 | case Opt_suiddir: | ||
156 | args->ar_suiddir = 1; | ||
157 | break; | ||
158 | case Opt_nosuiddir: | ||
159 | args->ar_suiddir = 0; | ||
160 | break; | ||
161 | case Opt_data_writeback: | ||
162 | args->ar_data = GFS2_DATA_WRITEBACK; | ||
163 | break; | ||
164 | case Opt_data_ordered: | ||
165 | args->ar_data = GFS2_DATA_ORDERED; | ||
166 | break; | ||
167 | case Opt_meta: | ||
168 | args->ar_meta = 1; | ||
169 | break; | ||
170 | case Opt_discard: | ||
171 | args->ar_discard = 1; | ||
172 | break; | ||
173 | case Opt_nodiscard: | ||
174 | args->ar_discard = 0; | ||
175 | break; | ||
176 | case Opt_err: | ||
177 | default: | ||
178 | fs_info(sdp, "invalid mount option: %s\n", o); | ||
179 | return -EINVAL; | ||
180 | } | ||
181 | } | ||
182 | |||
183 | return 0; | ||
184 | } | ||
185 | |||