lfs_ubwrite change to for new vnode interface
authorJohn Heidemann <heideman@ucbvax.Berkeley.EDU>
Fri, 15 May 1992 05:05:05 +0000 (21:05 -0800)
committerJohn Heidemann <heideman@ucbvax.Berkeley.EDU>
Fri, 15 May 1992 05:05:05 +0000 (21:05 -0800)
SCCS-vsn: sys/ufs/lfs/lfs.h 7.13

usr/src/sys/ufs/lfs/lfs.h

index 89cdd1a..6937ff2 100644 (file)
@@ -224,8 +224,9 @@ struct segsum {
 
 /* Write a block and update the inode change times. */
 #define        LFS_UBWRITE(BP) { \
 
 /* Write a block and update the inode change times. */
 #define        LFS_UBWRITE(BP) { \
+       USES_VOP_BWRITE; \
        VTOI((BP)->b_vp)->i_flag |= ICHG | IUPD; \
        VTOI((BP)->b_vp)->i_flag |= ICHG | IUPD; \
-       lfs_bwrite(BP); \
+       VOP_BWRITE(BP); \
 }
 
 /*
 }
 
 /*