diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1998-12-24 01:40:28 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1998-12-24 01:40:28 +0000 |
commit | a9c0f0b5a0b43eacde6ad3b9b88c9d62c5fc0470 (patch) | |
tree | f79528a5b74e077fdf3a5acd0fd1e1bb03d33a19 /sys | |
parent | 730db65d187542b571c43d595adad0c378b59df4 (diff) |
in kernfs_statfs set f_flags to 0
Diffstat (limited to 'sys')
-rw-r--r-- | sys/miscfs/kernfs/kernfs_vfsops.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/miscfs/kernfs/kernfs_vfsops.c b/sys/miscfs/kernfs/kernfs_vfsops.c index 639e0059001..584d15dca30 100644 --- a/sys/miscfs/kernfs/kernfs_vfsops.c +++ b/sys/miscfs/kernfs/kernfs_vfsops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kernfs_vfsops.c,v 1.9 1998/02/08 22:41:38 tholo Exp $ */ +/* $OpenBSD: kernfs_vfsops.c,v 1.10 1998/12/24 01:40:27 millert Exp $ */ /* $NetBSD: kernfs_vfsops.c,v 1.26 1996/04/22 01:42:27 christos Exp $ */ /* @@ -247,6 +247,7 @@ kernfs_statfs(mp, sbp, p) #ifdef COMPAT_09 sbp->f_type = 7; #endif + sbp->f_flags = 0; sbp->f_bsize = cnt.v_page_size; sbp->f_iosize = cnt.v_page_size; sbp->f_blocks = physmem; |