mirror of
https://github.com/xdp-project/bpf-examples.git
synced 2024-05-06 15:54:53 +00:00
Minimal example to show that the close() operation on a bpf_link can hang indefinitely if the kernel is loaded (for example by traffic on an interface with an XDP program loaded). Signed-off-by: Toke Høiland-Jørgensen <toke@redhat.com>
9 lines
156 B
Makefile
9 lines
156 B
Makefile
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
|
|
|
|
USER_TARGETS := bpf-link-hang
|
|
BPF_TARGETS := xdp-pass
|
|
|
|
LIB_DIR = ../lib
|
|
|
|
include $(LIB_DIR)/common.mk
|