Re: [PATCH] bpf: selftests: Fix warning in flow_dissector

2019-06-13 Thread Arthur Fabre
Ah yes good catch. I guess it hasn't made it into bpf-next yet. On Thu, Jun 13, 2019 at 4:41 PM Stanislav Fomichev wrote: > > On 06/13, Arthur Fabre wrote: > > Building the userspace part of the flow_dissector resulted in: > > > > prog_tests/flow_dissector.c: In function ‘tx_tap’: > > prog_tests/

Re: [PATCH] bpf: selftests: Fix warning in flow_dissector

2019-06-13 Thread Stanislav Fomichev
On 06/13, Arthur Fabre wrote: > Building the userspace part of the flow_dissector resulted in: > > prog_tests/flow_dissector.c: In function ‘tx_tap’: > prog_tests/flow_dissector.c:176:9: warning: implicit declaration > of function ‘writev’; did you mean ‘write’? [-Wimplicit-function-declaration] >

[PATCH] bpf: selftests: Fix warning in flow_dissector

2019-06-13 Thread Arthur Fabre
Building the userspace part of the flow_dissector resulted in: prog_tests/flow_dissector.c: In function ‘tx_tap’: prog_tests/flow_dissector.c:176:9: warning: implicit declaration of function ‘writev’; did you mean ‘write’? [-Wimplicit-function-declaration] return writev(fd, iov, ARRAY_SIZE(iov))