From owner-svn-src-all@freebsd.org Thu Jan 23 01:44:34 2020 Return-Path: Delivered-To: svn-src-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id DDED82270AD; Thu, 23 Jan 2020 01:44:34 +0000 (UTC) (envelope-from glebius@freebsd.org) Received: from cell.glebi.us (glebi.us [162.251.186.162]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "cell.glebi.us", Issuer "cell.glebi.us" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 4834nt4hjcz3MNv; Thu, 23 Jan 2020 01:44:34 +0000 (UTC) (envelope-from glebius@freebsd.org) Received: from cell.glebi.us (localhost [127.0.0.1]) by cell.glebi.us (8.15.2/8.15.2) with ESMTPS id 00N1iWWb001825 (version=TLSv1.3 cipher=TLS_AES_256_GCM_SHA384 bits=256 verify=NO); Wed, 22 Jan 2020 17:44:32 -0800 (PST) (envelope-from glebius@freebsd.org) Received: (from glebius@localhost) by cell.glebi.us (8.15.2/8.15.2/Submit) id 00N1iW70001824; Wed, 22 Jan 2020 17:44:32 -0800 (PST) (envelope-from glebius@freebsd.org) X-Authentication-Warning: cell.glebi.us: glebius set sender to glebius@freebsd.org using -f Date: Wed, 22 Jan 2020 17:44:32 -0800 From: Gleb Smirnoff To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: Re: svn commit: r357010 - in head/sys: dev/altera/atse dev/beri/virtio/network dev/dpaa dev/hyperv/netvsc dev/if_ndis dev/ntb/if_ntb dev/sbni dev/xen/netback mips/nlm/dev/net net Message-ID: <20200123014432.GB1268@FreeBSD.org> References: <202001230141.00N1fAIQ037940@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <202001230141.00N1fAIQ037940@repo.freebsd.org> User-Agent: Mutt/1.12.2 (2019-09-21) X-Rspamd-Queue-Id: 4834nt4hjcz3MNv X-Spamd-Bar: - Authentication-Results: mx1.freebsd.org; none X-Spamd-Result: default: False [-1.04 / 15.00]; local_wl_from(0.00)[freebsd.org]; NEURAL_HAM_MEDIUM(-0.89)[-0.888,0]; ASN(0.00)[asn:27348, ipnet:162.251.186.0/24, country:US]; NEURAL_HAM_LONG(-0.15)[-0.149,0] X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Jan 2020 01:44:34 -0000 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