vmcoreinfo: rename vmcoreinfo's macros returning the size

Previous thread: Introduce flags for reserve_bootmem() by Linux Kernel Mailing List on Thursday, February 7, 2008 - 11:00 am. (1 message)

Next thread: vmcoreinfo: add "VMCOREINFO_" to all the call for vmcoreinfo_append_str() by Linux Kernel Mailing List on Thursday, February 7, 2008 - 11:01 am. (1 message)
From: Linux Kernel Mailing List
Date: Thursday, February 7, 2008 - 11:01 am

Gitweb:     http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c76f86...
Commit:     c76f860c44357f560a763d2894e95464cab7b159
Parent:     18a01a3beb9f25a70a51e12e3c1c3d273da10eca
Author:     Ken'ichi Ohmichi <oomichi@mxs.nes.nec.co.jp>
AuthorDate: Thu Feb 7 00:15:20 2008 -0800
Committer:  Linus Torvalds <torvalds@woody.linux-foundation.org>
CommitDate: Thu Feb 7 08:42:25 2008 -0800

    vmcoreinfo: rename vmcoreinfo's macros returning the size
    
    This patchset is for the vmcoreinfo data.
    
    The vmcoreinfo data has the minimum debugging information only for dump
    filtering.  makedumpfile (dump filtering command) gets it to distinguish
    unnecessary pages, and makedumpfile creates a small dumpfile.
    
    This patch:
    
    VMCOREINFO_SIZE() should be renamed VMCOREINFO_STRUCT_SIZE() since it's always
    returning the size of the struct with a given name. This change would allow
    VMCOREINFO_TYPEDEF_SIZE() to simply become VMCOREINFO_SIZE() since it need not
    be used exclusively for typedefs.
    
    This discussion is the following:
    http://www.ussg.iu.edu/hypermail/linux/kernel/0709.3/0582.html
    
    Signed-off-by: Ken'ichi Ohmichi <oomichi@mxs.nes.nec.co.jp>
    Acked-by: David Rientjes <rientjes@google.com>
    Acked-by: Simon Horman <horms@verge.net.au>
    Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
    Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
---
 arch/ia64/kernel/machine_kexec.c |    2 +-
 include/linux/kexec.h            |    6 +++---
 kernel/kexec.c                   |   14 +++++++-------
 3 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/arch/ia64/kernel/machine_kexec.c b/arch/ia64/kernel/machine_kexec.c
index d6cd45f..6e725ef 100644
--- a/arch/ia64/kernel/machine_kexec.c
+++ b/arch/ia64/kernel/machine_kexec.c
@@ -135,7 +135,7 @@ void arch_crash_save_vmcoreinfo(void)
 
 	VMCOREINFO_SYMBOL(node_memblk);
 ...
Previous thread: Introduce flags for reserve_bootmem() by Linux Kernel Mailing List on Thursday, February 7, 2008 - 11:00 am. (1 message)

Next thread: vmcoreinfo: add "VMCOREINFO_" to all the call for vmcoreinfo_append_str() by Linux Kernel Mailing List on Thursday, February 7, 2008 - 11:01 am. (1 message)