From owner-svn-soc-all@freebsd.org Mon Jul 4 07:42:40 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 9755EB91C4B for ; Mon, 4 Jul 2016 07:42:40 +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 8ABBA258F for ; Mon, 4 Jul 2016 07:42:40 +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 u647geaq049147 for ; Mon, 4 Jul 2016 07:42:40 GMT (envelope-from vincenzo@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.15.2/8.15.2/Submit) id u647geDi049145 for svn-soc-all@FreeBSD.org; Mon, 4 Jul 2016 07:42:40 GMT (envelope-from vincenzo@FreeBSD.org) Date: Mon, 4 Jul 2016 07:42:40 GMT Message-Id: <201607040742.u647geDi049145@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: r305707 - 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:40 -0000 Author: vincenzo Date: Mon Jul 4 07:42:39 2016 New Revision: 305707 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=305707 Log: freebsd: introduce PTNET_TX_NOSPACE 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:30 2016 (r305706) +++ soc2016/vincenzo/head/sys/dev/netmap/if_ptnet.c Mon Jul 4 07:42:39 2016 (r305707) @@ -1164,6 +1164,13 @@ } } +/* This should be computed as MAX_FRAME_SIZE / NETMAP_BUF_SIZE */ +#define PTNET_TX_MIN_SLOTS 33 + +#define PTNET_TX_NOSPACE(h, k) \ + ((((h) < (k)->rtail) ? 0 : (k)->nkr_num_slots) + \ + (k)->rtail - (h)) < PTNET_TX_MIN_SLOTS + static int ptnet_transmit(struct ifnet *ifp, struct mbuf *m) { @@ -1221,13 +1228,13 @@ head = ring->head; for (;;) { - if (head == ring->tail) { + if (PTNET_TX_NOSPACE(head, kring)) { /* We ran out of slot, let's see if the host has * freed up some, by reading hwcur and hwtail from * the CSB. */ ptnet_sync_tail(ptring, kring); - if (head == ring->tail) { + if (PTNET_TX_NOSPACE(head, kring)) { /* Still no slots available. Reactivate the * interrupts so that we can be notified * when some free slots are made available by @@ -1236,7 +1243,7 @@ /* Double-check. */ ptnet_sync_tail(ptring, kring); - if (likely(head == ring->tail)) { + if (likely(PTNET_TX_NOSPACE(head, kring))) { break; }