Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/sys/ddb/db_command.c,v rcsdiff: /ftp/cvs/cvsroot/src/sys/ddb/db_command.c,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.82.2.2 retrieving revision 1.83 diff -u -p -r1.82.2.2 -r1.83 --- src/sys/ddb/db_command.c 2006/03/01 09:28:11 1.82.2.2 +++ src/sys/ddb/db_command.c 2006/01/24 13:02:57 1.83 @@ -1,4 +1,4 @@ -/* $NetBSD: db_command.c,v 1.82.2.2 2006/03/01 09:28:11 yamt Exp $ */ +/* $NetBSD: db_command.c,v 1.83 2006/01/24 13:02:57 yamt Exp $ */ /* * Mach Operating System @@ -31,7 +31,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: db_command.c,v 1.82.2.2 2006/03/01 09:28:11 yamt Exp $"); +__KERNEL_RCSID(0, "$NetBSD: db_command.c,v 1.83 2006/01/24 13:02:57 yamt Exp $"); #include "opt_ddb.h" #include "opt_kgdb.h" @@ -113,7 +113,6 @@ static void db_map_print_cmd(db_expr_t, static void db_namecache_print_cmd(db_expr_t, int, db_expr_t, const char *); static void db_object_print_cmd(db_expr_t, int, db_expr_t, const char *); static void db_page_print_cmd(db_expr_t, int, db_expr_t, const char *); -static void db_show_all_pages(db_expr_t, int, db_expr_t, const char *); static void db_pool_print_cmd(db_expr_t, int, db_expr_t, const char *); static void db_reboot_cmd(db_expr_t, int, db_expr_t, const char *); static void db_sifting_cmd(db_expr_t, int, db_expr_t, const char *); @@ -130,7 +129,6 @@ static void db_mbuf_print_cmd(db_expr_t, static const struct db_command db_show_all_cmds[] = { { "callout", db_show_callout, 0, NULL }, - { "pages", db_show_all_pages, 0, NULL }, { "procs", db_show_all_procs, 0, NULL }, { "pools", db_show_all_pools, 0, NULL }, { NULL, NULL, 0, NULL } @@ -580,14 +578,6 @@ db_page_print_cmd(db_expr_t addr, int ha /*ARGSUSED*/ static void -db_show_all_pages(db_expr_t addr, int have_addr, db_expr_t count, const char *modif) -{ - - uvm_page_printall(db_printf); -} - -/*ARGSUSED*/ -static void db_buf_print_cmd(db_expr_t addr, int have_addr, db_expr_t count, const char *modif) { boolean_t full = FALSE;