From: Aneesh Kumar K.V Date: Mon, 20 May 2013 06:50:54 +0000 (+0530) Subject: net/9p: Make 9P2000.L the default protocol for 9p file system X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=095e7999c09afa09345db864427cb4bb4c98ae1c;p=deliverable%2Flinux.git 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 Signed-off-by: Eric Van Hensbergen --- 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)