-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'linux_kselftest-fixes-6.10-rc3' of git://git.kernel.org/pu…
…b/scm/linux/kernel/git/shuah/linux-kselftest Pull kselftest fixes from Shuah Khan: "Fixes to build warnings in several tests and fixes to ftrace tests" * tag 'linux_kselftest-fixes-6.10-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest: selftests/futex: don't pass a const char* to asprintf(3) selftests/futex: don't redefine .PHONY targets (all, clean) selftests/tracing: Fix event filter test to retry up to 10 times selftests/futex: pass _GNU_SOURCE without a value to the compiler selftests/overlayfs: Fix build error on ppc64 selftests/openat2: Fix build warnings on ppc64 selftests: cachestat: Fix build warnings on ppc64 tracing/selftests: Fix kprobe event name test for .isra. functions selftests/ftrace: Update required config selftests/ftrace: Fix to check required event file kselftest/alsa: Ensure _GNU_SOURCE is defined
- Loading branch information
Showing
11 changed files
with
47 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,28 @@ | ||
CONFIG_KPROBES=y | ||
CONFIG_BPF_SYSCALL=y | ||
CONFIG_DEBUG_INFO_BTF=y | ||
CONFIG_DEBUG_INFO_DWARF4=y | ||
CONFIG_EPROBE_EVENTS=y | ||
CONFIG_FPROBE=y | ||
CONFIG_FPROBE_EVENTS=y | ||
CONFIG_FTRACE=y | ||
CONFIG_FTRACE_SYSCALLS=y | ||
CONFIG_FUNCTION_GRAPH_RETVAL=y | ||
CONFIG_FUNCTION_PROFILER=y | ||
CONFIG_TRACER_SNAPSHOT=y | ||
CONFIG_STACK_TRACER=y | ||
CONFIG_HIST_TRIGGERS=y | ||
CONFIG_SCHED_TRACER=y | ||
CONFIG_PREEMPT_TRACER=y | ||
CONFIG_IRQSOFF_TRACER=y | ||
CONFIG_PREEMPTIRQ_DELAY_TEST=m | ||
CONFIG_KALLSYMS_ALL=y | ||
CONFIG_KPROBES=y | ||
CONFIG_KPROBE_EVENTS=y | ||
CONFIG_MODULES=y | ||
CONFIG_MODULE_UNLOAD=y | ||
CONFIG_PREEMPTIRQ_DELAY_TEST=m | ||
CONFIG_PREEMPT_TRACER=y | ||
CONFIG_PROBE_EVENTS_BTF_ARGS=y | ||
CONFIG_SAMPLES=y | ||
CONFIG_SAMPLE_FTRACE_DIRECT=m | ||
CONFIG_SAMPLE_TRACE_PRINTK=m | ||
CONFIG_KALLSYMS_ALL=y | ||
CONFIG_SCHED_TRACER=y | ||
CONFIG_STACK_TRACER=y | ||
CONFIG_TRACER_SNAPSHOT=y | ||
CONFIG_UPROBES=y | ||
CONFIG_UPROBE_EVENTS=y |
2 changes: 1 addition & 1 deletion
2
tools/testing/selftests/ftrace/test.d/dynevent/test_duplicates.tc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,6 @@ SUBDIRS := functional | |
|
||
TEST_PROGS := run.sh | ||
|
||
.PHONY: all clean | ||
|
||
include ../lib.mk | ||
|
||
all: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters