vfs: fill fallout from r286076

This right operator is >= not =>.

Reported by: cem
This commit is contained in:
royger 2015-07-30 15:43:26 +00:00
parent 21ecb47de2
commit f4c52859b8

View File

@ -955,7 +955,7 @@ vfs_buf_check_mapped(struct buf *bp)
("mapped buf: b_kvabase was not updated %p", bp));
KASSERT(bp->b_data != unmapped_buf,
("mapped buf: b_data was not updated %p", bp));
KASSERT(bp->b_data < unmapped_buf || bp->b_data => unmapped_buf +
KASSERT(bp->b_data < unmapped_buf || bp->b_data >= unmapped_buf +
MAXPHYS, ("b_data + b_offset unmapped %p", bp));
}