diff options
author | kan <kan@FreeBSD.org> | 2004-01-19 20:03:43 +0000 |
---|---|---|
committer | kan <kan@FreeBSD.org> | 2004-01-19 20:03:43 +0000 |
commit | 1968ea331b9a0e1777a5f2629482c3e5ff851dc8 (patch) | |
tree | df1cc5e709fbf50876692768b8efd022441ed7d8 /sys/ufs | |
parent | acff10ceaccffd3e88bbb7bd07150b994577dccb (diff) | |
download | FreeBSD-src-1968ea331b9a0e1777a5f2629482c3e5ff851dc8.zip FreeBSD-src-1968ea331b9a0e1777a5f2629482c3e5ff851dc8.tar.gz |
Spell magic '16' number as IO_SEQSHIFT.
Diffstat (limited to 'sys/ufs')
-rw-r--r-- | sys/ufs/ffs/ffs_vnops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ufs/ffs/ffs_vnops.c b/sys/ufs/ffs/ffs_vnops.c index 061ebc1..8ac3b91 100644 --- a/sys/ufs/ffs/ffs_vnops.c +++ b/sys/ufs/ffs/ffs_vnops.c @@ -373,7 +373,7 @@ ffs_read(ap) GIANT_REQUIRED; - seqcount = ap->a_ioflag >> 16; + seqcount = ap->a_ioflag >> IO_SEQSHIFT; ip = VTOI(vp); #ifdef DIAGNOSTIC @@ -603,7 +603,7 @@ ffs_write(ap) GIANT_REQUIRED; extended = 0; - seqcount = ap->a_ioflag >> 16; + seqcount = ap->a_ioflag >> IO_SEQSHIFT; ip = VTOI(vp); object = vp->v_object; |