Author: trasz
Date: Sat Dec  3 19:55:55 2016
New Revision: 309509
URL: https://svnweb.freebsd.org/changeset/base/309509

Log:
  MFC r308206:
  
  Make autounmountd(8) not die when traced with "truss -p".

Modified:
  stable/10/usr.sbin/autofs/autounmountd.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/usr.sbin/autofs/autounmountd.c
==============================================================================
--- stable/10/usr.sbin/autofs/autounmountd.c    Sat Dec  3 19:53:15 2016        
(r309508)
+++ stable/10/usr.sbin/autofs/autounmountd.c    Sat Dec  3 19:55:55 2016        
(r309509)
@@ -244,8 +244,11 @@ do_wait(int kq, double sleep_time)
                log_debugx("waiting for filesystem event");
                nevents = kevent(kq, NULL, 0, &unused, 1, NULL);
        }
-       if (nevents < 0)
+       if (nevents < 0) {
+               if (errno == EINTR)
+                       return;
                log_err(1, "kevent");
+       }
 
        if (nevents == 0) {
                log_debugx("timeout reached");
_______________________________________________
svn-src-stable-10@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-stable-10
To unsubscribe, send any mail to "svn-src-stable-10-unsubscr...@freebsd.org"

Reply via email to