Source-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: [netbsd-10] src/sys/dev/pci/ixgbe



Module Name:    src
Committed By:   martin
Date:           Fri Oct 13 18:55:12 UTC 2023

Modified Files:
        src/sys/dev/pci/ixgbe [netbsd-10]: ix_txrx.c ixgbe.c ixgbe.h
            ixgbe_82599.c ixgbe_api.c ixgbe_bypass.h ixgbe_common.c
            ixgbe_common.h ixgbe_dcb.c ixgbe_dcb_82598.c ixgbe_type.h
            ixgbe_x540.c ixgbe_x550.c ixv.c

Log Message:
Pull up following revision(s) (requested by msaitoh in ticket #407):

        sys/dev/pci/ixgbe/ixgbe_common.c: revision 1.47
        sys/dev/pci/ixgbe/ixgbe_x550.c: revision 1.28
        sys/dev/pci/ixgbe/ixgbe_type.h: revision 1.60
        sys/dev/pci/ixgbe/ixgbe_82599.c: revision 1.31
        sys/dev/pci/ixgbe/ixgbe_82599.c: revision 1.32
        sys/dev/pci/ixgbe/ixv.c: revision 1.187
        sys/dev/pci/ixgbe/ixv.c: revision 1.188
        sys/dev/pci/ixgbe/ixv.c: revision 1.189
        sys/dev/pci/ixgbe/ixgbe_common.h: revision 1.18
        sys/dev/pci/ixgbe/ixgbe_x540.c: revision 1.24
        sys/dev/pci/ixgbe/ixgbe.c: revision 1.334
        sys/dev/pci/ixgbe/ixgbe.c: revision 1.335
        sys/dev/pci/ixgbe/ixgbe.c: revision 1.336
        sys/dev/pci/ixgbe/ixgbe.c: revision 1.337
        sys/dev/pci/ixgbe/ix_txrx.c: revision 1.103
        sys/dev/pci/ixgbe/ixgbe.c: revision 1.338
        sys/dev/pci/ixgbe/ixgbe_type.h: revision 1.59
        sys/dev/pci/ixgbe/ixgbe_dcb_82598.c: revision 1.13
        sys/dev/pci/ixgbe/ixgbe_dcb.c: revision 1.14
        sys/dev/pci/ixgbe/ixgbe_dcb.c: revision 1.15
        sys/dev/pci/ixgbe/ixgbe_api.c: revision 1.29
        sys/dev/pci/ixgbe/ixgbe_bypass.h: revision 1.5
        sys/dev/pci/ixgbe/ixgbe.h: revision 1.90
        sys/dev/pci/ixgbe/ixgbe.h: revision 1.91
        sys/dev/pci/ixgbe/ixgbe.h: revision 1.92
        sys/dev/pci/ixgbe/ixgbe_common.c: revision 1.46

ixg(4): Remove unused and old function. No functional change.
 - From FreeBSD's ix-3.3.32.

ixg(4): Add 82599 LS once again.
 - From:
        FreeBSD: 9228ac3a69c4c7401a743e6465e118101a2beeb0
        DPDK:    549ccd3dc01539e060597b503f2b65b272de3347
 - This was removed 5 years ago. From the commit message:
   > Remove IXGBE_DEV_ID_82599_LS(0x154f) support again. I don't know why. This
   > was added in ix-3.2.18.tar.gz(NetBSD: ixgbe_82599.c rev. 1.20) and
   > removed in ix-3.3.6.tar.gz.

ixg(4): Filter out spurious link up indication
 - Extend SFP+ cage crosstalk fix by re-checking link state after 5ms delay
   to filter out spurious link up indication by transceiver with no fiber
   cable connected.
 - From FreeBSD:
     In-tree: 04a5e6d7cadd06b10169c3c3a560649e7dc7444c
     Out of tree: ix-3.3.33.

ixgbe: Simplify definitions. No functional change.
 Both DEFAULT_{TX,RX}D and PERFORM_{TX,RX}D are 2048. Use DEFAULT_{TX,RX}D.
Same as FreeBSD.

ixgbe: Modify error message of wrong TX/RX descriptor size.
  - Based from FreeBSD ix-3.3.35. I think ix-3.3.35's RING_INCREMENT(== 32)
    is wrong. It should be 8(DBA_ALIGN / sizeof(union ixgbe_adv_[tr]x_desc)).
    Linux also uses 8.

ixgbe: Remove NO_82599_SUPPORT and NO_X540_SUPPORT support. NFCI.
 From FreeBSD ix-3.3.35. Note that this file is not used in NetBSD.

ixgbe: Enable interrupt after setting IFF_RUNNING. Same as FreeBSD x-3.3.35.

ixgbe: Cleanup. No fucntional change.

 Remove unused code, fix whitespace and modify comment to reduce against
FreeBSD(mainly from ix-3.3.35).


To generate a diff of this commit:
cvs rdiff -u -r1.100.4.2 -r1.100.4.3 src/sys/dev/pci/ixgbe/ix_txrx.c
cvs rdiff -u -r1.324.2.3 -r1.324.2.4 src/sys/dev/pci/ixgbe/ixgbe.c
cvs rdiff -u -r1.86.4.2 -r1.86.4.3 src/sys/dev/pci/ixgbe/ixgbe.h
cvs rdiff -u -r1.29.4.1 -r1.29.4.2 src/sys/dev/pci/ixgbe/ixgbe_82599.c
cvs rdiff -u -r1.28 -r1.28.4.1 src/sys/dev/pci/ixgbe/ixgbe_api.c
cvs rdiff -u -r1.3.4.1 -r1.3.4.2 src/sys/dev/pci/ixgbe/ixgbe_bypass.h
cvs rdiff -u -r1.43.4.2 -r1.43.4.3 src/sys/dev/pci/ixgbe/ixgbe_common.c
cvs rdiff -u -r1.16.4.1 -r1.16.4.2 src/sys/dev/pci/ixgbe/ixgbe_common.h
cvs rdiff -u -r1.13 -r1.13.4.1 src/sys/dev/pci/ixgbe/ixgbe_dcb.c
cvs rdiff -u -r1.12 -r1.12.4.1 src/sys/dev/pci/ixgbe/ixgbe_dcb_82598.c
cvs rdiff -u -r1.55.4.3 -r1.55.4.4 src/sys/dev/pci/ixgbe/ixgbe_type.h
cvs rdiff -u -r1.23 -r1.23.4.1 src/sys/dev/pci/ixgbe/ixgbe_x540.c
cvs rdiff -u -r1.26.4.1 -r1.26.4.2 src/sys/dev/pci/ixgbe/ixgbe_x550.c
cvs rdiff -u -r1.183.4.2 -r1.183.4.3 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.




Home | Main Index | Thread Index | Old Index