diff options
author | Latchesar Ionkov <lucho@ionkov.net> | 2007-11-06 09:02:53 -0500 |
---|---|---|
committer | Eric Van Hensbergen <ericvh@gmail.com> | 2007-11-06 09:02:53 -0500 |
commit | 55762690e2696d7b5034d85d1fbeb620841220c9 (patch) | |
tree | 4c0f38163dfb34424f35e4e31fcac9ec6654ac7f /net/9p/trans_fd.c | |
parent | dd1a458412c358f8b4550d7e7df88982c88ce408 (diff) |
9p: add missing end-of-options record for trans_fd
The list of options that the fd transport accepts is missing end-of-options
marker. This patch adds it.
Signed-off-by: Latchesar Ionkov <lucho@ionkov.net>
Acked-by: Eric Van Hensbergen <ericvh@gmail.com>
Diffstat (limited to 'net/9p/trans_fd.c')
-rw-r--r-- | net/9p/trans_fd.c | 3 |
1 files changed, 2 insertions, 1 deletions
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 | /** |