From owner-svn-soc-all@freebsd.org Mon Jul 4 07:42:32 2016 Return-Path: Delivered-To: svn-soc-all@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 28843B91C21 for ; Mon, 4 Jul 2016 07:42:32 +0000 (UTC) (envelope-from vincenzo@FreeBSD.org) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1C49A2576 for ; Mon, 4 Jul 2016 07:42:32 +0000 (UTC) (envelope-from vincenzo@FreeBSD.org) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.15.2/8.15.2) with ESMTP id u647gVSC049013 for ; Mon, 4 Jul 2016 07:42:31 GMT (envelope-from vincenzo@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.15.2/8.15.2/Submit) id u647gV3J048973 for svn-soc-all@FreeBSD.org; Mon, 4 Jul 2016 07:42:31 GMT (envelope-from vincenzo@FreeBSD.org) Date: Mon, 4 Jul 2016 07:42:31 GMT Message-Id: <201607040742.u647gV3J048973@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to vincenzo@FreeBSD.org using -f From: vincenzo@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r305706 - soc2016/vincenzo/head/sys/dev/netmap MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 07:42:32 -0000 Author: vincenzo Date: Mon Jul 4 07:42:30 2016 New Revision: 305706 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=305706 Log: freebsd: ptnet_transmit: move doublecheck code in the for loop Modified: soc2016/vincenzo/head/sys/dev/netmap/if_ptnet.c Modified: soc2016/vincenzo/head/sys/dev/netmap/if_ptnet.c ============================================================================== --- soc2016/vincenzo/head/sys/dev/netmap/if_ptnet.c Mon Jul 4 07:42:20 2016 (r305705) +++ soc2016/vincenzo/head/sys/dev/netmap/if_ptnet.c Mon Jul 4 07:42:30 2016 (r305706) @@ -1228,9 +1228,22 @@ ptnet_sync_tail(ptring, kring); if (head == ring->tail) { - /* Still no slots available, let's stop and - * wait for interrupts. */ - break; + /* Still no slots available. Reactivate the + * interrupts so that we can be notified + * when some free slots are made available by + * the host. */ + ptring->guest_need_kick = 1; + + /* Double-check. */ + ptnet_sync_tail(ptring, kring); + if (likely(head == ring->tail)) { + break; + } + + RD(1, "Found more slots by doublecheck"); + /* More slots were freed before reactivating + * the interrupts. */ + ptring->guest_need_kick = 0; } } @@ -1304,24 +1317,6 @@ ptnet_ring_update(pq, kring, head); } - if (head == ring->tail) { - /* Reactivate the interrupts so that we can be notified - * when some free slots are made available by the host. */ - ptring->guest_need_kick = 1; - - /* Double-check. */ - ptnet_sync_tail(ptring, kring); - if (unlikely(head != ring->tail)) { - RD(1, "Found more slots by doublecheck"); - /* More slots were freed before reactivating - * the interrupts. */ - ptring->guest_need_kick = 0; - if (!drbr_empty(ifp, pq->bufring)) { - taskqueue_enqueue(pq->taskq, &pq->task); - } - } - } - PTNET_Q_UNLOCK(pq); return 0;