]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
net/9p: Make 9P2000.L the default protocol for 9p file system
authorAneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Mon, 20 May 2013 06:50:54 +0000 (12:20 +0530)
committerEric Van Hensbergen <ericvh@gmail.com>
Tue, 28 May 2013 14:28:42 +0000 (09:28 -0500)
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>
net/9p/client.c

index 8eb75425e6e660a6d087cb2a61890d96138b8106..812a4cdf53023639976a5b4454fa7c259ec17e07 100644 (file)
@@ -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)