From 4ebf19b48fafc8d94e14e4ba779969613b241a6a Mon Sep 17 00:00:00 2001 From: John Crispin Date: Fri, 21 Jun 2013 16:54:37 +0000 Subject: packages: clean up the package folder Signed-off-by: John Crispin SVN-Revision: 37007 --- package/mountd/patches/020-handle_timeout.patch | 32 ------------------------- 1 file changed, 32 deletions(-) delete mode 100644 package/mountd/patches/020-handle_timeout.patch (limited to 'package/mountd/patches/020-handle_timeout.patch') diff --git a/package/mountd/patches/020-handle_timeout.patch b/package/mountd/patches/020-handle_timeout.patch deleted file mode 100644 index badf40f..0000000 --- a/package/mountd/patches/020-handle_timeout.patch +++ /dev/null @@ -1,32 +0,0 @@ ---- a/lib/autofs.c -+++ b/lib/autofs.c -@@ -140,6 +140,7 @@ static int fullread(void *ptr, size_t le - - static int autofs_in(union autofs_v5_packet_union *pkt) - { -+ int res; - struct pollfd fds[1]; - - fds[0].fd = fdout; -@@ -147,15 +148,19 @@ static int autofs_in(union autofs_v5_pac - - while(1) - { -- if(poll(fds, 2, 1000) == -1) -+ res = poll(fds, 1, -1); -+ -+ if (res == -1) - { - if (errno == EINTR) - continue; - log_printf("failed while trying to read packet from kernel\n"); - return -1; - } -- if(fds[0].revents & POLLIN) -+ else if ((res > 0) && (fds[0].revents & POLLIN)) -+ { - return fullread(pkt, sizeof(*pkt)); -+ } - } - } - -- cgit v1.1