lkml.org 
[lkml]   [2014]   [Jun]   [22]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[RFC PATCH 2/3] printk: Provide pi_<level> / pe_<level> macros for __init / __exit code
Date
The memory used for functions marked with __init will be released after
initialization, albeit static data referenced by such code will not, if
not explicitly marked this way, too. This is especially true for format
strings used in messages printed by such code. Those are not marked and
therefore will survive the __init cleanup -- dangling in memory without
ever being referenced again.

Ideally we would like the compiler to automatically recognise such
constructs but it does not and it's not as simple as it might sound, as
strings used in initialization code might latter still be used, e.g. as
a slab cache name. Therefore we need to explicitly mark the strings we
want to release together with the function itself.

For a seamless integration of the necessary __init_str() / __exit_str()
macros to mark the format strings, this patch provides new variants of
the well known pr_<level>() macros as pi_<level>() for __init code and
pe_<level>() for __exit code. Changing existing code should thereby be
as simple as changing a single letter.

One remark, though: We cannot provide appropriate p[ie]_debug() macros
for the CONFIG_DYNAMIC_DEBUG case as there is (currently) no way to
remove entries from dyndbg after initialization. But supporting that
scenario would require more work (and code), therefore not necessarily
justifying the memory savings.

Signed-off-by: Mathias Krause <minipli@googlemail.com>
---
include/linux/printk.h | 52 ++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 52 insertions(+)

diff --git a/include/linux/printk.h b/include/linux/printk.h
index 319ff7e53e..b49dd6dbc1 100644
--- a/include/linux/printk.h
+++ b/include/linux/printk.h
@@ -226,6 +226,8 @@ extern asmlinkage void dump_stack(void) __cold;
* All of these will print unconditionally, although note that pr_debug()
* and other debug macros are compiled out unless either DEBUG is defined
* or CONFIG_DYNAMIC_DEBUG is set.
+ * The pi_*() and pe_*() variants are provided for usage in __init / __exit
+ * code.
*/
#define pr_emerg(fmt, ...) \
printk(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
@@ -245,13 +247,55 @@ extern asmlinkage void dump_stack(void) __cold;
#define pr_cont(fmt, ...) \
printk(KERN_CONT fmt, ##__VA_ARGS__)

+#define pi_emerg(fmt, ...) \
+ printk(__init_str(KERN_EMERG pr_fmt(fmt)), ##__VA_ARGS__)
+#define pi_alert(fmt, ...) \
+ printk(__init_str(KERN_ALERT pr_fmt(fmt)), ##__VA_ARGS__)
+#define pi_crit(fmt, ...) \
+ printk(__init_str(KERN_CRIT pr_fmt(fmt)), ##__VA_ARGS__)
+#define pi_err(fmt, ...) \
+ printk(__init_str(KERN_ERR pr_fmt(fmt)), ##__VA_ARGS__)
+#define pi_warning(fmt, ...) \
+ printk(__init_str(KERN_WARNING pr_fmt(fmt)), ##__VA_ARGS__)
+#define pi_warn pi_warning
+#define pi_notice(fmt, ...) \
+ printk(__init_str(KERN_NOTICE pr_fmt(fmt)), ##__VA_ARGS__)
+#define pi_info(fmt, ...) \
+ printk(__init_str(KERN_INFO pr_fmt(fmt)), ##__VA_ARGS__)
+#define pi_cont(fmt, ...) \
+ printk(__init_str(KERN_CONT fmt), ##__VA_ARGS__)
+
+#define pe_emerg(fmt, ...) \
+ printk(__exit_str(KERN_EMERG pr_fmt(fmt)), ##__VA_ARGS__)
+#define pe_alert(fmt, ...) \
+ printk(__exit_str(KERN_ALERT pr_fmt(fmt)), ##__VA_ARGS__)
+#define pe_crit(fmt, ...) \
+ printk(__exit_str(KERN_CRIT pr_fmt(fmt)), ##__VA_ARGS__)
+#define pe_err(fmt, ...) \
+ printk(__exit_str(KERN_ERR pr_fmt(fmt)), ##__VA_ARGS__)
+#define pe_warning(fmt, ...) \
+ printk(__exit_str(KERN_WARNING pr_fmt(fmt)), ##__VA_ARGS__)
+#define pe_warn pe_warning
+#define pe_notice(fmt, ...) \
+ printk(__exit_str(KERN_NOTICE pr_fmt(fmt)), ##__VA_ARGS__)
+#define pe_info(fmt, ...) \
+ printk(__exit_str(KERN_INFO pr_fmt(fmt)), ##__VA_ARGS__)
+#define pe_cont(fmt, ...) \
+ printk(__exit_str(KERN_CONT fmt), ##__VA_ARGS__)
+
/* pr_devel() should produce zero code unless DEBUG is defined */
#ifdef DEBUG
#define pr_devel(fmt, ...) \
printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
+#define pi_devel(fmt, ...) \
+ printk(__init_str(KERN_DEBUG pr_fmt(fmt)), ##__VA_ARGS__)
+#define pe_devel(fmt, ...) \
+ printk(__exit_str(KERN_DEBUG pr_fmt(fmt)), ##__VA_ARGS__)
#else
#define pr_devel(fmt, ...) \
no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
+#define pi_devel pr_devel
+#define pe_devel pr_devel
#endif

#include <linux/dynamic_debug.h>
@@ -261,12 +305,20 @@ extern asmlinkage void dump_stack(void) __cold;
/* dynamic_pr_debug() uses pr_fmt() internally so we don't need it here */
#define pr_debug(fmt, ...) \
dynamic_pr_debug(fmt, ##__VA_ARGS__)
+#define pi_debug pr_debug
+#define pe_debug pr_debug
#elif defined(DEBUG)
#define pr_debug(fmt, ...) \
printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
+#define pi_debug(fmt, ...) \
+ printk(__init_str(KERN_DEBUG pr_fmt(fmt)), ##__VA_ARGS__)
+#define pe_debug(fmt, ...) \
+ printk(__exit_str(KERN_DEBUG pr_fmt(fmt)), ##__VA_ARGS__)
#else
#define pr_debug(fmt, ...) \
no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
+#define pi_debug pr_debug
+#define pe_debug pr_debug
#endif

/*
--
1.7.10.4


\
 
 \ /
  Last update: 2014-06-23 01:21    [W:0.056 / U:1.092 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site