vn_bwrite added as new, generic vnode op
authorJohn Heidemann <heideman@ucbvax.Berkeley.EDU>
Sat, 16 May 1992 03:23:02 +0000 (19:23 -0800)
committerJohn Heidemann <heideman@ucbvax.Berkeley.EDU>
Sat, 16 May 1992 03:23:02 +0000 (19:23 -0800)
SCCS-vsn: sys/kern/vfs_bio.c 7.48
SCCS-vsn: sys/kern/vfs_cluster.c 7.48

usr/src/sys/kern/vfs_bio.c
usr/src/sys/kern/vfs_cluster.c

index 597e4e6..6eeea80 100644 (file)
@@ -6,7 +6,7 @@
  * Use and redistribution is subject to the Berkeley Software License
  * Agreement and your Software Agreement with AT&T (Western Electric).
  *
  * Use and redistribution is subject to the Berkeley Software License
  * Agreement and your Software Agreement with AT&T (Western Electric).
  *
- *     @(#)vfs_bio.c   7.47 (Berkeley) %G%
+ *     @(#)vfs_bio.c   7.48 (Berkeley) %G%
  */
 
 #include <sys/param.h>
  */
 
 #include <sys/param.h>
@@ -233,6 +233,14 @@ bwrite(bp)
        return (error);
 }
 
        return (error);
 }
 
+int
+vn_bwrite(ap)
+       struct vop_bwrite_args *ap;
+{
+       return bwrite (ap->a_bp);
+}
+
+
 /*
  * Delayed write.
  *
 /*
  * Delayed write.
  *
index 55557c0..0776954 100644 (file)
@@ -6,7 +6,7 @@
  * Use and redistribution is subject to the Berkeley Software License
  * Agreement and your Software Agreement with AT&T (Western Electric).
  *
  * Use and redistribution is subject to the Berkeley Software License
  * Agreement and your Software Agreement with AT&T (Western Electric).
  *
- *     @(#)vfs_cluster.c       7.47 (Berkeley) %G%
+ *     @(#)vfs_cluster.c       7.48 (Berkeley) %G%
  */
 
 #include <sys/param.h>
  */
 
 #include <sys/param.h>
@@ -233,6 +233,14 @@ bwrite(bp)
        return (error);
 }
 
        return (error);
 }
 
+int
+vn_bwrite(ap)
+       struct vop_bwrite_args *ap;
+{
+       return bwrite (ap->a_bp);
+}
+
+
 /*
  * Delayed write.
  *
 /*
  * Delayed write.
  *