diff options
author | Chris Caputo <ccaputo@alt.net> | 2009-07-18 04:02:26 +0000 |
---|---|---|
committer | Paul Jakma <paul@quagga.net> | 2009-07-21 10:13:11 +0100 |
commit | 67b9467f6cad5097a3e4c6e49348be4d6c17a5bb (patch) | |
tree | a4c14d2d2ad51f367c3e2a511942e8945bc22a16 /zebra | |
parent | 228da42898c4f7bd72d9c1ee4135108e8d40d860 (diff) | |
download | quagga-67b9467f6cad5097a3e4c6e49348be4d6c17a5bb.tar.bz2 quagga-67b9467f6cad5097a3e4c6e49348be4d6c17a5bb.tar.xz |
[zebra] Silence noisy process_subq
zebra_rib.c: process_subq(): #ifdef out debug code.
Diffstat (limited to 'zebra')
-rw-r--r-- | zebra/zebra_rib.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/zebra/zebra_rib.c b/zebra/zebra_rib.c index e11afaf1..1d1876d8 100644 --- a/zebra/zebra_rib.c +++ b/zebra/zebra_rib.c @@ -1207,12 +1207,14 @@ process_subq (struct list * subq, u_char qindex) if (rnode->info) /* The first RIB record is holding the flags bitmask. */ UNSET_FLAG (((struct rib *)rnode->info)->rn_status, RIB_ROUTE_QUEUED(qindex)); +#if 0 else { zlog_debug ("%s: called for route_node (%p, %d) with no ribs", __func__, rnode, rnode->lock); zlog_backtrace(LOG_DEBUG); } +#endif route_unlock_node (rnode); list_delete_node (subq, lnode); return 1; |