From owner-freebsd-xen@freebsd.org Tue Nov 8 13:05:13 2016 Return-Path: Delivered-To: freebsd-xen@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1E43EC36A10 for ; Tue, 8 Nov 2016 13:05:13 +0000 (UTC) (envelope-from prvs=11366e8ad=roger.pau@citrix.com) Received: from SMTP.EU.CITRIX.COM (smtp.ctxuk.citrix.com [185.25.65.24]) (using TLSv1.2 with cipher RC4-SHA (128/128 bits)) (Client CN "mail.citrix.com", Issuer "DigiCert SHA2 Secure Server CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 76FB1F77 for ; Tue, 8 Nov 2016 13:05:11 +0000 (UTC) (envelope-from prvs=11366e8ad=roger.pau@citrix.com) X-IronPort-AV: E=Sophos;i="5.31,462,1473120000"; d="scan'208";a="34473027" Date: Tue, 8 Nov 2016 14:04:56 +0100 From: "roger.pau@citrix.com" To: Liuyingdong CC: "freebsd-xen@freebsd.org" , "Zhaojun (Euler)" , Suoben Subject: Re: [PATCH]netfront: need release all resources after adding and removing NICs time and again Message-ID: <20161108130456.ejiuhjjxjt5c6yeq@mac> References: <3655E9A8B903724782E1F75DCFD74E6BF966FF5A@szxema506-mbs.china.huawei.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Disposition: inline In-Reply-To: <3655E9A8B903724782E1F75DCFD74E6BF966FF5A@szxema506-mbs.china.huawei.com> User-Agent: NeoMutt/20161028 (1.7.1) X-ClientProxiedBy: AMSPEX02CAS01.citrite.net (10.69.22.112) To AMSPEX02CL02.citrite.net (10.69.22.126) X-DLP: AMS1 X-BeenThere: freebsd-xen@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Discussion of the freebsd port to xen - implementation and usage List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Nov 2016 13:05:13 -0000 On Fri, Nov 04, 2016 at 07:43:41AM +0000, Liuyingdong wrote: > On xen,freebsd 10.2 virtual machines hang after adding and removing NICs time and again(more than 30 times). > I found error log is as follows: > "netfront can't alloc tx grant refs" Hello, Thanks for the patch, although I'm not able to import it, git complain with: patch: **** malformed patch at line 7: } Could you please resend it using git send-email? I also have a couple of comments below regarding style. > > Signed-off-by: Liudong Liu > > diff --git a/dev/xen/netfront/netfront.c b/dev/xen/netfront/netfront.c > index 5497139..e96bbba 100644 > --- a/dev/xen/netfront/netfront.c > +++ b/dev/xen/netfront/netfront.c > @@ -790,6 +790,44 @@ netif_release_tx_bufs(struct netfront_info *np) > } > } Missing new line. > +static void netif_release_rx_bufs_copy(struct netfront_info *np) This needs to be on a new line. > +{ > + struct mbuf *m; > + int i, ref; > + int busy = 0, inuse = 0; > + > + XN_RX_LOCK(np); > + > + for (i = 0; i < NET_RX_RING_SIZE; i++) { > + ref = np->grant_rx_ref[i]; > + > + if (ref == GRANT_REF_INVALID) > + continue; > + > + inuse++; > + > + m = np->rx_mbufs[i]; > + > + if (!gnttab_end_foreign_access_ref(ref)) > + { > + busy++; > + continue; > + } > + > + gnttab_release_grant_reference(&np->gref_rx_head, ref); > + np->grant_rx_ref[i] = GRANT_REF_INVALID; > + add_id_to_freelist(np->rx_mbufs, i); > + > + m_freem(m); > + } > + > + if (busy) > + DPRINTK("%s: Unable to release %d of %d inuse grant references out of %ld total.\n", > + __FUNCTION__, busy, inuse, NET_RX_RING_SIZE); Please use device_printf for this instead of the function name. Also, could you align the string so it doesn't extend past 80 characters? Roger.