Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F108674978
D27980.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
D27980.diff
View Options
diff --git a/tools/tools/netmap/bridge.c b/tools/tools/netmap/bridge.c
--- a/tools/tools/netmap/bridge.c
+++ b/tools/tools/netmap/bridge.c
@@ -86,13 +86,12 @@
struct netmap_slot *rs = &rxring->slot[j];
struct netmap_slot *ts = &txring->slot[k];
- /* swap packets */
if (ts->buf_idx < 2 || rs->buf_idx < 2) {
RD(2, "wrong index rxr[%d] = %d -> txr[%d] = %d",
j, rs->buf_idx, k, ts->buf_idx);
sleep(2);
}
- /* copy the packet length. */
+ /* Copy the packet length. */
if (rs->len > rxring->nr_buf_size) {
RD(2, "%s: invalid len %u, rxr[%d] -> txr[%d]",
msg, rs->len, j, k);
@@ -109,13 +108,16 @@
/* report the buffer change. */
ts->flags |= NS_BUF_CHANGED;
rs->flags |= NS_BUF_CHANGED;
- /* copy the NS_MOREFRAG */
- rs->flags = (rs->flags & ~NS_MOREFRAG) | (ts->flags & NS_MOREFRAG);
} else {
char *rxbuf = NETMAP_BUF(rxring, rs->buf_idx);
char *txbuf = NETMAP_BUF(txring, ts->buf_idx);
nm_pkt_copy(rxbuf, txbuf, ts->len);
}
+ /*
+ * Copy the NS_MOREFRAG from rs to ts, leaving any
+ * other flags unchanged.
+ */
+ ts->flags = (ts->flags & ~NS_MOREFRAG) | (rs->flags & NS_MOREFRAG);
j = nm_ring_next(rxring, j);
k = nm_ring_next(txring, k);
}
@@ -190,7 +192,7 @@
int
main(int argc, char **argv)
{
- char msg_a2b[128], msg_b2a[128];
+ char msg_a2b[256], msg_b2a[256];
struct pollfd pollfd[2];
u_int burst = 1024, wait_link = 4;
struct nmport_d *pa = NULL, *pb = NULL;
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Jan 28, 5:53 AM (3 h, 57 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
16253291
Default Alt Text
D27980.diff (1 KB)
Attached To
Mode
D27980: netmap: bridge: fix bridge support for NS_MOREFRAG
Attached
Detach File
Event Timeline
Log In to Comment