Author: ivoras
Date: Tue Jul 20 13:59:51 2010
New Revision: 210295
URL: http://svn.freebsd.org/changeset/base/210295

Log:
  Fix expression style.
  
  Prodded by: jhb

Modified:
  head/sys/kern/vfs_bio.c

Modified: head/sys/kern/vfs_bio.c
==============================================================================
--- head/sys/kern/vfs_bio.c     Tue Jul 20 12:36:36 2010        (r210294)
+++ head/sys/kern/vfs_bio.c     Tue Jul 20 13:59:51 2010        (r210295)
@@ -621,9 +621,8 @@ bufinit(void)
        lobufspace = hibufspace - MAXBSIZE;
 
        lorunningspace = 512 * 1024;
-       hirunningspace = lmin(roundup(hibufspace/64, MAXBSIZE), 16*1024*1024);
-       if (hirunningspace < 1024 * 1024)
-               hirunningspace = 1024 * 1024;
+       hirunningspace = lmax(lmin(roundup(hibufspace / 64, MAXBSIZE),
+           16 * 1024 * 1024), 1024 * 1024);
 
 /*
  * Limit the amount of malloc memory since it is wired permanently into
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to