lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-Id: <cover.1267771398.git.joe@perches.com> Date: Thu, 4 Mar 2010 22:56:51 -0800 From: Joe Perches <joe@...ches.com> To: Andrew Morton <akpm@...ux-foundation.org> Cc: Linus Torvalds <torvalds@...ux-foundation.org>, Greg Kroah-Hartman <gregkh@...e.de>, linux-kernel@...r.kernel.org, netdev@...r.kernel.org Subject: [PATCH V2 0/3] recursive printk, make functions from logging macros dev_<level> macros use a lot of repetitive string space and arguments pr_<level> macros use repetitive unnecessary KERN_<level> strings Eliminate the string prefixes and function arguments from all the macro uses and consolidate them in functions. This patchset saves about 60K of text in an x86 defconfig. This implementation adds the ability to use a struct va_format to emit a format string along with va_list arguments. This %pV implementation should not be used without a wrapper that does printf argument verification like the dev_<level> functions. Inspired a bit by Nick Andrew's patches and Linus' comments in December 2008 http://lkml.org/lkml/2008/12/6/15 http://lkml.org/lkml/2008/12/6/101 Joe Perches (3): vsprintf: Recursive vsnprintf: Add "%pV", struct va_format device.h drivers/base/core.c Convert dev_<level> macros to functions kernel.h kernel/printk.c: Convert pr_<level> macros to functions drivers/base/core.c | 56 +++++++++++++++++++++++++ include/linux/device.h | 105 ++++++++++++++++++++++++++++++++++++------------ include/linux/kernel.h | 75 +++++++++++++++++++++++++++------- kernel/printk.c | 26 ++++++++++++ lib/vsprintf.c | 9 ++++ 5 files changed, 229 insertions(+), 42 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists