]> git.decadent.org.uk Git - nfs-utils.git/commitdiff
nfs-utils: remove xflock timeout
authorBen Myers <bpm@sgi.com>
Fri, 12 Feb 2010 18:58:57 +0000 (13:58 -0500)
committerSteve Dickson <steved@redhat.com>
Fri, 12 Feb 2010 19:21:04 +0000 (14:21 -0500)
Remove this 10 second timeout which can cause unexpected behavior and
corruption in the rmtab when hit.

Signed-off-by: Steve Dickson <steved@redhat.com>
support/nfs/xio.c

index 5e2e1e95e7228d42ef81ed8b1f44bc7cc2db2d13..e3d27d2f943546720bc4b3070d33e551cba67a47 100644 (file)
@@ -44,16 +44,9 @@ xfclose(XFILE *xfp)
        xfree(xfp);
 }
 
-static void
-doalarm(int sig)
-{
-       return;
-}
-
 int
 xflock(char *fname, char *type)
 {
-       struct sigaction sa, oldsa;
        int             readonly = !strcmp(type, "r");
        struct flock    fl = { readonly? F_RDLCK : F_WRLCK, SEEK_SET, 0, 0, 0 };
        int             fd;
@@ -68,21 +61,12 @@ xflock(char *fname, char *type)
                return -1;
        }
 
-       sa.sa_handler = doalarm;
-       sa.sa_flags = 0;
-       sigemptyset(&sa.sa_mask);
-       sigaction(SIGALRM, &sa, &oldsa);
-       alarm(10);
        if (fcntl(fd, F_SETLKW, &fl) < 0) {
-               alarm(0);
                xlog(L_WARNING, "failed to lock %s: errno %d (%s)",
                                fname, errno, strerror(errno));
                close(fd);
-               fd = 0;
-       } else {
-               alarm(0);
+               fd = -1;
        }
-       sigaction(SIGALRM, &oldsa, NULL);
 
        return fd;
 }