Skip to content

Commit

Permalink
net/9p: Make 9P2000.L the default protocol for 9p file system
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Aneesh Kumar K.V authored and Eric Van Hensbergen committed May 28, 2013
1 parent c1be5a5 commit 095e799
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/9p/client.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 095e799

Please sign in to comment.