svn commit: r252597 - head/sys/dev/cpuctl

Rui Paulo rpaulo at FreeBSD.org
Wed Jul 3 20:29:16 UTC 2013


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);


More information about the svn-src-all mailing list