svn commit: r311028 - stable/11/sys/dev/sfxge
Andrew Rybchenko
arybchik at FreeBSD.org
Sun Jan 1 19:33:13 UTC 2017
Author: arybchik
Date: Sun Jan 1 19:33:12 2017
New Revision: 311028
URL: https://svnweb.freebsd.org/changeset/base/311028
Log:
MFC r310770
sfxge(4): cleanup: clarify/unify variable name used for put-list length
get_count is used for get-list.
Sponsored by: Solarflare Communications, Inc.
Modified:
stable/11/sys/dev/sfxge/sfxge_tx.c
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/sys/dev/sfxge/sfxge_tx.c
==============================================================================
--- stable/11/sys/dev/sfxge/sfxge_tx.c Sun Jan 1 19:30:45 2017 (r311027)
+++ stable/11/sys/dev/sfxge/sfxge_tx.c Sun Jan 1 19:33:12 2017 (r311028)
@@ -608,7 +608,7 @@ sfxge_tx_qdpl_put_unlocked(struct sfxge_
volatile uintptr_t *putp;
uintptr_t old;
uintptr_t new;
- unsigned old_len;
+ unsigned int put_count;
KASSERT(mbuf->m_nextpkt == NULL, ("mbuf->m_nextpkt != NULL"));
@@ -622,14 +622,14 @@ sfxge_tx_qdpl_put_unlocked(struct sfxge_
old = *putp;
if (old != 0) {
struct mbuf *mp = (struct mbuf *)old;
- old_len = mp->m_pkthdr.csum_data;
+ put_count = mp->m_pkthdr.csum_data;
} else
- old_len = 0;
- if (old_len >= stdp->std_put_max) {
+ put_count = 0;
+ if (put_count >= stdp->std_put_max) {
atomic_add_long(&txq->put_overflow, 1);
return (ENOBUFS);
}
- mbuf->m_pkthdr.csum_data = old_len + 1;
+ mbuf->m_pkthdr.csum_data = put_count + 1;
mbuf->m_nextpkt = (void *)old;
} while (atomic_cmpset_ptr(putp, old, new) == 0);
More information about the svn-src-all
mailing list