Linux Test Project
 help / color / mirror / Atom feed
* [LTP] [PATCH v2 1/2] Add TST_KCONFIG_INIT() helper macro
@ 2023-11-13 15:06 Martin Doucha
  2023-11-13 15:06 ` [LTP] [PATCH v2 2/2] keyctl02: Add delay between main loop iterations for RT kernels Martin Doucha
  2023-11-13 15:14 ` [LTP] [PATCH v2 1/2] Add TST_KCONFIG_INIT() helper macro Petr Vorel
  0 siblings, 2 replies; 3+ messages in thread
From: Martin Doucha @ 2023-11-13 15:06 UTC (permalink / raw)
  To: Petr Vorel, ltp

Add helper macro for initializing the tst_kconfig_var structure
to simplify kernel config checks during test runtime.

Signed-off-by: Martin Doucha <mdoucha@suse.cz>
---

Changes since v1: New patch

 include/tst_kconfig.h | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/include/tst_kconfig.h b/include/tst_kconfig.h
index cc0908ea8..8b24a8380 100644
--- a/include/tst_kconfig.h
+++ b/include/tst_kconfig.h
@@ -6,6 +6,14 @@
 #ifndef TST_KCONFIG_H__
 #define TST_KCONFIG_H__
 
+/**
+ * Initialization helper macro for struct tst_kconfig_var. Requires <string.h>
+ */
+#define TST_KCONFIG_INIT(confname) { \
+	.id = confname, \
+	.id_len = strlen(confname) \
+}
+
 struct tst_kconfig_var {
 	char id[64];
 	unsigned int id_len;
-- 
2.42.0


-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-11-13 15:14 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-13 15:06 [LTP] [PATCH v2 1/2] Add TST_KCONFIG_INIT() helper macro Martin Doucha
2023-11-13 15:06 ` [LTP] [PATCH v2 2/2] keyctl02: Add delay between main loop iterations for RT kernels Martin Doucha
2023-11-13 15:14 ` [LTP] [PATCH v2 1/2] Add TST_KCONFIG_INIT() helper macro Petr Vorel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox