All of lore.kernel.org
 help / color / mirror / Atom feed
From: Eric Dumazet <edumazet@google.com>
To: Coco Li <lixiaoyan@google.com>
Cc: Jakub Kicinski <kuba@kernel.org>,
	Neal Cardwell <ncardwell@google.com>,
	 Mubashir Adnan Qureshi <mubashirq@google.com>,
	Paolo Abeni <pabeni@redhat.com>, Andrew Lunn <andrew@lunn.ch>,
	 Jonathan Corbet <corbet@lwn.net>,
	David Ahern <dsahern@kernel.org>,
	 Daniel Borkmann <daniel@iogearbox.net>,
	netdev@vger.kernel.org, Chao Wu <wwchao@google.com>,
	 Wei Wang <weiwan@google.com>,
	Pradeep Nemavat <pnemavat@google.com>
Subject: Re: [PATCH v4 net-next 2/6] cache: enforce cache groups
Date: Thu, 26 Oct 2023 11:42:45 +0200	[thread overview]
Message-ID: <CANn89iKVc9J5511u2GO7Qpc=CShhhRf+qN5NmEv5bnHcUM6d1g@mail.gmail.com> (raw)
In-Reply-To: <20231026081959.3477034-3-lixiaoyan@google.com>

On Thu, Oct 26, 2023 at 10:20 AM Coco Li <lixiaoyan@google.com> wrote:
>
> Set up build time warnings to safegaurd against future header changes of

safeguard

> organized structs.
>
> Signed-off-by: Coco Li <lixiaoyan@google.com>
> Suggested-by: Daniel Borkmann <daniel@iogearbox.net>
> Acked-by: Daniel Borkmann <daniel@iogearbox.net>

Reviewed-by: Eric Dumazet <edumazet@google.com>

> ---
>  include/linux/cache.h | 18 ++++++++++++++++++
>  1 file changed, 18 insertions(+)
>
> diff --git a/include/linux/cache.h b/include/linux/cache.h
> index 9900d20b76c28..4e547beccd6a5 100644
> --- a/include/linux/cache.h
> +++ b/include/linux/cache.h
> @@ -85,6 +85,24 @@
>  #define cache_line_size()      L1_CACHE_BYTES
>  #endif
>
> +#ifndef __cacheline_group_begin
> +#define __cacheline_group_begin(GROUP) \
> +       __u8 __cacheline_group_begin__##GROUP[0]
> +#endif
> +
> +#ifndef __cacheline_group_end
> +#define __cacheline_group_end(GROUP) \
> +       __u8 __cacheline_group_end__##GROUP[0]
> +#endif
> +
> +#ifndef CACHELINE_ASSERT_GROUP_MEMBER
> +#define CACHELINE_ASSERT_GROUP_MEMBER(TYPE, GROUP, MEMBER) \
> +       BUILD_BUG_ON(!(offsetof(TYPE, MEMBER) >= \
> +                      offsetofend(TYPE, __cacheline_group_begin__##GROUP) && \
> +                      offsetofend(TYPE, MEMBER) <= \
> +                      offsetof(TYPE, __cacheline_group_end__##GROUP)))
> +#endif
> +
>  /*
>   * Helper to add padding within a struct to ensure data fall into separate
>   * cachelines.
> --
> 2.42.0.758.gaed0368e0e-goog
>

  reply	other threads:[~2023-10-26  9:43 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-10-26  8:19 [PATCH v4 net-next 0/6] Analyze and Reorganize core Networking Structs to optimize cacheline consumption Coco Li
2023-10-26  8:19 ` [PATCH v4 net-next 1/6] Documentations: Analyze heavily used Networking related structs Coco Li
2023-10-26  8:19 ` [PATCH v4 net-next 2/6] cache: enforce cache groups Coco Li
2023-10-26  9:42   ` Eric Dumazet [this message]
2023-10-26 14:17   ` Jakub Kicinski
2023-10-26 23:39     ` Kuniyuki Iwashima
2023-10-26 23:50       ` Coco Li
2023-10-27  8:01       ` Eric Dumazet
2023-10-27  8:21     ` Daniel Borkmann
2023-10-26  8:19 ` [PATCH v4 net-next 3/6] net-smnp: reorganize SNMP fast path variables Coco Li
2023-10-26 14:20   ` Jakub Kicinski
2023-10-26 23:52     ` Coco Li
2023-10-27  1:23       ` Jakub Kicinski
2023-10-27  7:55         ` Eric Dumazet
2023-10-27 20:18           ` Coco Li
2023-10-26  8:19 ` [PATCH v4 net-next 4/6] netns-ipv4: reorganize netns_ipv4 " Coco Li
2023-10-26  9:45   ` Eric Dumazet
2023-10-26  8:19 ` [PATCH v4 net-next 5/6] net-device: reorganize net_device " Coco Li
2023-10-26  9:41   ` Eric Dumazet
2023-10-28  1:33     ` Coco Li
2023-10-26  8:19 ` [PATCH v4 net-next 6/6] tcp: reorganize tcp_sock " Coco Li
2023-10-26 10:12   ` Eric Dumazet

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CANn89iKVc9J5511u2GO7Qpc=CShhhRf+qN5NmEv5bnHcUM6d1g@mail.gmail.com' \
    --to=edumazet@google.com \
    --cc=andrew@lunn.ch \
    --cc=corbet@lwn.net \
    --cc=daniel@iogearbox.net \
    --cc=dsahern@kernel.org \
    --cc=kuba@kernel.org \
    --cc=lixiaoyan@google.com \
    --cc=mubashirq@google.com \
    --cc=ncardwell@google.com \
    --cc=netdev@vger.kernel.org \
    --cc=pabeni@redhat.com \
    --cc=pnemavat@google.com \
    --cc=weiwan@google.com \
    --cc=wwchao@google.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.