mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
remove too noisy DIAGNOSTIC code
Reviewed by: qingli
This commit is contained in:
parent
932f0fa22e
commit
cbd1844537
2 changed files with 0 additions and 7 deletions
|
|
@ -1003,9 +1003,6 @@ in_purgemaddrs(struct ifnet *ifp)
|
|||
struct in_multi *inm;
|
||||
struct in_multi *oinm;
|
||||
|
||||
#ifdef DIAGNOSTIC
|
||||
printf("%s: purging ifp %p\n", __func__, ifp);
|
||||
#endif
|
||||
IFF_LOCKGIANT(ifp);
|
||||
IN_MULTI_LOCK();
|
||||
LIST_FOREACH_SAFE(inm, &V_in_multihead, inm_link, oinm) {
|
||||
|
|
|
|||
|
|
@ -904,10 +904,6 @@ in6_purgemaddrs(struct ifnet *ifp)
|
|||
struct in6_multi *in6m;
|
||||
struct in6_multi *oin6m;
|
||||
|
||||
#ifdef DIAGNOSTIC
|
||||
printf("%s: purging ifp %p\n", __func__, ifp);
|
||||
#endif
|
||||
|
||||
IFF_LOCKGIANT(ifp);
|
||||
LIST_FOREACH_SAFE(in6m, &in6_multihead, in6m_entry, oin6m) {
|
||||
if (in6m->in6m_ifp == ifp)
|
||||
|
|
|
|||
Loading…
Reference in a new issue