summaryrefslogtreecommitdiffstats
path: root/sys/dev/xen
diff options
context:
space:
mode:
authoradrian <adrian@FreeBSD.org>2009-05-27 01:54:26 +0000
committeradrian <adrian@FreeBSD.org>2009-05-27 01:54:26 +0000
commitfc20aee93bd489bc9ed7ce5ea82fae98f8cb15a8 (patch)
treec69a85dd0d8ad371484350e5dd877e6f2f52d9e9 /sys/dev/xen
parent712491866f164421c559ba7b551df6f90768a067 (diff)
downloadFreeBSD-src-fc20aee93bd489bc9ed7ce5ea82fae98f8cb15a8.zip
FreeBSD-src-fc20aee93bd489bc9ed7ce5ea82fae98f8cb15a8.tar.gz
Flesh out some inline documentation which hopefully reflect the intended
reality of these functions.
Diffstat (limited to 'sys/dev/xen')
-rw-r--r--sys/dev/xen/netfront/netfront.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/sys/dev/xen/netfront/netfront.c b/sys/dev/xen/netfront/netfront.c
index 1d3efea..282b1d7 100644
--- a/sys/dev/xen/netfront/netfront.c
+++ b/sys/dev/xen/netfront/netfront.c
@@ -685,6 +685,23 @@ xn_free_tx_ring(struct netfront_info *sc)
#endif
}
+/*
+ * Do some brief math on the number of descriptors available to
+ * determine how many slots are available.
+ *
+ * Firstly - wouldn't something with RING_FREE_REQUESTS() be more applicable?
+ * Secondly - MAX_SKB_FRAGS is a Linux construct which may not apply here.
+ * Thirdly - it isn't used here anyway; the magic constant '24' is possibly
+ * wrong?
+ * The "2" is presumably to ensure there are also enough slots available for
+ * the ring entries used for "options" (eg, the TSO entry before a packet
+ * is queued); I'm not sure why its 2 and not 1. Perhaps to make sure there's
+ * a "free" node in the tx mbuf list (node 0) to represent the freelist?
+ *
+ * This only figures out whether any xenbus ring descriptors are available;
+ * it doesn't at all reflect how many tx mbuf ring descriptors are also
+ * available.
+ */
static inline int
netfront_tx_slot_available(struct netfront_info *np)
{
@@ -1389,6 +1406,12 @@ xn_start_locked(struct ifnet *ifp)
if (m_head == NULL)
break;
+ /*
+ * netfront_tx_slot_available() tries to do some math to
+ * ensure that there'll be enough xenbus ring slots available
+ * for the maximum number of packet fragments (and a couple more
+ * for what I guess are TSO and other ring entry items.)
+ */
if (!netfront_tx_slot_available(sc)) {
IF_PREPEND(&ifp->if_snd, m_head);
ifp->if_drv_flags |= IFF_DRV_OACTIVE;
OpenPOWER on IntegriCloud