In tcp_splice_forward() we exit the forwarding loop if we have an EOF on
the read side. However, this potentially leaves data in the pipe, even if
the write side hasn't yet blocked. It's not clear to me whether this could
leave data indefinitely in the pipe with no events to keep it moving,
but it's not clear to me that it couldn't either.
Stay in the loop until either the write side blocks or we've emptied
the pipe.
Secondly, this test is after several tests on how much we wrote which
might also cause a retry. However, if we've reached EOF and the pipe is
empty, there's nothing more to do, regardless of how much we wrote, so
we should exit, regardless of those conditions. So move this exit test
above the retry conditions.
Signed-off-by: David Gibson