From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 9454CC33CB6 for ; Thu, 16 Jan 2020 23:26:08 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 5FD692072B for ; Thu, 16 Jan 2020 23:26:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1579217168; bh=JSkYMwublXIioF8nYCwyNBtuKyaSoZ5SYFQ1WufBYiA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=2QUCEUqBiYwNi9sRPnCRRHmZufPjcY4Xv40Lu3ZyNPSeMzjQgNJAtYkfI9VZU/71a Xln7QZLmv0cuRXYEDFO5PvpDB873CX9gdVp/FnJupvgN3DhIoggNedM4KLHpRwgT3r tqSjabrFyZYPahXipJ4LiL+ciqAJ1FlngvBfYMJk= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2388820AbgAPX0H (ORCPT ); Thu, 16 Jan 2020 18:26:07 -0500 Received: from mail.kernel.org ([198.145.29.99]:56338 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2388660AbgAPX0G (ORCPT ); Thu, 16 Jan 2020 18:26:06 -0500 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id B396F20684; Thu, 16 Jan 2020 23:26:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1579217166; bh=JSkYMwublXIioF8nYCwyNBtuKyaSoZ5SYFQ1WufBYiA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=hFPAqQGBG2ILPJm/jfvp/W4x63rYYYcjcMOQNmvqO90Ez1GgXR4fWnpL7HzNIt+aE 7pvMs84vDAbvyNh/1ByWz/8yGSYuFAmdf3Vw6q91BWBaq1SVoSfBFu8OJ7aKlOgsMg i4oGJTWY7uCQWwXI8A4SpnhPdN/AaMJOJrndRNLY= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Victorien Molle , Florent Fourcot , =?UTF-8?q?Toke=20H=C3=B8iland-J=C3=B8rgensen?= , "David S. Miller" Subject: [PATCH 5.4 175/203] sch_cake: Add missing NLA policy entry TCA_CAKE_SPLIT_GSO Date: Fri, 17 Jan 2020 00:18:12 +0100 Message-Id: <20200116231759.775066301@linuxfoundation.org> X-Mailer: git-send-email 2.25.0 In-Reply-To: <20200116231745.218684830@linuxfoundation.org> References: <20200116231745.218684830@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: stable-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org From: Victorien Molle commit b3c424eb6a1a3c485de64619418a471dee6ce849 upstream. This field has never been checked since introduction in mainline kernel Signed-off-by: Victorien Molle Signed-off-by: Florent Fourcot Fixes: 2db6dc2662ba "sch_cake: Make gso-splitting configurable from userspace" Acked-by: Toke Høiland-Jørgensen Signed-off-by: David S. Miller Signed-off-by: Greg Kroah-Hartman --- net/sched/sch_cake.c | 1 + 1 file changed, 1 insertion(+) --- a/net/sched/sch_cake.c +++ b/net/sched/sch_cake.c @@ -2184,6 +2184,7 @@ static const struct nla_policy cake_poli [TCA_CAKE_MPU] = { .type = NLA_U32 }, [TCA_CAKE_INGRESS] = { .type = NLA_U32 }, [TCA_CAKE_ACK_FILTER] = { .type = NLA_U32 }, + [TCA_CAKE_SPLIT_GSO] = { .type = NLA_U32 }, [TCA_CAKE_FWMARK] = { .type = NLA_U32 }, };