File: aligned_data.h

package info (click to toggle)
linux 6.17.13-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,735,112 kB
  • sloc: ansic: 26,688,265; asm: 271,225; sh: 147,407; python: 75,980; makefile: 57,304; perl: 36,943; xml: 19,562; cpp: 5,899; yacc: 4,909; lex: 2,943; awk: 1,556; sed: 29; ruby: 25
file content (22 lines) | stat: -rw-r--r-- 682 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* SPDX-License-Identifier: GPL-2.0-or-later */
#ifndef _NET_ALIGNED_DATA_H
#define _NET_ALIGNED_DATA_H

#include <linux/atomic.h>
#include <linux/types.h>

/* Structure holding cacheline aligned fields on SMP builds.
 * Each field or group should have an ____cacheline_aligned_in_smp
 * attribute to ensure no accidental false sharing can happen.
 */
struct net_aligned_data {
	atomic64_t	net_cookie ____cacheline_aligned_in_smp;
#if defined(CONFIG_INET)
	atomic_long_t tcp_memory_allocated ____cacheline_aligned_in_smp;
	atomic_long_t udp_memory_allocated ____cacheline_aligned_in_smp;
#endif
};

extern struct net_aligned_data net_aligned_data;

#endif /* _NET_ALIGNED_DATA_H */