aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeff Layton <jlayton@redhat.com>2012-05-16 07:12:26 -0400
committerSteve French <sfrench@us.ibm.com>2012-05-16 12:26:25 -0400
commit531c8ff0d472295f5ef5d1bd306115c81a84889e (patch)
tree1b7c638d73d60bba5c27094566e5d07e3e6b249b
parent36be50515fe2aef61533b516fa2576a2c7fe7664 (diff)
cifs: fix misspelling of "forcedirectio"
...and add a "directio" synonym since that's what the manpage has always advertised. Acked-by: Sachin Prabhu <sprabhu@redhat.com> Signed-off-by: Jeff Layton <jlayton@redhat.com> Signed-off-by: Steve French <sfrench@us.ibm.com>
-rw-r--r--fs/cifs/connect.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c
index 5dcc55197fb3..e0b56d7a19c5 100644
--- a/fs/cifs/connect.c
+++ b/fs/cifs/connect.c
@@ -164,7 +164,8 @@ static const match_table_t cifs_mount_option_tokens = {
164 { Opt_sign, "sign" }, 164 { Opt_sign, "sign" },
165 { Opt_seal, "seal" }, 165 { Opt_seal, "seal" },
166 { Opt_direct, "direct" }, 166 { Opt_direct, "direct" },
167 { Opt_direct, "forceddirectio" }, 167 { Opt_direct, "directio" },
168 { Opt_direct, "forcedirectio" },
168 { Opt_strictcache, "strictcache" }, 169 { Opt_strictcache, "strictcache" },
169 { Opt_noac, "noac" }, 170 { Opt_noac, "noac" },
170 { Opt_fsc, "fsc" }, 171 { Opt_fsc, "fsc" },