Source-Changes-HG archive

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

[src/netbsd-8]: src/sys/dev/pci/ixgbe Pull up following revision(s) (requeste...



details:   https://anonhg.NetBSD.org/src/rev/e4bcbb02ce6e
branches:  netbsd-8
changeset: 461064:e4bcbb02ce6e
user:      martin <martin%NetBSD.org@localhost>
date:      Thu Nov 14 15:53:39 2019 +0000

description:
Pull up following revision(s) (requested by msaitoh in ticket #1435):

        sys/dev/pci/ixgbe/ixv.c: revision 1.140

ixv(4): disable RSS configuration on 82599 and X540 VFs.

Those VFs share their RSS configuration with PF and, thus,
they cannot be configured independently. From FreeBSD r354349.

diffstat:

 sys/dev/pci/ixgbe/ixv.c |  5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diffs (19 lines):

diff -r 443b99b743ce -r e4bcbb02ce6e sys/dev/pci/ixgbe/ixv.c
--- a/sys/dev/pci/ixgbe/ixv.c   Thu Nov 14 15:48:07 2019 +0000
+++ b/sys/dev/pci/ixgbe/ixv.c   Thu Nov 14 15:53:39 2019 +0000
@@ -1,4 +1,4 @@
-/*$NetBSD: ixv.c,v 1.56.2.26 2019/10/08 18:16:50 martin Exp $*/
+/*$NetBSD: ixv.c,v 1.56.2.27 2019/11/14 15:53:39 martin Exp $*/
 
 /******************************************************************************
 
@@ -1931,7 +1931,8 @@
                            adapter->num_rx_desc - 1);
        }
 
-       ixv_initialize_rss_mapping(adapter);
+       if (adapter->hw.mac.type >= ixgbe_mac_X550_vf)
+               ixv_initialize_rss_mapping(adapter);
 } /* ixv_initialize_receive_units */
 
 /************************************************************************



Home | Main Index | Thread Index | Old Index