diff options
author | phk <phk@FreeBSD.org> | 2003-06-15 18:53:00 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2003-06-15 18:53:00 +0000 |
commit | 24cc9156fe9b5c2e779cc33134e9821873057333 (patch) | |
tree | 68a65c9d3593abaee8f4a7c6f0b683e5d30c43fe /sys/fs/nwfs | |
parent | 69776c10822e68c24101edbb82aec156257044a9 (diff) | |
download | FreeBSD-src-24cc9156fe9b5c2e779cc33134e9821873057333.zip FreeBSD-src-24cc9156fe9b5c2e779cc33134e9821873057333.tar.gz |
Add the same KASSERT to all VOP_STRATEGY and VOP_SPECSTRATEGY implementations
to check that the buffer points to the correct vnode.
Diffstat (limited to 'sys/fs/nwfs')
-rw-r--r-- | sys/fs/nwfs/nwfs_vnops.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/fs/nwfs/nwfs_vnops.c b/sys/fs/nwfs/nwfs_vnops.c index a026eae..7dcc48a 100644 --- a/sys/fs/nwfs/nwfs_vnops.c +++ b/sys/fs/nwfs/nwfs_vnops.c @@ -796,6 +796,8 @@ static int nwfs_strategy (ap) struct thread *td; int error = 0; + KASSERT(ap->a_vp == ap->a_bp->b_vp, ("%s(%p != %p)", + __func__, ap->a_vp, ap->a_bp->b_vp)); NCPVNDEBUG("\n"); if (bp->b_flags & B_PHYS) panic("nwfs physio"); |