diff options
author | Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> | 2013-05-20 12:20:54 +0530 |
---|---|---|
committer | Eric Van Hensbergen <ericvh@gmail.com> | 2013-05-28 09:28:42 -0500 |
commit | 095e7999c09afa09345db864427cb4bb4c98ae1c (patch) | |
tree | df6c76e5a717012f0569fe81783c8c05f21de542 /net/9p | |
parent | c1be5a5b1b355d40e6cf79cc979eb66dafa24ad1 (diff) | |
download | linux-stable-095e7999c09afa09345db864427cb4bb4c98ae1c.tar.gz linux-stable-095e7999c09afa09345db864427cb4bb4c98ae1c.tar.bz2 linux-stable-095e7999c09afa09345db864427cb4bb4c98ae1c.zip |
net/9p: Make 9P2000.L the default protocol for 9p file system
If we dont' specify a protocol version default to 9P2000.L. 9P2000.L
have better support for posix semantic and is where all the recent development
is happening.
Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Signed-off-by: Eric Van Hensbergen <ericvh@gmail.com>
Diffstat (limited to 'net/9p')
-rw-r--r-- | net/9p/client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/9p/client.c b/net/9p/client.c index 8eb75425e6e6..812a4cdf5302 100644 --- a/net/9p/client.c +++ b/net/9p/client.c @@ -127,7 +127,7 @@ static int parse_opts(char *opts, struct p9_client *clnt) char *s; int ret = 0; - clnt->proto_version = p9_proto_2000u; + clnt->proto_version = p9_proto_2000L; clnt->msize = 8192; if (!opts) |