[PATCH 1/2] dyndbg: add decl for exported ddebug_exec_queries()

From: Jim Cromie
Date: Fri Aug 14 2020 - 12:08:28 EST


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 <jim.cromie@xxxxxxxxx>
---
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