Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 3 Jul 2013 20:29:15 +0000 (UTC)
From:      Rui Paulo <rpaulo@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r252597 - head/sys/dev/cpuctl
Message-ID:  <201307032029.r63KTFTr004495@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rpaulo
Date: Wed Jul  3 20:29:15 2013
New Revision: 252597
URL: http://svnweb.freebsd.org/changeset/base/252597

Log:
  Increase the microcode max size to 16K to accomodate more recent Intel
  firmware.

Modified:
  head/sys/dev/cpuctl/cpuctl.c

Modified: head/sys/dev/cpuctl/cpuctl.c
==============================================================================
--- head/sys/dev/cpuctl/cpuctl.c	Wed Jul  3 20:28:33 2013	(r252596)
+++ head/sys/dev/cpuctl/cpuctl.c	Wed Jul  3 20:29:15 2013	(r252597)
@@ -63,7 +63,7 @@ static d_ioctl_t cpuctl_ioctl;
 # define	DPRINTF(...)
 #endif
 
-#define	UCODE_SIZE_MAX	(10 * 1024)
+#define	UCODE_SIZE_MAX	(16 * 1024)
 
 static int cpuctl_do_msr(int cpu, cpuctl_msr_args_t *data, u_long cmd,
     struct thread *td);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201307032029.r63KTFTr004495>