diff options
author | 2009-01-18 13:36:56 +0000 | |
---|---|---|
committer | 2009-01-18 13:36:56 +0000 | |
commit | cecbdfb662aba8ecf5ea3b6e63c31c4af9d6cd02 (patch) | |
tree | 5a76e97a9d23d9e53b51130a94772f6ab14e40b5 /sys/ddb/db_interface.h | |
parent | vrng.4: period -> periodic (diff) | |
download | wireguard-openbsd-cecbdfb662aba8ecf5ea3b6e63c31c4af9d6cd02.tar.xz wireguard-openbsd-cecbdfb662aba8ecf5ea3b6e63c31c4af9d6cd02.zip |
Add nfs ddb hooks, for now only to show all the outstanding nfsreq's
and to print out struct nfsreq.
"get it in so people can pound on it" blambert@
OK and information_s_ on the manpage from miod@
Diffstat (limited to 'sys/ddb/db_interface.h')
-rw-r--r-- | sys/ddb/db_interface.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/ddb/db_interface.h b/sys/ddb/db_interface.h index deea664f9f5..5e5a5f110e5 100644 --- a/sys/ddb/db_interface.h +++ b/sys/ddb/db_interface.h @@ -1,4 +1,4 @@ -/* $OpenBSD: db_interface.h,v 1.9 2006/07/12 05:55:22 deraadt Exp $ */ +/* $OpenBSD: db_interface.h,v 1.10 2009/01/18 13:36:56 thib Exp $ */ /* $NetBSD: db_interface.h,v 1.1 1996/02/05 01:57:03 christos Exp $ */ /* @@ -56,6 +56,11 @@ void vfs_mount_print(struct mount *, int, int (*)(const char *, ...)); /* kern/subr_pool.c */ void db_show_all_pools(db_expr_t, int, db_expr_t, char *); +/* nfs/nfs_debug.c */ +struct nfsreq; +void db_show_all_nfsreqs(db_expr_t, int, db_expr_t, char *); +void db_nfsreq_print(struct nfsreq *, int, int (*)(const char *, ...)); + /* ufs/ffs/ffs_softdep.c */ struct worklist; void worklist_print(struct worklist *, int, int (*)(const char *, ...)); |