From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Message-Id: <20140512003204.414582922@1wt.eu> Date: Mon, 12 May 2014 02:33:31 +0200 From: Willy Tarreau To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: "David S. Miller" , Willy Tarreau Subject: [ 091/143] net: drop_monitor: fix the value of maxattr In-Reply-To: Sender: linux-kernel-owner@vger.kernel.org List-ID: 2.6.32-longterm review patch. If anyone has any objections, please let me know. ------------------ From: Changli Gao [ 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 Signed-off-by: Willy Tarreau --- net/core/drop_monitor.c | 1 - 1 file changed, 1 deletion(-) diff --git a/net/core/drop_monitor.c b/net/core/drop_monitor.c index 0a113f2..e65fa2f 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); -- 1.7.12.2.21.g234cd45.dirty