]> git.puffer.fish Git - mirror/frr.git/commitdiff
[zebra] Silence noisy process_subq
authorChris Caputo <ccaputo@alt.net>
Sat, 18 Jul 2009 04:02:26 +0000 (04:02 +0000)
committerPaul Jakma <paul@quagga.net>
Tue, 21 Jul 2009 09:13:11 +0000 (10:13 +0100)
zebra_rib.c: process_subq(): #ifdef out debug code.

zebra/zebra_rib.c

index e11afaf1360468f8359207b172fe195d8238f8ff..1d1876d8117ef5ecf5976a62c4ce9755d666e857 100644 (file)
@@ -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;