summaryrefslogtreecommitdiffstats
path: root/kernel/tests/include/lapi/if_packet.h
blob: 81110217d8782ead0c810378dbdd703ba5f7cbb2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// SPDX-License-Identifier: GPL-2.0-or-later
/*
 * Copyright (c) 2018 FUJITSU LIMITED. All rights reserved.
 * Author: Jinhui huang <huangjh.jy@cn.fujitsu.com>
 */

#ifndef __LAPI_IF_PACKET_H__
#define __LAPI_IF_PACKET_H__

#include "config.h"

#ifdef HAVE_LINUX_IF_PACKET_H
# include <linux/if_packet.h>
#endif

#ifndef PACKET_RX_RING
# define PACKET_RX_RING 5
#endif

#ifndef PACKET_VERSION
# define PACKET_VERSION 10
#endif

#ifndef PACKET_RESERVE
# define PACKET_RESERVE 12
#endif

#ifndef PACKET_FANOUT
#define PACKET_FANOUT	18
#endif

#ifndef PACKET_FANOUT_ROLLOVER
#define PACKET_FANOUT_ROLLOVER	3
#endif

#ifndef HAVE_STRUCT_TPACKET_REQ3
# define TPACKET_V3 2

struct tpacket_req3 {
	unsigned int	tp_block_size;
	unsigned int	tp_block_nr;
	unsigned int	tp_frame_size;
	unsigned int	tp_frame_nr;
	unsigned int	tp_retire_blk_tov;
	unsigned int	tp_sizeof_priv;
	unsigned int	tp_feature_req_word;
};
#endif

#endif /* __LAPI_IF_PACKET_H__ */