Linux Audio

Check our new training course

Buildroot integration, development and maintenance

Need a Buildroot system for your embedded project?
Loading...
Note: File does not exist in v5.4.
 1/* SPDX-License-Identifier: GPL-2.0 */
 2#ifndef _BPF_PRELOAD_COMMON_H
 3#define _BPF_PRELOAD_COMMON_H
 4
 5#define BPF_PRELOAD_START 0x5555
 6#define BPF_PRELOAD_END 0xAAAA
 7
 8struct bpf_preload_info {
 9	char link_name[16];
10	int link_id;
11};
12
13#endif