diff options
author | David Gibson <david@gibson.dropbear.id.au> | 2023-11-07 13:42:40 +1100 |
---|---|---|
committer | Stefano Brivio <sbrivio@redhat.com> | 2023-11-07 09:53:46 +0100 |
commit | d33cbc600e4d95356e1e80937dad0d3ef21e959e (patch) | |
tree | df7eb830b092b1e68eaaf26963a2dedf2dfdbcc5 /test | |
parent | f6d8dc235553761a2541f7a6b782488160db03a7 (diff) | |
download | passt-d33cbc600e4d95356e1e80937dad0d3ef21e959e.tar passt-d33cbc600e4d95356e1e80937dad0d3ef21e959e.tar.gz passt-d33cbc600e4d95356e1e80937dad0d3ef21e959e.tar.bz2 passt-d33cbc600e4d95356e1e80937dad0d3ef21e959e.tar.lz passt-d33cbc600e4d95356e1e80937dad0d3ef21e959e.tar.xz passt-d33cbc600e4d95356e1e80937dad0d3ef21e959e.tar.zst passt-d33cbc600e4d95356e1e80937dad0d3ef21e959e.zip |
tcp_splice: Remove redundant tcp_splice_epoll_ctl()
tcp_splice_conn_update() calls tcp_splice_epoll_ctl() twice: first ignoring
the return value, then checking it. This serves no purpose. If the first
call succeeds, the second call will do exactly the same thing again, since
nothing has changed in conn. If the first call fails, then
tcp_splice_epoll_ctl() itself will EPOLL_CTL_DEL both fds, meaning when
the second call tries to EPOLL_CTL_MOD them it will necessarily fail.
It appears that this duplication was introduced by accident in an
otherwise unrelated patch.
Fixes: bb708111 ("treewide: Packet abstraction with mandatory boundary checks")
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Diffstat (limited to 'test')
0 files changed, 0 insertions, 0 deletions