Author: royger
Date: Thu Jul 30 15:43:26 2015
New Revision: 286077
URL: https://svnweb.freebsd.org/changeset/base/286077

Log:
  vfs: fill fallout from r286076
  
  This right operator is >= not =>.
  
  Reported by: cem

Modified:
  head/sys/kern/vfs_bio.c

Modified: head/sys/kern/vfs_bio.c
==============================================================================
--- head/sys/kern/vfs_bio.c     Thu Jul 30 15:28:06 2015        (r286076)
+++ head/sys/kern/vfs_bio.c     Thu Jul 30 15:43:26 2015        (r286077)
@@ -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));
 }
 
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "[email protected]"

Reply via email to