mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
10 lines
261 B
C
10 lines
261 B
C
![]() |
// SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
#include <net/hotdata.h>
|
||
|
#include <linux/cache.h>
|
||
|
#include <linux/list.h>
|
||
|
|
||
|
struct net_hotdata net_hotdata __cacheline_aligned = {
|
||
|
.offload_base = LIST_HEAD_INIT(net_hotdata.offload_base),
|
||
|
.gro_normal_batch = 8,
|
||
|
};
|