Sebastian Sumpf 2014046f77 lxip: update to 6.6.47
Now, we schedule before unblocking the rx_task. This is done in order to
execute a potentially ready ksoftirqd before unblocking the rx_task,
which in turn may execute soft-interrupt handlers through bottom half
code leading to double lock attempts of the socket spinlock.

Issue #5264
2024-08-27 15:33:31 +02:00

36 lines
878 B
Makefile

LXIP_DIR := $(REP_DIR)/src/lib/lxip
LIBS := jitterentropy virt_lx_emul virt_linux_generated
SHARED_LIB := yes
TARGET_LIB_DIR := $(LXIP_DIR)
INC_DIR += $(LXIP_DIR)/shadow $(LXIP_DIR)/include $(LXIP_DIR)
SRC_CC += lx_emul/random.cc
SRC_CC += init.cc \
socket.cc \
SRC_C += dummies.c \
generated_dummies.c \
lx_emul.c \
lx_socket.c \
lx_user.c \
net_driver.c \
SRC_CC += genode_c_api/nic_client.cc
LD_OPT += --version-script=$(LXIP_DIR)/symbol.map
#
# Don't create jump slots for everything compiled in here since there are
# function calls from inline assembly (i.e., __sw_hweight64) with unaligned sp
# leading to GPs during fxsave on x86).
#
LD_OPT += -Bsymbolic-functions
vpath %.cc $(REP_DIR)/src/lib
vpath %.c $(LXIP_DIR)/spec/$(SPEC_ARCH)
vpath % $(LXIP_DIR)
# vi: set ft=make :