diff options
| author | Julian Elischer <julian@FreeBSD.org> | 1995-12-13 15:13:57 +0000 |
|---|---|---|
| committer | Julian Elischer <julian@FreeBSD.org> | 1995-12-13 15:13:57 +0000 |
| commit | 6ba9ebce283ead4333eec1c2831e3ca1ed4b57cc (patch) | |
| tree | f0ebb5173fc54865e90ae9881089258ea9c50611 /sys/kern/kern_physio.c | |
| parent | 8300a61f5aa81dd76b22b5a500c91e0411a060fc (diff) | |
Notes
Diffstat (limited to 'sys/kern/kern_physio.c')
| -rw-r--r-- | sys/kern/kern_physio.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/kern_physio.c b/sys/kern/kern_physio.c index 36f1c14033dd..7f8324b36db8 100644 --- a/sys/kern/kern_physio.c +++ b/sys/kern/kern_physio.c @@ -16,7 +16,7 @@ * 4. Modifications may be freely made to this file if the above conditions * are met. * - * $Id: kern_physio.c,v 1.14 1995/12/02 18:58:48 bde Exp $ + * $Id: kern_physio.c,v 1.15 1995/12/07 12:46:46 davidg Exp $ */ #include <sys/param.h> @@ -174,14 +174,14 @@ minphys(struct buf *bp) int rawread(dev_t dev, struct uio *uio, int ioflag) { - return (physio(cdevsw[major(dev)].d_strategy, (struct buf *)NULL, + return (physio(cdevsw[major(dev)]->d_strategy, (struct buf *)NULL, dev, 1, minphys, uio)); } int rawwrite(dev_t dev, struct uio *uio, int ioflag) { - return (physio(cdevsw[major(dev)].d_strategy, (struct buf *)NULL, + return (physio(cdevsw[major(dev)]->d_strategy, (struct buf *)NULL, dev, 0, minphys, uio)); } |
