On Thu, Jan 23, 2020 at 01:41:10AM +0000, Gleb Smirnoff wrote:
T> Log:
T>   Introduce flag IFF_NEEDSEPOCH that marks Ethernet interfaces that
T>   supposedly may call into ether_input() without network epoch.
T>   
T>   They all need to be reviewed before 13.0-RELEASE.  Some may need
T>   be fixed.  The flag is not planned to be used in the kernel for
T>   a long time.

One unrelated change crept in:

T> Modified: head/sys/dev/xen/netback/netback.c
T> 
==============================================================================
T> --- head/sys/dev/xen/netback/netback.c       Thu Jan 23 01:38:51 2020        
(r357009)
T> +++ head/sys/dev/xen/netback/netback.c       Thu Jan 23 01:41:09 2020        
(r357010)
T> @@ -780,7 +780,7 @@ xnb_connect_comms(struct xnb_softc *xnb)
T>                                        xnb->evtchn,
T>                                        /*filter*/NULL,
T>                                        xnb_intr, /*arg*/xnb,
T> -                                      INTR_TYPE_BIO | INTR_MPSAFE,
T> +                                      INTR_TYPE_NET | INTR_MPSAFE,
T>                                        &xnb->xen_intr_handle);
T>      if (error != 0) {
T>              (void)xnb_disconnect(xnb);
T> 

The xnb(4) is a network driver, so mark the interrupt appropriately.

-- 
Gleb Smirnoff
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to