tech-kern archive

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

Re: CVS commit: src/sys/fs/puffs



Martin Husemann <martin%duskware.de@localhost> wrote:

> This (or the accompanying lib commit) breaks the
> fs/puffs/t_fuzz:mountfuzz8 test case, see for example:

Here is a fix. Is it acceptable?

Index: t_fuzz.c
===================================================================
RCS file: /cvsroot/src/tests/fs/puffs/t_fuzz.c,v
retrieving revision 1.4
diff -U4 -r1.4 t_fuzz.c
--- tests/fs/puffs /t_fuzz.c    27 Aug 2010 12:42:21 -0000      1.4
+++ tests/fs/puffs /t_fuzz.c    20 Apr 2012 01:10:34 -0000
@@ -71,8 +71,14 @@
 fixkflag(struct puffs_kargs *kargs)
 {
 
        kargs->pa_flags &= PUFFS_KFLAG_MASK;
+
+       /* 
+        * PUFFS_KFLAG_CACHE_FS_TTL require extended behavior
+        * from the filesystem for which we have no test right now
+        */ 
+       kargs->pa_flags &= ~PUFFS_KFLAG_CACHE_FS_TTL;
 }
 
 static void
 fixfhflag(struct puffs_kargs *kargs)


-- 
Emmanuel Dreyfus
http://hcpnet.free.fr/pubz
manu%netbsd.org@localhost


Home | Main Index | Thread Index | Old Index