blob: 5c7badf71f043a2bbc871b0063c9a2d2a4ffbfcb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* 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;
};
extern struct net_aligned_data net_aligned_data;
#endif /* _NET_ALIGNED_DATA_H */
|