NetBSD-Bugs archive

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

PR/53294 CVS commit: [netbsd-8] src/sys/dev/pci/ixgbe



The following reply was made to PR kern/53294; it has been noted by GNATS.

From: "Martin Husemann" <martin%netbsd.org@localhost>
To: gnats-bugs%gnats.NetBSD.org@localhost
Cc: 
Subject: PR/53294 CVS commit: [netbsd-8] src/sys/dev/pci/ixgbe
Date: Sat, 9 Jun 2018 14:59:43 +0000

 Module Name:	src
 Committed By:	martin
 Date:		Sat Jun  9 14:59:43 UTC 2018
 
 Modified Files:
 	src/sys/dev/pci/ixgbe [netbsd-8]: ix_txrx.c ixgbe.c ixgbe.h
 	    ixgbe_netbsd.c ixgbe_netbsd.h ixgbe_osdep.h ixv.c
 
 Log Message:
 Pull up following revision(s) (requested by msaitoh in ticket #864):
 
 	sys/dev/pci/ixgbe/ix_txrx.c			1.40-1.47 (patch)
 	sys/dev/pci/ixgbe/ixgbe.c			1.148,1.149,1.151,
 							1.152,1.154,
 							1.155,1.157-1.160 (patch)
 	sys/dev/pci/ixgbe/ixgbe.h			1.43,1.44,1.46,1.49 (patch)
 	sys/dev/pci/ixgbe/ixgbe_netbsd.c		1.7 (patch)
 	sys/dev/pci/ixgbe/ixgbe_netbsd.h		1.8 (patch)
 	sys/dev/pci/ixgbe/ixgbe_osdep.h			1.22 (patch)
 	sys/dev/pci/ixgbe/ixv.c				1.100-1.104 (patch)
 	sys/dev/pci/ixgbe/ixv.c				1.94,1.95,1.99 (patch)
 
  Remove unused structure entries. No functional change.
  -
  Remove unused IXGBE_FC_HI and IXGBE_FC_LO. The watermark of the flow control
 is automatically calculated from the size of the packet buffer.
  -
  Use ixgbe_eitr_write() when writing the EITR for the link interrupt like
 queue's EITR to write the register safely. This change is not relatively
 so important than queue's EITR because link's EITR is written in if_init().
  -
  Don't free and reallocate bus_dmamem when it's not required. Currently,
 the watchdog timer is completely broken and never fire (it's from FreeBSD
 (pre iflib)). If the problem is fixed and watchdog fired, ixgbe_init() always
 calls ixgbe_jcl_reinit() and it causes panic. The reason is that
 ixgbe_local_timer1(it includes watchdog function) is softint and
 xgbe_jcl_reinit() calls bus_dmamem*() functions. bus_dmamem*() can't be called
 from interrupt context.
 
  One of the way to prevent panic is use worqueue for the timer, but it's
 not a small change. (I'll do it in future).
 
  Another way is not reallocate dmamem if it's not required. If both the MTU
 (rx_mbuf_sz in reality) and the number of RX descriptors are not changed, it's
 not required to call bus_dmamem_{unmap,free}(). Even if we use workque, this
 change save time of ixgbe_init().
 
  I have a code to fix broken watchdog timer but it sometime causes watchdog
 timeout, so I don't commit it yet.
  -
 Count some register correctly:
 - QPRDC register is only for 82599 and newer.
 - Count IXGBE_QPRDC, PX{ON,OFF}{T,R}XC[NT].
  The TQSMR register is not for receiving but for transmitting, so move the
 initialization from ixgbe_initialize_receive_units() to
 ixgbe_initialize_transmit_units(). No functional change.
  -
  Whitespace fix. No functional change.
  -
  Add rxd_nxck (Receive Descriptor next to check) read only sysctl.
  Don't check IFF_RUNNING in ixgbe_rxeof(). Doing break and leaving a deacriptor
 with DD bit is worse than just processing the entry. And it's also racy to
 check IFF_RUNNING in rxeof(). If you'd like to strictly obey IFF_RUNNING,
 it would be better to do it in the upper layer.
  Same as DragonFly (a part of 79251f5ebe4cf9dd2f3e6aed590e09d756d39922).
  Add "bool txr_no_space" for TX descriptor shortage. Use it like IFF_OACTIVE.
  Clear que->disabled_count in {ixgbe,ixv}_init_locked(). Without this,
 interrupt mask state and EIMS may mismatch and if_init doesn't recover
 from TX/RX stall problem.
  This change itself doesn't fix PR#53294.
  -
  Add hw.ixgN.debug sysctl. "sysctl -w hw.ixgN.debug=1" dumps some registers
 to console.
  -
 Constify several variables in ixgbe/ so that they land in .rodata (1038
 bytes).
  -
  Don't call ixgbe_rearm_queues() in ixgbe_local_timer1().
    ixgbe_enable_queue() and ixgbe_disable_queue() try to enable/disable queue
   interrupt safely. It has the internal counter. When a queue's MSI-X is
   received, ixgbe_msix_que() is called (IPL_NET). This function disable the
   queue's interrupt by ixgbe_disable_queue() and issues an softint.
   ixgbe_handle() queue is called by the softint (IPL_SOFTNET), process TX, RX
   and call ixgbe_enable_queue() at the end.
 
    ixgbe_local_timer1() is a callout and run always on CPU 0 (IPL_SOFTCLOCK).
   When ixgbe_rearm_queues() called, an MSI-X interrupt is issued for a specific
   queue. It may not CPU 0. If this interrupt's ixgbe_msix_que() is called and
   sofint_schedule() is called before the last sofint's softint_execute() is not
   called, the softint_schedule() fails because of SOFTINT_PENDING. It result
   in breaking ixgbe_{enable,disable}_queue()'s internal counter.
    ixgbe_local_timer1() is written not to call ixgbe_rearm_queues() if
   the interrupt is disabled, but it's called because of unknown bug or a race.
 
   One solution to avoid this problem is to not to use the internal counter,
   but it's little difficult. Another solution is stop using
   ixgbe_rearm_queues() at all. Essentially, ixgbe_rearm_queues() is not
   required (it was added in ixgbe.c rev. 1.43 (2016/12/01)).
   ixgbe_rearm_queues() helps for lost interrupt problem but I've never seen it
   other than ixgbe_rearm_queues() problem.
 
 XXX pullup-8.
 
 
 To generate a diff of this commit:
 cvs rdiff -u -r1.24.2.10 -r1.24.2.11 src/sys/dev/pci/ixgbe/ix_txrx.c
 cvs rdiff -u -r1.88.2.19 -r1.88.2.20 src/sys/dev/pci/ixgbe/ixgbe.c
 cvs rdiff -u -r1.24.6.11 -r1.24.6.12 src/sys/dev/pci/ixgbe/ixgbe.h
 cvs rdiff -u -r1.6 -r1.6.2.1 src/sys/dev/pci/ixgbe/ixgbe_netbsd.c
 cvs rdiff -u -r1.7 -r1.7.6.1 src/sys/dev/pci/ixgbe/ixgbe_netbsd.h
 cvs rdiff -u -r1.17.6.3 -r1.17.6.4 src/sys/dev/pci/ixgbe/ixgbe_osdep.h
 cvs rdiff -u -r1.56.2.16 -r1.56.2.17 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