svn commit: r281134 - stable/10/usr.sbin/bhyve

2015-04-05 Thread Neel Natu
Author: neel
Date: Mon Apr  6 03:16:20 2015
New Revision: 281134
URL: https://svnweb.freebsd.org/changeset/base/281134

Log:
  MFC r272481.
  Add new fields in the FADT, required by IASL 20140926-64.

Modified:
  stable/10/usr.sbin/bhyve/acpi.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/usr.sbin/bhyve/acpi.c
==
--- stable/10/usr.sbin/bhyve/acpi.c Mon Apr  6 03:02:20 2015
(r281133)
+++ stable/10/usr.sbin/bhyve/acpi.c Mon Apr  6 03:16:20 2015
(r281134)
@@ -430,7 +430,10 @@ basl_fwrite_fadt(FILE *fp)
EFPRINTF(fp, \n);
 
EFPRINTF(fp, [0001]\t\tValue to cause reset : 06\n);
-   EFPRINTF(fp, [0003]\t\tReserved : 00\n);
+   EFPRINTF(fp, [0002]\t\tARM Flags (decoded below): \n);
+   EFPRINTF(fp, \t\t\tPSCI Compliant : 0\n);
+   EFPRINTF(fp, \t\t\tMust use HVC for PSCI : 0\n);
+   EFPRINTF(fp, [0001]\t\tFADT Minor Revision : 01\n);
EFPRINTF(fp, [0008]\t\tFACS Address : %08X\n,
basl_acpi_base + FACS_OFFSET);
EFPRINTF(fp, [0008]\t\tDSDT Address : %08X\n,
___
svn-src-stable-10@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-stable-10
To unsubscribe, send any mail to svn-src-stable-10-unsubscr...@freebsd.org


svn commit: r281104 - stable/10/sys/cddl/contrib/opensolaris/uts/common/fs/zfs

2015-04-05 Thread Alexander Motin
Author: mav
Date: Sun Apr  5 06:53:29 2015
New Revision: 281104
URL: https://svnweb.freebsd.org/changeset/base/281104

Log:
  MFC r280822: Some cosmetic polishing.  No functional change.

Modified:
  stable/10/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c
==
--- stable/10/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c  Sun Apr 
 5 05:18:14 2015(r281103)
+++ stable/10/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c  Sun Apr 
 5 06:53:29 2015(r281104)
@@ -4152,10 +4152,10 @@ arc_init(void)
 #endif
 #endif /* sun */
/* set min cache to 1/32 of all memory, or 16MB, whichever is more */
-   arc_c_min = MAX(arc_c / 4, 6418);
+   arc_c_min = MAX(arc_c / 4, 16  20);
/* set max to 1/2 of all memory, or all but 1GB, whichever is more */
-   if (arc_c * 8 = 130)
-   arc_c_max = (arc_c * 8) - (130);
+   if (arc_c * 8 = 1  30)
+   arc_c_max = (arc_c * 8) - (1  30);
else
arc_c_max = arc_c_min;
arc_c_max = MAX(arc_c * 5, arc_c_max);
@@ -4165,9 +4165,9 @@ arc_init(void)
 * Allow the tunables to override our calculations if they are
 * reasonable (ie. over 16MB)
 */
-   if (zfs_arc_max  6418  zfs_arc_max  kmem_size())
+   if (zfs_arc_max  16  20  zfs_arc_max  kmem_size())
arc_c_max = zfs_arc_max;
-   if (zfs_arc_min  6418  zfs_arc_min = arc_c_max)
+   if (zfs_arc_min  16  20  zfs_arc_min = arc_c_max)
arc_c_min = zfs_arc_min;
 #endif
 
___
svn-src-stable-10@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-stable-10
To unsubscribe, send any mail to svn-src-stable-10-unsubscr...@freebsd.org


svn commit: r281110 - stable/10

2015-04-05 Thread Dimitry Andric
Author: dim
Date: Sun Apr  5 15:27:56 2015
New Revision: 281110
URL: https://svnweb.freebsd.org/changeset/base/281110

Log:
  Ensure yacc is built during bootstrap-tools for __FreeBSD_version
  1001506 and earlier, since some of the ACPI tools now reach yacc's old
  maximum table limit.  This should fix the Jenkins buildbot, which
  apparently runs 10.1-RELEASE.

Modified:
  stable/10/Makefile.inc1

Modified: stable/10/Makefile.inc1
==
--- stable/10/Makefile.inc1 Sun Apr  5 14:45:52 2015(r281109)
+++ stable/10/Makefile.inc1 Sun Apr  5 15:27:56 2015(r281110)
@@ -1252,7 +1252,7 @@ _sed= usr.bin/sed
 _m4=   usr.bin/m4
 .endif
 
-.if ${BOOTSTRAPPING}  113
+.if ${BOOTSTRAPPING}  1001506
 _yacc= lib/liby \
usr.bin/yacc
 
___
svn-src-stable-10@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-stable-10
To unsubscribe, send any mail to svn-src-stable-10-unsubscr...@freebsd.org