blk_vnodeops => spec_vnodeops
authorKirk McKusick <mckusick@ucbvax.Berkeley.EDU>
Mon, 30 Oct 1989 16:07:53 +0000 (08:07 -0800)
committerKirk McKusick <mckusick@ucbvax.Berkeley.EDU>
Mon, 30 Oct 1989 16:07:53 +0000 (08:07 -0800)
SCCS-vsn: sys/kern/vfs_subr.c 7.10

usr/src/sys/kern/vfs_subr.c

index 7b5b685..4c4f202 100644 (file)
@@ -14,7 +14,7 @@
  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  *
  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  *
- *     @(#)vfs_subr.c  7.9 (Berkeley) %G%
+ *     @(#)vfs_subr.c  7.10 (Berkeley) %G%
  */
 
 /*
  */
 
 /*
@@ -168,7 +168,7 @@ ndrele(ndp)
  * Routines having to do with the management of the vnode table.
  */
 struct vnode *vfreeh, **vfreet;
  * Routines having to do with the management of the vnode table.
  */
 struct vnode *vfreeh, **vfreet;
-extern struct vnodeops dead_vnodeops, blk_vnodeops;
+extern struct vnodeops dead_vnodeops, spec_vnodeops;
 struct speclist *speclisth;
 struct speclist {
        struct speclist *sl_next;
 struct speclist *speclisth;
 struct speclist {
        struct speclist *sl_next;
@@ -302,7 +302,7 @@ bdevvp(dev, vpp)
        struct vnode *nvp;
        int error;
 
        struct vnode *nvp;
        int error;
 
-       error = getnewvnode(VT_NON, (struct mount *)0, &blk_vnodeops, &nvp);
+       error = getnewvnode(VT_NON, (struct mount *)0, &spec_vnodeops, &nvp);
        if (error) {
                *vpp = 0;
                return (error);
        if (error) {
                *vpp = 0;
                return (error);