aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/netmap/netmap_monitor.c
diff options
context:
space:
mode:
authorVincenzo Maffione <vmaffione@FreeBSD.org>2021-03-29 16:32:54 +0000
committerVincenzo Maffione <vmaffione@FreeBSD.org>2021-03-29 16:32:54 +0000
commit660a47cb991d5a7ca69cd8dd9c09a5288d49e405 (patch)
tree63a418bf149e680d5ed1f0ed7c98d2d4902f636a /sys/dev/netmap/netmap_monitor.c
parenta6d768d845c173823785c71bb18b40074e7a8998 (diff)
Diffstat (limited to 'sys/dev/netmap/netmap_monitor.c')
-rw-r--r--sys/dev/netmap/netmap_monitor.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/sys/dev/netmap/netmap_monitor.c b/sys/dev/netmap/netmap_monitor.c
index 1f5ff65b3b81..9e5d57f7ff0f 100644
--- a/sys/dev/netmap/netmap_monitor.c
+++ b/sys/dev/netmap/netmap_monitor.c
@@ -38,6 +38,8 @@
* the traffic transiting on both the tx and rx corresponding rings in the
* monitored adapter. During registration, the user can choose if she wants
* to intercept tx only, rx only, or both tx and rx traffic.
+ * The slots containing traffic intercepted in the tx direction will have
+ * the NS_TXMON flag set.
*
* If the monitor is not able to cope with the stream of frames, excess traffic
* will be dropped.
@@ -590,6 +592,7 @@ netmap_zmon_parent_sync(struct netmap_kring *kring, int flags, enum txrx tx)
u_int beg, end, i;
u_int lim = kring->nkr_num_slots - 1,
mlim; // = mkring->nkr_num_slots - 1;
+ uint16_t txmon = kring->tx == NR_TX ? NS_TXMON : 0;
if (mkring == NULL) {
nm_prlim(5, "NULL monitor on %s", kring->name);
@@ -659,7 +662,7 @@ netmap_zmon_parent_sync(struct netmap_kring *kring, int flags, enum txrx tx)
ms->len = s->len;
s->len = tmp;
- ms->flags = s->flags;
+ ms->flags = (s->flags & ~NS_TXMON) | txmon;
s->flags |= NS_BUF_CHANGED;
beg = nm_next(beg, lim);
@@ -726,6 +729,7 @@ static void
netmap_monitor_parent_sync(struct netmap_kring *kring, u_int first_new, int new_slots)
{
u_int j;
+ uint16_t txmon = kring->tx == NR_TX ? NS_TXMON : 0;
for (j = 0; j < kring->n_monitors; j++) {
struct netmap_kring *mkring = kring->monitors[j];
@@ -777,7 +781,7 @@ netmap_monitor_parent_sync(struct netmap_kring *kring, u_int first_new, int new_
memcpy(dst, src, copy_len);
ms->len = copy_len;
- ms->flags = s->flags;
+ ms->flags = (s->flags & ~NS_TXMON) | txmon;
sent++;
beg = nm_next(beg, lim);