diff options
Diffstat (limited to 'net/9p')
-rw-r--r-- | net/9p/mod.c | 4 | ||||
-rw-r--r-- | net/9p/trans_fd.c | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/net/9p/mod.c b/net/9p/mod.c index 41d70f47375d..8f9763a9dc12 100644 --- a/net/9p/mod.c +++ b/net/9p/mod.c | |||
@@ -76,9 +76,9 @@ struct p9_trans_module *v9fs_match_trans(const substring_t *name) | |||
76 | list_for_each(p, &v9fs_trans_list) { | 76 | list_for_each(p, &v9fs_trans_list) { |
77 | t = list_entry(p, struct p9_trans_module, list); | 77 | t = list_entry(p, struct p9_trans_module, list); |
78 | if (strncmp(t->name, name->from, name->to-name->from) == 0) | 78 | if (strncmp(t->name, name->from, name->to-name->from) == 0) |
79 | break; | 79 | return t; |
80 | } | 80 | } |
81 | return t; | 81 | return NULL; |
82 | } | 82 | } |
83 | EXPORT_SYMBOL(v9fs_match_trans); | 83 | EXPORT_SYMBOL(v9fs_match_trans); |
84 | 84 | ||
diff --git a/net/9p/trans_fd.c b/net/9p/trans_fd.c index 30269a4ff22a..62332ed9da4a 100644 --- a/net/9p/trans_fd.c +++ b/net/9p/trans_fd.c | |||
@@ -62,13 +62,14 @@ struct p9_trans_fd { | |||
62 | 62 | ||
63 | enum { | 63 | enum { |
64 | /* Options that take integer arguments */ | 64 | /* Options that take integer arguments */ |
65 | Opt_port, Opt_rfdno, Opt_wfdno, | 65 | Opt_port, Opt_rfdno, Opt_wfdno, Opt_err, |
66 | }; | 66 | }; |
67 | 67 | ||
68 | static match_table_t tokens = { | 68 | static match_table_t tokens = { |
69 | {Opt_port, "port=%u"}, | 69 | {Opt_port, "port=%u"}, |
70 | {Opt_rfdno, "rfdno=%u"}, | 70 | {Opt_rfdno, "rfdno=%u"}, |
71 | {Opt_wfdno, "wfdno=%u"}, | 71 | {Opt_wfdno, "wfdno=%u"}, |
72 | {Opt_err, NULL}, | ||
72 | }; | 73 | }; |
73 | 74 | ||
74 | /** | 75 | /** |