Author: asomers
Date: Tue Jun 25 19:44:22 2019
New Revision: 349391
URL: https://svnweb.freebsd.org/changeset/base/349391

Log:
  fcntl: style changes to r349248
  
  Reported by:  bde
  MFC after:    2 weeks
  MFC-With:     349248
  Sponsored by: The FreeBSD Foundation

Modified:
  head/sys/kern/vfs_vnops.c

Modified: head/sys/kern/vfs_vnops.c
==============================================================================
--- head/sys/kern/vfs_vnops.c   Tue Jun 25 19:36:01 2019        (r349390)
+++ head/sys/kern/vfs_vnops.c   Tue Jun 25 19:44:22 2019        (r349391)
@@ -499,10 +499,8 @@ sequential_heuristic(struct uio *uio, struct file *fp)
                 * closely related to the best I/O size for real disks than
                 * to any block size used by software.
                 */
-               fp->f_seqcount += MIN(IO_SEQMAX,
+               fp->f_seqcount += lmin(IO_SEQMAX,
                    howmany(uio->uio_resid, 16384));
-               if (fp->f_seqcount > IO_SEQMAX)
-                       fp->f_seqcount = IO_SEQMAX;
                return (fp->f_seqcount << IO_SEQSHIFT);
        }
 
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to