cvs commit: src/usr.bin/kdump Makefile kdump.c kdump_subr.h mksubr

Alexander Leidinger netchild at FreeBSD.org
Sat May 20 07:27:57 PDT 2006


netchild    2006-05-20 14:27:22 UTC

  FreeBSD src repository

  Modified files:
    usr.bin/kdump        Makefile kdump.c 
  Added files:
    usr.bin/kdump        kdump_subr.h mksubr 
  Log:
  Change kdump to print more useful information, i.e. it changes from
   32229 telnet   CALL  mmap(0,0x8000,0x3,0x1002,0xffffffff,0,0,0)
   32229 telnet   CALL  open(0x2807bc28,0,0x1b6)
   32229 telnet   CALL  socket(0x2,0x2,0)
  to
   32229 telnet   CALL mmap(0,0x8000,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_ANON,0xffffffff,0,0,0)
   32229 telnet   CALL  open(0x2807bc28,O_RDONLY,<unused>0x1b6)
   32229 telnet   CALL  socket(PF_INET,SOCK_DGRAM,0)
  
  David wanted to implement the suggestions which came up at the review from
  arch@ too, but real life rejected this proposal. So I commit what we already
  got and let another volunteer pick the remaining work from the ideas list.
  
  Submitted by:   "David Kirchner" <dpk at dpk.net>
  Suggested by:   FreeBSD ideas list page
  Reviewed by:    arch
  
  Revision  Changes    Path
  1.12      +6 -3      src/usr.bin/kdump/Makefile
  1.29      +388 -13   src/usr.bin/kdump/kdump.c
  1.1       +46 -0     src/usr.bin/kdump/kdump_subr.h (new)
  1.1       +407 -0    src/usr.bin/kdump/mksubr (new)


More information about the cvs-src mailing list