Linux NFS development
 help / color / mirror / Atom feed
From: "J. Bruce Fields" <bfields@fieldses.org>
To: Frank van Maarseveen <frankvm@frankvm.com>
Cc: Linux NFS mailing list <linux-nfs@vger.kernel.org>
Subject: Re: [NLM] 2.6.27 broken
Date: Thu, 20 Nov 2008 17:27:31 -0500	[thread overview]
Message-ID: <20081120222731.GA591@fieldses.org> (raw)
In-Reply-To: <20081115132831.GA11329@janus>

On Sat, Nov 15, 2008 at 02:28:31PM +0100, Frank van Maarseveen wrote:
> Try running multiple instances of attached program on 1 NFS client
> against a 2.6.27(.5) NFSv3 server:
> 
> 	gcc -Wall -Wstrict-prototypes -o lck lck.c
> 	for i in `seq 30`
> 	do
> 		lck &
> 	done

Or reproduceable using the "flock" utility with:

	for i in `seq 30`
	do
		flock /mnt/foo sleep 10
	done

Hm.  What's the last known good server version?

--b.

> 
> Depending on the client linux version one or more processes hang
> indefinately (on 2.6.22) or receive a ENOLCK (on 2.6.27), printing:
> 
> 	lck: fcntl: No locks available
> 
> Either way, /proc/locks on the server grows indefinately.
> 
> -- 
> Frank

> #include <stdio.h>
> #include <ctype.h>
> #include <unistd.h>
> #include <fcntl.h>
> #include <errno.h>
> #include <string.h>
> #include <stdarg.h>
> #include <stdlib.h>
> 
> void die(const char *fmt, ...) __attribute__((format(printf, 1, 2), noreturn));
> void die(const char *fmt, ...)
> {
> 	va_list	ap;
> 
> 	va_start(ap, fmt);
> 	fprintf(stderr, "lck: ");
> 	vfprintf(stderr, fmt, ap);
> 	va_end(ap);
> 	exit(1);
> }
> 
> int main(int argc, char **argv)
> {
> 	struct flock flock = {0};
> 	int i, d, locktime, cmd;
> 	const char *name;
> 
> 	flock.l_type = F_WRLCK;		/* -w */
> 	flock.l_whence = SEEK_SET;
> 	cmd = F_SETLKW;			/* no -t */
> 	name = NULL;
> 	locktime = 10;
> 	for (i = 1; i < argc; ++i) {
> 		if (strcmp(argv[i], "-r") == 0)
> 			flock.l_type = F_RDLCK;		/* lock for N readers */
> 		else if (strcmp(argv[i], "-w") == 0)
> 			flock.l_type = F_WRLCK;		/* lock for 1 writer */
> 		else if (strcmp(argv[i], "-t") == 0)
> 			cmd = F_SETLK;			/* test for a lock, don't wait */
> 		else if (argv[i][0] == '-')
> 			die("Usage: lck [-r|-w] [-t] [<filename> [<locktime>]]\n");
> 		else if (name && isdigit(argv[i][0]))
> 			locktime = atoi(argv[i]);	/* after acquiring lock, wait locktime seconds */
> 		else
> 			name = argv[i];
> 	}
> 	if (!name)
> 		name = "lck-filename";
> 	d = open(name, O_RDWR|O_CREAT, 0666);
> 	if (d == -1)
> 		die("open %s: %s\n", name, strerror(errno));
> 	if (fcntl(d, cmd, &flock) == -1)
> 		die("fcntl: %s\n", strerror(errno));
> 	printf("locked...");
> 	fflush(NULL);
> 	sleep(locktime);
> 	if (close(d))
> 		die("close: %s\n", strerror(errno));
> 	printf("unlocked.\n");
> 	return 0;
> }


  reply	other threads:[~2008-11-20 22:27 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-11-15 13:28 [NLM] 2.6.27 broken Frank van Maarseveen
2008-11-20 22:27 ` J. Bruce Fields [this message]
2008-11-28 11:24   ` Frank van Maarseveen
2008-12-16 17:39     ` J. Bruce Fields
2008-12-16 19:43       ` Miklos Szeredi
2008-12-16 20:16         ` J. Bruce Fields
2009-02-04 23:33           ` J. Bruce Fields
2009-02-05 10:21             ` Frank van Maarseveen
2009-02-05 19:52               ` J. Bruce Fields
2009-02-05 10:47             ` Miklos Szeredi
2009-02-05 19:52               ` J. Bruce Fields
2009-02-06 11:29                 ` Miklos Szeredi
2009-02-09 18:10                   ` J. Bruce Fields
2009-02-09 20:18                     ` Miklos Szeredi
2009-02-09 20:51                       ` J. Bruce Fields

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20081120222731.GA591@fieldses.org \
    --to=bfields@fieldses.org \
    --cc=frankvm@frankvm.com \
    --cc=linux-nfs@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox