2 items for v5.9-rc1
fix sparse complaint about exported ddebug_exec_queries
fixed width format %3u
Jim Cromie (2):
dyndbg: add decl for exported ddebug_exec_queries()
dyndbg: give %3u width in pr-format, cosmetic only
include/linux/dynamic_debug.h | 3 +++
lib/dynamic_debug.c | 2 +-
2 files changed, 4 insertions(+), 1 deletion(-)
--
2.26.2
59cf47e7df31 dyndbg: export ddebug_exec_queries
elicited a sparse complaint. Add declaration to header file.
I skipped the kerneldoc for now, unsure where it should go.
Ive seen it in .c files, Im leaning that way.
Signed-off-by: Jim Cromie <[email protected]>
---
include/linux/dynamic_debug.h | 3 +++
1 file changed, 3 insertions(+)
diff --git a/include/linux/dynamic_debug.h b/include/linux/dynamic_debug.h
index aa9ff9e1c0b3..61eb80c726bf 100644
--- a/include/linux/dynamic_debug.h
+++ b/include/linux/dynamic_debug.h
@@ -6,6 +6,9 @@
#include <linux/jump_label.h>
#endif
+/* exported for module authors to exercise >control */
+int ddebug_exec_queries(char *query, const char *modname);
+
/*
* An instance of this structure is created in a special
* ELF section at every dynamic debug callsite. At runtime,
--
2.26.2