diff options
author | Changli Gao <xiaosuo@gmail.com> | 2013-12-08 09:36:56 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-01-15 15:28:47 -0800 |
commit | 90af0bf9303883865a8626f23b4b0ed60d4d10dc (patch) | |
tree | 0a9e26ff887ee7dff631e807cb5c36b15136950f | |
parent | e28c2d64f8b676b7defe6a3f25aa80269aa49c7e (diff) | |
download | linux-3.10-90af0bf9303883865a8626f23b4b0ed60d4d10dc.tar.gz linux-3.10-90af0bf9303883865a8626f23b4b0ed60d4d10dc.tar.bz2 linux-3.10-90af0bf9303883865a8626f23b4b0ed60d4d10dc.zip |
net: drop_monitor: fix the value of maxattr
[ Upstream commit d323e92cc3f4edd943610557c9ea1bb4bb5056e8 ]
maxattr in genl_family should be used to save the max attribute
type, but not the max command type. Drop monitor doesn't support
any attributes, so we should leave it as zero.
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | net/core/drop_monitor.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/core/drop_monitor.c b/net/core/drop_monitor.c index d23b6682f4e..a974dfec4bf 100644 --- a/net/core/drop_monitor.c +++ b/net/core/drop_monitor.c @@ -64,7 +64,6 @@ static struct genl_family net_drop_monitor_family = { .hdrsize = 0, .name = "NET_DM", .version = 2, - .maxattr = NET_DM_CMD_MAX, }; static DEFINE_PER_CPU(struct per_cpu_dm_data, dm_cpu_data); |