From patchwork Thu Mar 19 12:59:44 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Greg Kroah-Hartman X-Patchwork-Id: 229120 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=unavailable 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 A6CDBC4332D for ; Thu, 19 Mar 2020 13:11:29 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 72ADF20722 for ; Thu, 19 Mar 2020 13:11:29 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1584623489; bh=ZkCvM2KGcp/pkj/t4KfAgiFJrrbVJf0ZDBCuk7oV7N4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=Xz/laCikSkhSch7uQXHGj+4VTsCMYnAHVe7Oh3+giA/MpexREm1PHhgqdh7qpJsB7 jqXP5mgkIkt31JxrsOtUdo/MATzhqfHGr8/r26cBITbzyq1LveQWskaAlDLftccGOK 5rdB+tLGyBO6GG04Re9Q2JNYdRBQN1NPgHVHaoU4= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728145AbgCSNLV (ORCPT ); Thu, 19 Mar 2020 09:11:21 -0400 Received: from mail.kernel.org ([198.145.29.99]:56510 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727912AbgCSNLU (ORCPT ); Thu, 19 Mar 2020 09:11:20 -0400 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 73F0520722; Thu, 19 Mar 2020 13:11:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1584623479; bh=ZkCvM2KGcp/pkj/t4KfAgiFJrrbVJf0ZDBCuk7oV7N4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=GixRt+FAnk6mWl9oYhr0FnKawAIvl4VgZSbiHu+YunDk8oR3TOEToznaj7FpimsDU rSPR9QrbdxR/48rFwam8BnBkxHYS4T25jtaVy3zxeer4qTGti9L45TGlVJGM/y4aCl lu0Sa+6gJqwOOntlC/OQk2vLDKLiLJmoykWgvvaM= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Paolo Abeni , "David S. Miller" Subject: [PATCH 4.9 22/90] ipvlan: egress mcast packets are not exceptional Date: Thu, 19 Mar 2020 13:59:44 +0100 Message-Id: <20200319123935.545941114@linuxfoundation.org> X-Mailer: git-send-email 2.25.2 In-Reply-To: <20200319123928.635114118@linuxfoundation.org> References: <20200319123928.635114118@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Sender: stable-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org From: Paolo Abeni commit cccc200fcaf04cff4342036a72e51d6adf6c98c1 upstream. Currently, if IPv6 is enabled on top of an ipvlan device in l3 mode, the following warning message: Dropped {multi|broad}cast of type= [86dd] is emitted every time that a RS is generated and dmseg is soon filled with irrelevant messages. Replace pr_warn with pr_debug, to preserve debuggability, without scaring the sysadmin. Signed-off-by: Paolo Abeni Signed-off-by: David S. Miller Signed-off-by: Greg Kroah-Hartman --- drivers/net/ipvlan/ipvlan_core.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/drivers/net/ipvlan/ipvlan_core.c +++ b/drivers/net/ipvlan/ipvlan_core.c @@ -446,8 +446,8 @@ static int ipvlan_process_outbound(struc /* In this mode we dont care about multicast and broadcast traffic */ if (is_multicast_ether_addr(ethh->h_dest)) { - pr_warn_ratelimited("Dropped {multi|broad}cast of type= [%x]\n", - ntohs(skb->protocol)); + pr_debug_ratelimited("Dropped {multi|broad}cast of type=[%x]\n", + ntohs(skb->protocol)); kfree_skb(skb); goto out; }