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=-15.8 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER, INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED 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 83451C4332B for ; Sun, 14 Mar 2021 11:12:09 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 598F064EC0 for ; Sun, 14 Mar 2021 11:12:09 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235271AbhCNLLb (ORCPT ); Sun, 14 Mar 2021 07:11:31 -0400 Received: from mail1.protonmail.ch ([185.70.40.18]:31891 "EHLO mail1.protonmail.ch" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235212AbhCNLLE (ORCPT ); Sun, 14 Mar 2021 07:11:04 -0400 Date: Sun, 14 Mar 2021 11:11:00 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=pm.me; s=protonmail; t=1615720262; bh=akHA2XdZrjVj6nR+ZsUhHnDBklFIjIMbFmd6VtrDomE=; h=Date:To:From:Cc:Reply-To:Subject:In-Reply-To:References:From; b=ERlrfbNDFrhrQdjRZv27BFCTN1DQ/54Ypn+fYYu+RLLP4CdS28HGjug/o8KxWXzG/ ceGDPy0l9gY9mfXfmLcIQg4thRSISYRkwx+GqiVuSta/4zfsQLrz15idyEeuCS5M77 c8KpivT4MSstXs+r8bLYfos7mWPN4SREPpC8e4KEPbxzSd/I1Q32zJWHYeCxm1+uQB P1lZk8Tbh+LWGjlOCmcJj5M9cOUH9TKTTYBmvTURVafr+TY7CIArm4jgXq9vFuUozQ 78aav+2sD/8O587NAWuYh6WBvRaSVm/OzLmn32C1tOFt7j//3nEmm65GkfRhtifqab 4aJxe900FOXsg== To: "David S. Miller" , Jakub Kicinski From: Alexander Lobakin Cc: Alexei Starovoitov , Daniel Borkmann , Andrii Nakryiko , Martin KaFai Lau , Song Liu , Yonghong Song , John Fastabend , KP Singh , Jonathan Lemon , Alexander Lobakin , Eric Dumazet , Willem de Bruijn , Kevin Hao , Pablo Neira Ayuso , Jakub Sitnicki , Marco Elver , Dexuan Cui , Vladimir Oltean , Ariel Levkovich , Wang Qing , Davide Caratti , Guillaume Nault , Eran Ben Elisha , Mauro Carvalho Chehab , Kirill Tkhai , Bartosz Golaszewski , netdev@vger.kernel.org, linux-kernel@vger.kernel.org, bpf@vger.kernel.org Reply-To: Alexander Lobakin Subject: [PATCH v3 net-next 1/6] flow_dissector: constify bpf_flow_dissector's data pointers Message-ID: <20210314111027.7657-2-alobakin@pm.me> In-Reply-To: <20210314111027.7657-1-alobakin@pm.me> References: <20210314111027.7657-1-alobakin@pm.me> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org BPF Flow dissection programs are read-only and don't touch input buffers. Mark 'data' and 'data_end' in struct bpf_flow_dissector as const in preparation for global input constifying. Signed-off-by: Alexander Lobakin --- include/net/flow_dissector.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/net/flow_dissector.h b/include/net/flow_dissector.h index cc10b10dc3a1..bf00e71816ed 100644 --- a/include/net/flow_dissector.h +++ b/include/net/flow_dissector.h @@ -368,8 +368,8 @@ static inline void *skb_flow_dissector_target(struct fl= ow_dissector *flow_dissec struct bpf_flow_dissector { =09struct bpf_flow_keys=09*flow_keys; =09const struct sk_buff=09*skb; -=09void=09=09=09*data; -=09void=09=09=09*data_end; +=09const void=09=09*data; +=09const void=09=09*data_end; }; static inline void -- 2.30.2