forked from atheurer/MoonGen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrss.lua
71 lines (66 loc) · 1.59 KB
/
rss.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
-- vim:ts=4:sw=4:noexpandtab
--- How to configure RSS
local dpdk = require "dpdk"
local memory = require "memory"
local device = require "device"
local stats = require "stats"
local log = require "log"
local PKT_SIZE = 60
local NUM_FLOWS = 100
function master(txPort, rxPort, rxQueues)
if not txPort or not rxPort then
log:info("Usage: txPort rxPort [rxQueues]")
return
end
rxQueues = rxQueues or 2
local txDev = device.config{port = txPort}
local rxDev = device.config{
port = rxPort,
rxQueues = rxQueues + 1,
rssNQueues = rxQueues,
rssBaseQueue = 1 -- optional and defaults to 0
}
device.waitForLinks()
dpdk.launchLua("txSlave", txDev:getTxQueue(0))
for i = 1, rxQueues do
dpdk.launchLua("rxSlave", rxDev:getRxQueue(i))
end
dpdk.waitForSlaves()
end
function txSlave(queue)
local mempool = memory.createMemPool(function(buf)
buf:getUdpPacket():fill{
ethSrc = queue,
pktLength = PKT_SIZE
}
end)
local bufs = mempool:bufArray()
local counter = 0
local txCtr = stats:newDevTxCounter(queue, "plain")
while dpdk.running() do
bufs:alloc(PKT_SIZE)
for i, buf in ipairs(bufs) do
local pkt = buf:getUdpPacket()
pkt.udp:setSrcPort(1000 + counter)
counter = incAndWrap(counter, NUM_FLOWS)
end
bufs:offloadUdpChecksums()
queue:send(bufs)
txCtr:update()
end
txCtr:finalize()
end
function rxSlave(queue)
local bufs = memory.bufArray()
ctr = stats:newPktRxCounter(queue, "plain")
while dpdk.running(100) do
local rx = queue:recv(bufs)
for i = 1, rx do
local buf = bufs[i]
ctr:countPacket(buf)
end
ctr:update()
bufs:free(rx)
end
ctr:finalize()
end