~ubuntu-branches/ubuntu/raring/makedumpfile/raring

« back to all changes in this revision

Viewing changes to ppc64.c

  • Committer: Bazaar Package Importer
  • Author(s): Kevin Worth
  • Date: 2008-09-18 10:34:45 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080918103445-q7ac7xplchcr85y2
Tags: 1.2.9-0ubuntu1
* New upstream version (LP: #271956)
* Support ia64 discontigmem kernels of linux-2.6.20+.
* Support x86_64 linux-2.6.27 kernel.
* Add "--vtop" option for debugging.
* Add the debugging message for ia64 pgtable.
* Get information from vmcoreinfo of /proc/vmcore even if -x/-i option.
* Add free() for error handling.
* Fix NOT_FOUND value of SIZE(nodemask_t).
* Use the terminal sizes of 80 for the IMPLEMENTATION file. (Bernhard Walle)
* Use static allocation instead of malloc().
* Add get_num_dumpable() function.
* Remove the unused pointer.
* Remove the unused code.
* Make the ELF methods simple.
* Merge the same code in write_elf_pages().
* Add "void" to some arguments.
* Separate the dependency code to machine and linux version.
* Cleanup vaddr_to_paddr() function.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* 
 
1
/*
2
2
 * ppc64.c
3
3
 *
4
4
 * Created by: Sachin Sant (sachinp@in.ibm.com)
23
23
#include "makedumpfile.h"
24
24
 
25
25
int
26
 
get_machdep_info_ppc64()
 
26
get_machdep_info_ppc64(void)
27
27
{
28
28
        info->section_size_bits = _SECTION_SIZE_BITS;
29
29
        info->max_physmem_bits  = _MAX_PHYSMEM_BITS;
 
30
        info->page_offset = __PAGE_OFFSET;
30
31
 
31
32
        return TRUE;
32
33
}