summaryrefslogtreecommitdiff
path: root/sysdep/unix/io.c
diff options
context:
space:
mode:
authorJan Moskyto Matejka <mq@ucw.cz>2016-12-20 20:13:08 +0100
committerJan Moskyto Matejka <mq@ucw.cz>2016-12-20 20:36:56 +0100
commit2c33da507046c25d87741fe0ce7947985c8c7a10 (patch)
treec329d195445d8fcd41b1112ea5b8b2b78359f162 /sysdep/unix/io.c
parent7d95c44572d79ef15ec8b0220950b4e4374c6bc6 (diff)
Netlink: fix occasional netlink hangs on busy machines
Diffstat (limited to 'sysdep/unix/io.c')
-rw-r--r--sysdep/unix/io.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdep/unix/io.c b/sysdep/unix/io.c
index 644a4fcd..8773f4c4 100644
--- a/sysdep/unix/io.c
+++ b/sysdep/unix/io.c
@@ -2238,7 +2238,8 @@ io_loop(void)
if (pfd[s->index].revents & (POLLHUP | POLLERR))
{
sk_err(s, pfd[s->index].revents);
- goto next2;
+ if (s != current_sock)
+ goto next2;
}
current_sock = sk_next(s);