Source-Changes-HG archive

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

[src/netbsd-1-6]: src/sys/ufs/ffs Pull up revision 1.52 (requested by nakayam...



details:   https://anonhg.NetBSD.org/src/rev/1636f8ceca40
branches:  netbsd-1-6
changeset: 530438:1636f8ceca40
user:      grant <grant%NetBSD.org@localhost>
date:      Tue Jun 24 09:44:19 2003 +0000

description:
Pull up revision 1.52 (requested by nakayama in ticket #1333):

Move a brace that is in the wrong position when changes from FreeBSD
were added in rev 1.51.  This may fix the "N lost blocks" problem some
people have noticed.
Reviewed by fvdl.

diffstat:

 sys/ufs/ffs/ffs_inode.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (29 lines):

diff -r 593df915c657 -r 1636f8ceca40 sys/ufs/ffs/ffs_inode.c
--- a/sys/ufs/ffs/ffs_inode.c   Tue Jun 24 09:42:21 2003 +0000
+++ b/sys/ufs/ffs/ffs_inode.c   Tue Jun 24 09:44:19 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ffs_inode.c,v 1.51 2001/12/18 10:57:21 fvdl Exp $      */
+/*     $NetBSD: ffs_inode.c,v 1.51.10.1 2003/06/24 09:44:19 grant Exp $        */
 
 /*
  * Copyright (c) 1982, 1986, 1989, 1993
@@ -36,7 +36,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ffs_inode.c,v 1.51 2001/12/18 10:57:21 fvdl Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ffs_inode.c,v 1.51.10.1 2003/06/24 09:44:19 grant Exp $");
 
 #if defined(_KERNEL_OPT)
 #include "opt_ffs.h"
@@ -299,9 +299,9 @@
                            0, 0, ap->a_p)) != 0) {
                                lockmgr(&gp->g_glock, LK_RELEASE, NULL);
                                return (error);
+                       }
                        if (oip->i_flag & IN_SPACECOUNTED)
                                fs->fs_pendingblocks -= oip->i_ffs_blocks;
-                       }
                } else {
                        uvm_vnp_setsize(ovp, length);
 #ifdef QUOTA



Home | Main Index | Thread Index | Old Index