Module Name: src Committed By: jdolecek Date: Sun Feb 23 21:50:21 UTC 2020
Modified Files: src/sys/net: if_bridge.c Log Message: disable the DEBUG bridge_calc_csum_flags() printf To generate a diff of this commit: cvs rdiff -u -r1.166 -r1.167 src/sys/net/if_bridge.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/net/if_bridge.c diff -u src/sys/net/if_bridge.c:1.166 src/sys/net/if_bridge.c:1.167 --- src/sys/net/if_bridge.c:1.166 Wed Jan 29 04:18:34 2020 +++ src/sys/net/if_bridge.c Sun Feb 23 21:50:21 2020 @@ -1,4 +1,4 @@ -/* $NetBSD: if_bridge.c,v 1.166 2020/01/29 04:18:34 thorpej Exp $ */ +/* $NetBSD: if_bridge.c,v 1.167 2020/02/23 21:50:21 jdolecek Exp $ */ /* * Copyright 2001 Wasabi Systems, Inc. @@ -80,7 +80,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: if_bridge.c,v 1.166 2020/01/29 04:18:34 thorpej Exp $"); +__KERNEL_RCSID(0, "$NetBSD: if_bridge.c,v 1.167 2020/02/23 21:50:21 jdolecek Exp $"); #ifdef _KERNEL_OPT #include "opt_bridge_ipf.h" @@ -789,7 +789,7 @@ bridge_calc_csum_flags(struct bridge_sof } sc->sc_csum_flags_tx = flags; BRIDGE_UNLOCK(sc); -#ifdef DEBUG +#if 0 printf("%s: 0x%x\n", __func__, flags); #endif }