summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorSripathi Kodi2010-03-08 18:33:04 +0100
committerEric Van Hensbergen2010-03-13 15:57:29 +0100
commit45bc21edb52fa71dbb1324c6f573aa880e95519d (patch)
treeadee2b59a562679241f874c978162739e1df78bb /include
parentfs/9p: re-init the wstat in readdir loop (diff)
downloadkernel-qcow2-linux-45bc21edb52fa71dbb1324c6f573aa880e95519d.tar.gz
kernel-qcow2-linux-45bc21edb52fa71dbb1324c6f573aa880e95519d.tar.xz
kernel-qcow2-linux-45bc21edb52fa71dbb1324c6f573aa880e95519d.zip
9p: Change the name of new protocol from 9p2010.L to 9p2000.L
This patch changes the name of the new 9P protocol from 9p2010.L to 9p2000.u. This is because we learnt that the name 9p2010 is already being used by others. Signed-off-by: Sripathi Kodi <sripathik@in.ibm.com> Signed-off-by: Eric Van Hensbergen <ericvh@gmail.com>
Diffstat (limited to 'include')
-rw-r--r--include/net/9p/client.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/9p/client.h b/include/net/9p/client.h
index 52e1fff709e4..f076dfa75ae8 100644
--- a/include/net/9p/client.h
+++ b/include/net/9p/client.h
@@ -32,13 +32,13 @@
/** enum p9_proto_versions - 9P protocol versions
* @p9_proto_legacy: 9P Legacy mode, pre-9P2000.u
* @p9_proto_2000u: 9P2000.u extension
- * @p9_proto_2010L: 9P2010.L extension
+ * @p9_proto_2000L: 9P2000.L extension
*/
enum p9_proto_versions{
p9_proto_legacy = 0,
p9_proto_2000u = 1,
- p9_proto_2010L = 2,
+ p9_proto_2000L = 2,
};