aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChangli Gao <xiaosuo@gmail.com>2013-12-08 09:36:56 -0500
committerStefan Bader <stefan.bader@canonical.com>2014-05-20 16:35:06 +0200
commite554595af87eeb576e6818f467114b7f9761e0a1 (patch)
treee993462692cda18b4e4384ff1f8513d7aa3b3009
parenta9709a109fded576fc93ba8e6f7fde4cadae6543 (diff)
downloadlinux-2.6.32.y-drm33.z-e554595af87eeb576e6818f467114b7f9761e0a1.tar.gz
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: Willy Tarreau <w@1wt.eu> Signed-off-by: Stefan Bader <stefan.bader@canonical.com>
-rw-r--r--net/core/drop_monitor.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/net/core/drop_monitor.c b/net/core/drop_monitor.c
index 0a113f26bc9f9e..e65fa2ff21b588 100644
--- a/net/core/drop_monitor.c
+++ b/net/core/drop_monitor.c
@@ -63,7 +63,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);