update indent size

dev
jinhao2 2020-01-08 21:13:12 +08:00
parent 4b75b83d36
commit 4dfcdbcc8d
3 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
[dpdk]
# Hexadecimal bitmask of cores to run on.
lcore_mask=2
lcore_mask=1
# Number of memory channels.
channel=4
@ -71,7 +71,6 @@ savelen= 16777216
# Port config section
# Correspond to dpdk.port_list's index: port0, port1...
[port0]
addr=192.168.1.2
netmask=255.255.225.0

View File

@ -1328,7 +1328,8 @@ send_burst(struct lcore_conf *qconf, uint16_t n, uint8_t port)
if (unlikely(ff_global_cfg.pcap.enable)) {
uint16_t i;
for (i = 0; i < n; i++) {
ff_dump_packets( ff_global_cfg.pcap.save_path, m_table[i], ff_global_cfg.pcap.snap_len, ff_global_cfg.pcap.save_len);
ff_dump_packets( ff_global_cfg.pcap.save_path, m_table[i],
ff_global_cfg.pcap.snap_len, ff_global_cfg.pcap.save_len);
}
}