Source-Changes-HG archive

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

[src/netbsd-9]: src Pull up the following revisions, requested by msaitoh in ...



details:   https://anonhg.NetBSD.org/src/rev/8346b9c519e3
branches:  netbsd-9
changeset: 461228:8346b9c519e3
user:      martin <martin%NetBSD.org@localhost>
date:      Tue Nov 19 13:10:50 2019 +0000

description:
Pull up the following revisions, requested by msaitoh in ticket #451:

        sys/dev/pci/if_re_pci.c                 1.50 (patch)
        share/man/man4/re.4                     1.17-1.18 (patch)

Add D-Link DGE-530T Rev. C,D and TP-Link TG-3468 v2,v3.
Add note about UDP checksum offload feature to the document.

diffstat:

 share/man/man4/re.4     |  10 +++++++---
 sys/dev/pci/if_re_pci.c |  10 ++++++++--
 2 files changed, 15 insertions(+), 5 deletions(-)

diffs (79 lines):

diff -r 94977a85e4b4 -r 8346b9c519e3 share/man/man4/re.4
--- a/share/man/man4/re.4       Tue Nov 19 13:07:37 2019 +0000
+++ b/share/man/man4/re.4       Tue Nov 19 13:10:50 2019 +0000
@@ -1,4 +1,4 @@
-.\"    $NetBSD: re.4,v 1.16 2014/03/18 18:20:39 riastradh Exp $
+.\"    $NetBSD: re.4,v 1.16.28.1 2019/11/19 13:10:51 martin Exp $
 .\"
 .\" Copyright (c) 2003
 .\"    Bill Paul <wpaul%windriver.com@localhost>. All rights reserved.
@@ -32,7 +32,7 @@
 .\"
 .\" $FreeBSD: src/share/man/man4/re.4,v 1.4 2004/03/04 06:42:46 sanpei Exp $
 .\"
-.Dd April 6, 2013
+.Dd November 18, 2019
 .Dt RE 4
 .Os
 .Sh NAME
@@ -66,9 +66,13 @@
 .It
 D-Link DGE-528T Gigabit Ethernet (8169S)
 .It
+D-Link DGE-530T rev. C & D Gigabit Ethernet (8169)
+.It
 US Robotics (3Com) USR997902 Gigabit Ethernet (8169S)
 .It
 Linksys EG1032 rev. 3 Gigabit Ethernet (8169S)
+.It
+TP-Link TG-3468 v2 & v3 Gigabit Ethernet (8168)
 .El
 .Pp
 NICs based on the 8139C+ are capable of 10 and 100Mbps speeds over
@@ -78,7 +82,7 @@
 .Pp
 All NICs supported by the
 .Nm
-driver have TCP/IP checksum offload and hardware VLAN tagging/insertion
+driver have IP/TCP/UDP checksum offload and hardware VLAN tagging/insertion
 features, and use a descriptor-based DMA mechanism.
 They are also capable of TCP large send (TCP segmentation offload).
 .Pp
diff -r 94977a85e4b4 -r 8346b9c519e3 sys/dev/pci/if_re_pci.c
--- a/sys/dev/pci/if_re_pci.c   Tue Nov 19 13:07:37 2019 +0000
+++ b/sys/dev/pci/if_re_pci.c   Tue Nov 19 13:10:50 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: if_re_pci.c,v 1.49 2018/11/13 20:12:45 jdolecek Exp $  */
+/*     $NetBSD: if_re_pci.c,v 1.49.4.1 2019/11/19 13:10:50 martin Exp $        */
 
 /*
  * Copyright (c) 1997, 1998-2003
@@ -46,7 +46,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_re_pci.c,v 1.49 2018/11/13 20:12:45 jdolecek Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_re_pci.c,v 1.49.4.1 2019/11/19 13:10:50 martin Exp $");
 
 #include <sys/types.h>
 
@@ -99,6 +99,9 @@
        { PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8168,
            RTK_8168,
            "RealTek 8168/8111 PCIe Gigabit Ethernet" },
+       { PCI_VENDOR_NCUBE, PCI_PRODUCT_NCUBE_TG3648,
+           RTK_8168,
+           "TP-Link TG-3468 v2 (RTL8168) Gigabit Ethernet" },
        { PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8169,
            RTK_8169,
            "RealTek 8169/8110 Gigabit Ethernet" },
@@ -111,6 +114,9 @@
        { PCI_VENDOR_DLINK, PCI_PRODUCT_DLINK_DGE528T,
            RTK_8169,
            "D-Link DGE-528T Gigabit Ethernet" },
+       { PCI_VENDOR_DLINK, PCI_PRODUCT_DLINK_DGE530T_C1,
+           RTK_8169,
+           "D-Link DGE-530T C1 Gigabit Ethernet" },
        { PCI_VENDOR_USR2, PCI_PRODUCT_USR2_USR997902,
            RTK_8169,
            "US Robotics (3Com) USR997902 Gigabit Ethernet" },



Home | Main Index | Thread Index | Old Index