diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2009-03-11 21:48:36 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2009-03-11 21:48:36 +0000 |
| commit | a56be37e68ba06161b1b8258b19bd019aff9544b (patch) | |
| tree | 48083c4fab749cb8da99377a83f7d470672d4c2c /usr.bin/kdump | |
| parent | a9d9537110686054ec6c7a469f976c5b2c7fd51a (diff) | |
Notes
Diffstat (limited to 'usr.bin/kdump')
| -rw-r--r-- | usr.bin/kdump/kdump.1 | 1 | ||||
| -rw-r--r-- | usr.bin/kdump/kdump.c | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/usr.bin/kdump/kdump.1 b/usr.bin/kdump/kdump.1 index 34b5bd4473fc..b5e313bf02b3 100644 --- a/usr.bin/kdump/kdump.1 +++ b/usr.bin/kdump/kdump.1 @@ -172,6 +172,7 @@ The possible operations are: .It Li CSW Ta context switch Ta stop/resume user/kernel .It Li USER Ta data from user process Ta the data .It Li STRU Ta various syscalls Ta structure +.It Li SCTL Ta Xr sysctl 3 requests Ta MIB name .El .Sh SEE ALSO .Xr ktrace 1 diff --git a/usr.bin/kdump/kdump.c b/usr.bin/kdump/kdump.c index 72afdc8d467f..079d2728dd80 100644 --- a/usr.bin/kdump/kdump.c +++ b/usr.bin/kdump/kdump.c @@ -217,6 +217,7 @@ main(int argc, char *argv[]) ktrsysret((struct ktr_sysret *)m); break; case KTR_NAMEI: + case KTR_SYSCTL: ktrnamei(m, ktrlen); break; case KTR_GENIO: @@ -288,6 +289,9 @@ dumpheader(struct ktr_header *kth) case KTR_STRUCT: type = "STRU"; break; + case KTR_SYSCTL: + type = "SCTL"; + break; default: (void)sprintf(unknown, "UNKNOWN(%d)", kth->ktr_type); type = unknown; |
