pcap: Drop O_DSYNC from pcap file descriptor
passt is stable enough, and dropping O_DSYNC makes reduces the impact of capturing packets on timing, while running tests. Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
This commit is contained in:
parent
11cc43feec
commit
a491c8ee3c
1 changed files with 1 additions and 1 deletions
2
pcap.c
2
pcap.c
|
@ -185,7 +185,7 @@ void pcap_init(struct ctx *c, int index)
|
|||
strncpy(c->pcap, name, PATH_MAX);
|
||||
}
|
||||
|
||||
pcap_fd = open(c->pcap, O_WRONLY | O_CREAT | O_TRUNC | O_DSYNC,
|
||||
pcap_fd = open(c->pcap, O_WRONLY | O_CREAT | O_TRUNC,
|
||||
S_IRUSR | S_IWUSR);
|
||||
if (pcap_fd == -1) {
|
||||
perror("open");
|
||||
|
|
Loading…
Reference in a new issue