From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id CD89E25C6FE for ; Wed, 12 Feb 2025 17:57:36 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1739383056; cv=none; b=SaGp7IQnXC9hw53HIIiJE62/vsdM0gSN7JuPnESo8q4EsaKlceX4KTv1PEOeHYKMupeHMM6nLELaMTfWO39vWee4YQYpDolqdADBI3Q5fAr3F7svoc2122nH02EEc7xn4CN32biam2EtQAIzf2q4P2iwntdbbZhnUMTDyvWd6gs= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1739383056; c=relaxed/simple; bh=HLk4Vqao0+XjdHo9vDgk54/mnV3gre1cWe9ZRPdW4DQ=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=ZXCcDdFMFVpW+H2ORQA/1GaKQ583FZMDOmRaERfdrmcdJmilHBvluH6F921fMtQZB23W+IL/9hu6p7aXaFzbrz2WAahtX6sQWzqb5Pr8neArMyCkk4CG0xdz0oUpVQER0xeoLcfW76vT1oU0kpoJhmyzNKRunnq7bQzzrcokVN8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=fAI81JV4; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="fAI81JV4" Received: by smtp.kernel.org (Postfix) with ESMTPSA id EC880C4CEDF; Wed, 12 Feb 2025 17:57:35 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1739383056; bh=HLk4Vqao0+XjdHo9vDgk54/mnV3gre1cWe9ZRPdW4DQ=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=fAI81JV4EQa7iELL2RrPbIOooz8fqSFYRSl2g14fHY9q03QIV0AfvHjBXaS94DuQl Rz0WGLJWU33JhGVGImHvVyYKCzp/36N4az1c8Ag4TJ33dYFeNfA0vqxMYG1kL4obWM 5i4K3KDnYMtjMBvIuVU1aR4d284eQQtilqBCFzb02MBu4bfk4HHcKHwpR1HkZz1+/5 w5+RxXZMsulwPRGIMhsfuAAuXOcvfPc9EXHlUOWTsyPiX0j4gpGG9QK45TMt/BxqCm hRuLWtpPIolilCOQyZAwUkRPVjR8uKHMiRw0hW+H+b/SRi26m06fNxgHRbsHux19m9 vm7Mo8VGe+h9A== Message-ID: Date: Wed, 12 Feb 2025 10:57:34 -0700 Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH net-next 1/2] net: dropreason: add SKB_DROP_REASON_BLACKHOLE To: Eric Dumazet , "David S . Miller" , Jakub Kicinski , Paolo Abeni Cc: netdev@vger.kernel.org, Paul Ripke , Simon Horman , eric.dumazet@gmail.com References: <20250212164323.2183023-1-edumazet@google.com> <20250212164323.2183023-2-edumazet@google.com> Content-Language: en-US From: David Ahern In-Reply-To: <20250212164323.2183023-2-edumazet@google.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit On 2/12/25 9:43 AM, Eric Dumazet wrote: > Use this new drop reason from dst_discard_out(). > > Signed-off-by: Eric Dumazet > --- > include/net/dropreason-core.h | 5 +++++ > net/core/dst.c | 2 +- > 2 files changed, 6 insertions(+), 1 deletion(-) > Reviewed-by: David Ahern