From: Latchesar Ionkov Date: Tue, 6 Nov 2007 14:02:53 +0000 (-0600) Subject: 9p: add missing end-of-options record for trans_fd X-Git-Tag: v2.6.24-rc2~2^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=55762690e2696d7b5034d85d1fbeb620841220c9;p=platform%2Fkernel%2Flinux-3.10.git 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 Acked-by: Eric Van Hensbergen --- diff --git a/net/9p/trans_fd.c b/net/9p/trans_fd.c index 30269a4..62332ed 100644 --- a/net/9p/trans_fd.c +++ b/net/9p/trans_fd.c @@ -62,13 +62,14 @@ struct p9_trans_fd { enum { /* Options that take integer arguments */ - Opt_port, Opt_rfdno, Opt_wfdno, + Opt_port, Opt_rfdno, Opt_wfdno, Opt_err, }; static match_table_t tokens = { {Opt_port, "port=%u"}, {Opt_rfdno, "rfdno=%u"}, {Opt_wfdno, "wfdno=%u"}, + {Opt_err, NULL}, }; /**