* [PATCH] sched_ext/selftests: Fix incorrect include guard comments
@ 2026-03-14 4:20 Cheng-Yang Chou
2026-03-14 9:04 ` Tejun Heo
0 siblings, 1 reply; 2+ messages in thread
From: Cheng-Yang Chou @ 2026-03-14 4:20 UTC (permalink / raw)
To: sched-ext, Tejun Heo, David Vernet, Andrea Righi, Changwoo Min
Cc: Ching-Chun Huang, Chia-Ping Tsai, yphbchou0911
Fix two mismatched closing comments in header include guards:
- util.h: closing comment says __SCX_TEST_H__ but the guard is
__SCX_TEST_UTIL_H__
- exit_test.h: closing comment has a spurious '#' character before
the guard name
Signed-off-by: Cheng-Yang Chou <yphbchou0911@gmail.com>
---
tools/testing/selftests/sched_ext/exit_test.h | 2 +-
tools/testing/selftests/sched_ext/util.h | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/tools/testing/selftests/sched_ext/exit_test.h b/tools/testing/selftests/sched_ext/exit_test.h
index 94f0268b9cb8..2723e0fda801 100644
--- a/tools/testing/selftests/sched_ext/exit_test.h
+++ b/tools/testing/selftests/sched_ext/exit_test.h
@@ -17,4 +17,4 @@ enum exit_test_case {
NUM_EXITS,
};
-#endif // # __EXIT_TEST_H__
+#endif // __EXIT_TEST_H__
diff --git a/tools/testing/selftests/sched_ext/util.h b/tools/testing/selftests/sched_ext/util.h
index bc13dfec1267..681cec04b439 100644
--- a/tools/testing/selftests/sched_ext/util.h
+++ b/tools/testing/selftests/sched_ext/util.h
@@ -10,4 +10,4 @@
long file_read_long(const char *path);
int file_write_long(const char *path, long val);
-#endif // __SCX_TEST_H__
+#endif // __SCX_TEST_UTIL_H__
--
2.48.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] sched_ext/selftests: Fix incorrect include guard comments
2026-03-14 4:20 [PATCH] sched_ext/selftests: Fix incorrect include guard comments Cheng-Yang Chou
@ 2026-03-14 9:04 ` Tejun Heo
0 siblings, 0 replies; 2+ messages in thread
From: Tejun Heo @ 2026-03-14 9:04 UTC (permalink / raw)
To: Cheng-Yang Chou, sched-ext
Cc: void, arighi, changwoo, jserv, chia7712, linux-kernel,
Emil Tsalapatis
Hello,
Applied to sched_ext/for-7.1.
Thanks.
--
tejun
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-03-14 9:04 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-14 4:20 [PATCH] sched_ext/selftests: Fix incorrect include guard comments Cheng-Yang Chou
2026-03-14 9:04 ` Tejun Heo
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox