mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-05-24 10:39:52 +00:00
12 lines
201 B
C
12 lines
201 B
C
![]() |
/* SPDX-License-Identifier: GPL-2.0 */
|
||
|
#ifndef XDPSOCK_H_
|
||
|
#define XDPSOCK_H_
|
||
|
|
||
|
/* Power-of-2 number of sockets */
|
||
|
#define MAX_SOCKS 4
|
||
|
|
||
|
/* Round-robin receive */
|
||
|
#define RR_LB 0
|
||
|
|
||
|
#endif /* XDPSOCK_H_ */
|