diff options
author | Ken'ichi Ohmichi <oomichi@mxs.nes.nec.co.jp> | 2008-02-07 03:15:22 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-07 11:42:25 -0500 |
commit | bba1f603b88f30945ae4c5eccf2a6f5a12b877c5 (patch) | |
tree | ae084f845fa4ede7b2926381419d725b7dd7d5d7 /include/linux/kexec.h | |
parent | 1e4f2955433231b4b02dc4a9eb5d4d403a8680e1 (diff) |
vmcoreinfo: add "VMCOREINFO_" to all the call for vmcoreinfo_append_str()
For readability, all the calls to vmcoreinfo_append_str() are changed to macros
having a prefix "VMCOREINFO_".
This discussion is the following:
http://www.ussg.iu.edu/hypermail/linux/kernel/0709.3/0584.html
Signed-off-by: Ken'ichi Ohmichi <oomichi@mxs.nes.nec.co.jp>
Acked-by: Simon Horman <horms@verge.net.au>
Cc: David Rientjes <rientjes@google.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/kexec.h')
-rw-r--r-- | include/linux/kexec.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/kexec.h b/include/linux/kexec.h index cbc3cd7e11c1..3265968cd2cd 100644 --- a/include/linux/kexec.h +++ b/include/linux/kexec.h | |||
@@ -127,6 +127,10 @@ void vmcoreinfo_append_str(const char *fmt, ...) | |||
127 | __attribute__ ((format (printf, 1, 2))); | 127 | __attribute__ ((format (printf, 1, 2))); |
128 | unsigned long paddr_vmcoreinfo_note(void); | 128 | unsigned long paddr_vmcoreinfo_note(void); |
129 | 129 | ||
130 | #define VMCOREINFO_OSRELEASE(name) \ | ||
131 | vmcoreinfo_append_str("OSRELEASE=%s\n", #name) | ||
132 | #define VMCOREINFO_PAGESIZE(value) \ | ||
133 | vmcoreinfo_append_str("PAGESIZE=%ld\n", value) | ||
130 | #define VMCOREINFO_SYMBOL(name) \ | 134 | #define VMCOREINFO_SYMBOL(name) \ |
131 | vmcoreinfo_append_str("SYMBOL(%s)=%lx\n", #name, (unsigned long)&name) | 135 | vmcoreinfo_append_str("SYMBOL(%s)=%lx\n", #name, (unsigned long)&name) |
132 | #define VMCOREINFO_SIZE(name) \ | 136 | #define VMCOREINFO_SIZE(name) \ |