summaryrefslogtreecommitdiffstats
path: root/net/9p/client.c
diff options
context:
space:
mode:
authorEric Van Hensbergen2013-11-12 17:20:03 +0100
committerEric Van Hensbergen2013-11-23 23:13:36 +0100
commitf94741fd2832e7abc30fbf6dc13ed627c1fcc01a (patch)
treee40c58a53f78e0f3699ffb6cbafa2e5bc5200f3e /net/9p/client.c
parent9p: remove useless 'name' variable and assignment (diff)
downloadkernel-qcow2-linux-f94741fd2832e7abc30fbf6dc13ed627c1fcc01a.tar.gz
kernel-qcow2-linux-f94741fd2832e7abc30fbf6dc13ed627c1fcc01a.tar.xz
kernel-qcow2-linux-f94741fd2832e7abc30fbf6dc13ed627c1fcc01a.zip
net/9p: remove virtio default hack and set appropriate bits instead
A few releases back a patch made virtio the default transport, however it was done in a way which side-stepped the mechanism put in place to allow for this selection. This patch cleans that up while maintaining virtio as the default transport. Signed-off-by: Eric Van Hensbergen <ericvh@gmail.com>
Diffstat (limited to 'net/9p/client.c')
-rw-r--r--net/9p/client.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/net/9p/client.c b/net/9p/client.c
index ee8fd6bd4035..a5e4d2dcb03e 100644
--- a/net/9p/client.c
+++ b/net/9p/client.c
@@ -1012,9 +1012,6 @@ struct p9_client *p9_client_create(const char *dev_name, char *options)
goto destroy_tagpool;
if (!clnt->trans_mod)
- clnt->trans_mod = v9fs_get_trans_by_name("virtio");
-
- if (!clnt->trans_mod)
clnt->trans_mod = v9fs_get_default_trans();
if (clnt->trans_mod == NULL) {