diff mbox

[V9fs-developer,1/2] VFS switches for 9p2000.L: protocol and client changes

Message ID 20100319215113.3fd638f8@in.ibm.com (mailing list archive)
State Superseded, archived
Headers show

Commit Message

Sripathi Kodi March 19, 2010, 4:21 p.m. UTC
None
diff mbox

Patch

diff --git a/net/9p/client.c b/net/9p/client.c
index 63ec5af..381b4e0 100644
--- a/net/9p/client.c
+++ b/net/9p/client.c
@@ -1322,7 +1322,8 @@  static int p9_client_statsize(struct p9_wstat *wst, int proto_version)
 	if (wst->muid)
 		ret += strlen(wst->muid);
 
-	if (proto_version == p9_proto_2000u) {
+	if ((proto_version == p9_proto_2000u) ||
+		(proto_version == p9_proto_2000L)) {
 		ret += 2+4+4+4;	/* extension[s] n_uid[4] n_gid[4] n_muid[4] */
 		if (wst->extension)
 			ret += strlen(wst->extension);
diff --git a/net/9p/protocol.c b/net/9p/protocol.c
index 94f5a8f..d6bc02f 100644
--- a/net/9p/protocol.c
+++ b/net/9p/protocol.c
@@ -340,7 +340,8 @@  p9pdu_vreadf(struct p9_fcall *pdu, int proto_version, const char *fmt,
 			}
 			break;
 		case '?':
-			if (proto_version != p9_proto_2000u)
+			if ((proto_version != p9_proto_2000u) &&
+				(proto_version != p9_proto_2000L))
 				return 0;
 			break;
 		default:
@@ -487,7 +488,8 @@  p9pdu_vwritef(struct p9_fcall *pdu, int proto_version, const char *fmt,
 			}
 			break;
 		case '?':
-			if (proto_version != p9_proto_2000u)
+			if ((proto_version != p9_proto_2000u) &&
+				(proto_version != p9_proto_2000L))
 				return 0;
 			break;
 		default: