diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2009-05-17 12:27:17 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2009-05-17 12:27:17 +0000 |
commit | 0457f65df53a2050d902e9f57d86f03d0ff51456 (patch) | |
tree | 805145844227a58e114fc2e15263667da9d243dd /usr.sbin/bgpctl/bgpctl.c | |
parent | d0639da8e997204d85f43940c8f7fd5363f5353b (diff) |
Adjust show rib memory output after the monster commit to bgpd.
Diffstat (limited to 'usr.sbin/bgpctl/bgpctl.c')
-rw-r--r-- | usr.sbin/bgpctl/bgpctl.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.sbin/bgpctl/bgpctl.c b/usr.sbin/bgpctl/bgpctl.c index 9e27ee41c78..1ba39ce0a47 100644 --- a/usr.sbin/bgpctl/bgpctl.c +++ b/usr.sbin/bgpctl/bgpctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bgpctl.c,v 1.138 2009/02/01 17:21:21 sobrado Exp $ */ +/* $OpenBSD: bgpctl.c,v 1.139 2009/05/17 12:27:16 claudio Exp $ */ /* * Copyright (c) 2003 Henning Brauer <henning@openbsd.org> @@ -1249,6 +1249,9 @@ show_rib_memory_msg(struct imsg *imsg) printf("%10lld IPv6 network entries using " "%s of memory\n", (long long)stats.pt6_cnt, fmt_mem(stats.pt6_cnt * sizeof(struct pt_entry6))); + printf("%10lld rib entries using %s of memory\n", + (long long)stats.rib_cnt, fmt_mem(stats.rib_cnt * + sizeof(struct rib_entry))); printf("%10lld prefix entries using %s of memory\n", (long long)stats.prefix_cnt, fmt_mem(stats.prefix_cnt * sizeof(struct prefix))); @@ -1270,6 +1273,7 @@ show_rib_memory_msg(struct imsg *imsg) stats.pt4_cnt * sizeof(struct pt_entry4) + stats.pt6_cnt * sizeof(struct pt_entry6) + stats.prefix_cnt * sizeof(struct prefix) + + stats.rib_cnt * sizeof(struct rib_entry) + stats.path_cnt * sizeof(struct rde_aspath) + stats.aspath_size + stats.attr_cnt * sizeof(struct attr) + stats.attr_data)); |