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

« back to all changes in this revision

Viewing changes to makedumpfile.8

  • 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
 
.TH MAKEDUMPFILE 8 "June 2008" "makedumpfile v1.2.6" "Linux System Administrator's Manual"
 
1
.TH MAKEDUMPFILE 8 "September 2008" "makedumpfile v1.2.9" "Linux System Administrator's Manual"
2
2
.SH NAME
3
3
makedumpfile \- make a small dumpfile of kdump
4
4
.SH SYNOPSIS
286
286
# makedumpfile \-E \-X /proc/vmcore dumpfile
287
287
 
288
288
.TP
289
 
 \fB\-\-message-level\fR \fImessage_level\fR
290
 
 Specify the message types.
291
 
 .br
292
 
diff -puN makedumpfile.org/makedumpfile.c makedumpfile/makedumpfile.c
293
 
--- makedumpfile.org/makedumpfile.c     2008-04-09 15:48:19.000000000 +0900
294
 
+++ makedumpfile/makedumpfile.c 2008-04-09 15:48:34.000000000 +0900
295
 
@@ -429,6 +429,10 @@ print_usage()
296
 
        MSG("  [--xen-vmcoreinfo VMCOREINFO]:\n");
297
 
        MSG("      Specify the VMCOREINFO of Xen to analyze Xen's memory usage.\n");
 
289
\fB\-\-xen_phys_start\fR \fIxen_phys_start_address\fR
 
290
This option is only for x86_64.
 
291
Specify the \fIxen_phys_start_address\fR, if the xen code/data is relocatable
 
292
and \fIVMCORE\fR does not contain \fIxen_phys_start_address\fR in the CRASHINFO.
 
293
\fIxen_phys_start_address\fR can be token from the line of "Hypervisor code
 
294
and data" in /proc/iomem. For example, specify 0xcee00000 as \fIxen_phys_start_address\fR
 
295
if /proc/iomem is the following:
 
296
  -------------------------------------------------------
 
297
  # cat /proc/iomem
 
298
  ...
 
299
    cee00000-cfd99999 : Hypervisor code and data
 
300
  ...
 
301
  -------------------------------------------------------
 
302
 
 
303
.br
 
304
.B Example:
 
305
.br
 
306
# makedumpfile \-E \-X \-\-xen_phys_start 0xcee00000 /proc/vmcore dumpfile
 
307
 
298
308
.TP
299
309
\fB\-\-message-level\fR \fImessage_level\fR
300
310
Specify the message types.
345
355
      31 |    X     |    X    |    X    |    X    |    X
346
356
 
347
357
.TP
 
358
\fB\-\-vtop\fR \fIvirtual_address\fR
 
359
This option is useful, when user debugs the translation problem
 
360
of virtual address. If specifing \fIvirtual_address\fR, its physical
 
361
address is printed. It makes debugging easy by comparing the
 
362
output of this option with the one of "vtop" subcommand of the
 
363
crash utility.
 
364
"--vtop" option only prints the translation output, and it does
 
365
not affect the dumpfile creation.
 
366
 
 
367
.TP
348
368
\fB\-D\fR
349
369
Print debugging message.
350
370