Files

19 lines
605 B
Makefile
Raw Permalink Normal View History

# SPDX-License-Identifier: GPL-2.0
2016-03-22 14:27:30 -07:00
# Any varying coverage in these files is non-deterministic
# and is generally not a function of system call inputs.
KCOV_INSTRUMENT := n
ifeq ($(CONFIG_KCSAN),y)
KBUILD_CFLAGS += -g -fno-omit-frame-pointer
endif
2015-08-21 19:42:44 +02:00
obj-y += update.o sync.o
2017-03-25 17:23:44 -07:00
obj-$(CONFIG_TREE_SRCU) += srcutree.o
2017-03-25 09:59:38 -07:00
obj-$(CONFIG_TINY_SRCU) += srcutiny.o
2014-01-27 11:49:39 -08:00
obj-$(CONFIG_RCU_TORTURE_TEST) += rcutorture.o
2020-08-11 21:18:12 -07:00
obj-$(CONFIG_RCU_SCALE_TEST) += rcuscale.o
obj-$(CONFIG_RCU_REF_SCALE_TEST) += refscale.o
obj-$(CONFIG_TREE_RCU) += tree.o
obj-$(CONFIG_TINY_RCU) += tiny.o
obj-$(CONFIG_RCU_NEED_SEGCBLIST) += rcu_segcblist.o