Deleted Added
full compact
43c43
< * $FreeBSD: head/sys/ufs/ffs/ffs_vnops.c 112181 2003-03-13 07:19:23Z jeff $
---
> * $FreeBSD: head/sys/ufs/ffs/ffs_vnops.c 112694 2003-03-26 23:40:42Z tegge $
78a79
> #include "opt_directio.h"
79a81,83
> #ifdef DIRECTIO
> extern int ffs_rawread(struct vnode *vp, struct uio *uio, int *workdone);
> #endif
351a356,358
> #ifdef DIRECTIO
> if ((ioflag & IO_DIRECT) != 0) {
> int workdone;
352a360,365
> error = ffs_rawread(vp, uio, &workdone);
> if (error != 0 || workdone != 0)
> return error;
> }
> #endif
>