Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 18 Oct 2019 12:32:02 +0000 (UTC)
From:      Andriy Gapon <avg@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r353726 - in head: sbin/ddb share/man/man4
Message-ID:  <201910181232.x9ICW25R000259@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: avg
Date: Fri Oct 18 12:32:01 2019
New Revision: 353726
URL: https://svnweb.freebsd.org/changeset/base/353726

Log:
  ddb: use 'textdump dump' instead of 'call doadump'
  
  The change is for the example in textdump.4 and the default ddb.conf.
  
  First of all, doadump now requires an argument and it won't do a
  textdump if the argument is not 'true'.
  And 'textdump dump' is more idiomatic anyway.
  
  For what it's worth, ddb 'dump' command seems to always request a vmcore
  dump even if a textdump was requested earlier, e.g., by 'textdump set'.
  Finally, ddb 'call' command is not documented.
  
  MFC after:	2 weeks

Modified:
  head/sbin/ddb/ddb.conf
  head/share/man/man4/textdump.4

Modified: head/sbin/ddb/ddb.conf
==============================================================================
--- head/sbin/ddb/ddb.conf	Fri Oct 18 12:25:33 2019	(r353725)
+++ head/sbin/ddb/ddb.conf	Fri Oct 18 12:32:01 2019	(r353726)
@@ -9,7 +9,7 @@
 script lockinfo=show locks; show alllocks; show lockedvnods
 
 # kdb.enter.panic	panic(9) was called.
-script kdb.enter.panic=textdump set; capture on; run lockinfo; show pcpu; bt; ps; alltrace; capture off; call doadump; reset
+script kdb.enter.panic=textdump set; capture on; run lockinfo; show pcpu; bt; ps; alltrace; capture off; textdump dump; reset
 
 # kdb.enter.witness	witness(4) detected a locking error.
 script kdb.enter.witness=run lockinfo

Modified: head/share/man/man4/textdump.4
==============================================================================
--- head/share/man/man4/textdump.4	Fri Oct 18 12:25:33 2019	(r353725)
+++ head/share/man/man4/textdump.4	Fri Oct 18 12:32:01 2019	(r353726)
@@ -27,7 +27,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd November 30, 2018
+.Dd October 18, 2019
 .Dt TEXTDUMP 4
 .Os
 .Sh NAME
@@ -162,7 +162,7 @@ invoke panic in order to force a kernel dump to be wri
 reboot:
 .Bd -literal -offset indent
 script kdb.enter.panic=textdump set; capture on; show allpcpu; bt;
-  ps; alltrace; show alllocks; call doadump; reset
+  ps; alltrace; show alllocks; textdump dump; reset
 .Ed
 .Pp
 In the following example, the script



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201910181232.x9ICW25R000259>