Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/lib/libpuffs Actually, disable pathconf for a while longer: ...



details:   https://anonhg.NetBSD.org/src/rev/ce8071a62be7
branches:  trunk
changeset: 755470:ce8071a62be7
user:      pooka <pooka%NetBSD.org@localhost>
date:      Sun Jun 06 23:11:05 2010 +0000

description:
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).

diffstat:

 lib/libpuffs/puffs.c |  7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diffs (29 lines):

diff -r 9a5caf97c372 -r ce8071a62be7 lib/libpuffs/puffs.c
--- a/lib/libpuffs/puffs.c      Sun Jun 06 23:02:31 2010 +0000
+++ b/lib/libpuffs/puffs.c      Sun Jun 06 23:11:05 2010 +0000
@@ -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);



Home | Main Index | Thread Index | Old Index