Module Name: src Committed By: msaitoh Date: Thu Jan 5 05:53:23 UTC 2017
Modified Files: src/sys/dev/pci/ixgbe: ix_txrx.c ixgbe.c ixv.c Log Message: Fix INIT_DEBUGOUT() messages. To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 src/sys/dev/pci/ixgbe/ix_txrx.c cvs rdiff -u -r1.58 -r1.59 src/sys/dev/pci/ixgbe/ixgbe.c cvs rdiff -u -r1.30 -r1.31 src/sys/dev/pci/ixgbe/ixv.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/dev/pci/ixgbe/ix_txrx.c diff -u src/sys/dev/pci/ixgbe/ix_txrx.c:1.13 src/sys/dev/pci/ixgbe/ix_txrx.c:1.14 --- src/sys/dev/pci/ixgbe/ix_txrx.c:1.13 Fri Dec 16 08:24:40 2016 +++ src/sys/dev/pci/ixgbe/ix_txrx.c Thu Jan 5 05:53:23 2017 @@ -59,7 +59,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ /*$FreeBSD: head/sys/dev/ixgbe/ix_txrx.c 301538 2016-06-07 04:51:50Z sephe $*/ -/*$NetBSD: ix_txrx.c,v 1.13 2016/12/16 08:24:40 msaitoh Exp $*/ +/*$NetBSD: ix_txrx.c,v 1.14 2017/01/05 05:53:23 msaitoh Exp $*/ #include "opt_inet.h" #include "opt_inet6.h" @@ -693,7 +693,7 @@ ixgbe_free_transmit_buffers(struct tx_ri struct ixgbe_tx_buf *tx_buffer; int i; - INIT_DEBUGOUT("ixgbe_free_transmit_ring: begin"); + INIT_DEBUGOUT("ixgbe_free_transmit_buffers: begin"); if (txr->tx_buffers == NULL) return; Index: src/sys/dev/pci/ixgbe/ixgbe.c diff -u src/sys/dev/pci/ixgbe/ixgbe.c:1.58 src/sys/dev/pci/ixgbe/ixgbe.c:1.59 --- src/sys/dev/pci/ixgbe/ixgbe.c:1.58 Wed Dec 28 09:29:35 2016 +++ src/sys/dev/pci/ixgbe/ixgbe.c Thu Jan 5 05:53:23 2017 @@ -59,7 +59,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ /*$FreeBSD: head/sys/dev/ixgbe/if_ix.c 302384 2016-07-07 03:39:18Z sbruno $*/ -/*$NetBSD: ixgbe.c,v 1.58 2016/12/28 09:29:35 msaitoh Exp $*/ +/*$NetBSD: ixgbe.c,v 1.59 2017/01/05 05:53:23 msaitoh Exp $*/ #include "opt_inet.h" #include "opt_inet6.h" @@ -413,7 +413,7 @@ ixgbe_lookup(const struct pci_attach_arg pcireg_t subid; ixgbe_vendor_info_t *ent; - INIT_DEBUGOUT("ixgbe_probe: begin"); + INIT_DEBUGOUT("ixgbe_lookup: begin"); if (PCI_VENDOR(pa->pa_id) != IXGBE_INTEL_VENDOR_ID) return NULL; Index: src/sys/dev/pci/ixgbe/ixv.c diff -u src/sys/dev/pci/ixgbe/ixv.c:1.30 src/sys/dev/pci/ixgbe/ixv.c:1.31 --- src/sys/dev/pci/ixgbe/ixv.c:1.30 Fri Dec 16 08:30:20 2016 +++ src/sys/dev/pci/ixgbe/ixv.c Thu Jan 5 05:53:23 2017 @@ -31,7 +31,7 @@ ******************************************************************************/ /*$FreeBSD: head/sys/dev/ixgbe/if_ixv.c 302384 2016-07-07 03:39:18Z sbruno $*/ -/*$NetBSD: ixv.c,v 1.30 2016/12/16 08:30:20 msaitoh Exp $*/ +/*$NetBSD: ixv.c,v 1.31 2017/01/05 05:53:23 msaitoh Exp $*/ #include "opt_inet.h" #include "opt_inet6.h" @@ -253,7 +253,7 @@ ixv_lookup(const struct pci_attach_args pcireg_t subid; ixgbe_vendor_info_t *ent; - INIT_DEBUGOUT("ixv_probe: begin"); + INIT_DEBUGOUT("ixv_lookup: begin"); if (PCI_VENDOR(pa->pa_id) != IXGBE_INTEL_VENDOR_ID) return NULL;