Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/sys/fs/filecorefs/filecore_vnops.c,v rcsdiff: /ftp/cvs/cvsroot/src/sys/fs/filecorefs/filecore_vnops.c,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- src/sys/fs/filecorefs/filecore_vnops.c 2004/01/25 18:06:48 1.7 +++ src/sys/fs/filecorefs/filecore_vnops.c 2004/01/26 10:39:30 1.8 @@ -1,4 +1,4 @@ -/* $NetBSD: filecore_vnops.c,v 1.7 2004/01/25 18:06:48 hannken Exp $ */ +/* $NetBSD: filecore_vnops.c,v 1.8 2004/01/26 10:39:30 hannken Exp $ */ /*- * Copyright (c) 1994 The Regents of the University of California. @@ -66,7 +66,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: filecore_vnops.c,v 1.7 2004/01/25 18:06:48 hannken Exp $"); +__KERNEL_RCSID(0, "$NetBSD: filecore_vnops.c,v 1.8 2004/01/26 10:39:30 hannken Exp $"); #include #include @@ -442,10 +442,11 @@ filecore_strategy(v) void *v; { struct vop_strategy_args /* { + struct vnode *a_vp; struct buf *a_bp; } */ *ap = v; struct buf *bp = ap->a_bp; - struct vnode *vp = bp->b_vp; + struct vnode *vp = ap->a_vp; struct filecore_node *ip; int error;