Module Name: src Committed By: pooka Date: Sun Jun 6 23:11:05 UTC 2010
Modified Files: src/lib/libpuffs: puffs.c Log Message: Actually, disable pathconf for a while longer: the retval needs a little finetuning (not that everyone is jumping right to using it, but fixing will have to wait until tomorrow, and who knows what i'll forget during the night and how long it will eventually take). To generate a diff of this commit: cvs rdiff -u -r1.108 -r1.109 src/lib/libpuffs/puffs.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/lib/libpuffs/puffs.c diff -u src/lib/libpuffs/puffs.c:1.108 src/lib/libpuffs/puffs.c:1.109 --- src/lib/libpuffs/puffs.c:1.108 Sun Jun 6 22:44:54 2010 +++ src/lib/libpuffs/puffs.c Sun Jun 6 23:11:05 2010 @@ -1,4 +1,4 @@ -/* $NetBSD: puffs.c,v 1.108 2010/06/06 22:44:54 pooka Exp $ */ +/* $NetBSD: puffs.c,v 1.109 2010/06/06 23:11:05 pooka Exp $ */ /* * Copyright (c) 2005, 2006, 2007 Antti Kantee. All Rights Reserved. @@ -31,7 +31,7 @@ #include <sys/cdefs.h> #if !defined(lint) -__RCSID("$NetBSD: puffs.c,v 1.108 2010/06/06 22:44:54 pooka Exp $"); +__RCSID("$NetBSD: puffs.c,v 1.109 2010/06/06 23:11:05 pooka Exp $"); #endif /* !lint */ #include <sys/param.h> @@ -101,7 +101,10 @@ FILLOP(read, READ); FILLOP(write, WRITE); FILLOP(abortop, ABORTOP); +#if 0 + /* make pvnr_retval container sensible */ FILLOP(pathconf, PATHCONF); +#endif FILLOP(getextattr, GETEXTATTR); FILLOP(setextattr, SETEXTATTR);