svn commit: r276271 - stable/10/sys/dev/cpuctl
Konstantin Belousov
kib at FreeBSD.org
Sat Dec 27 00:44:34 UTC 2014
Author: kib
Date: Sat Dec 27 00:44:33 2014
New Revision: 276271
URL: https://svnweb.freebsd.org/changeset/base/276271
Log:
MFC r275960:
Increase allowed size of the microcode blob to 32KB.
Modified:
stable/10/sys/dev/cpuctl/cpuctl.c
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/sys/dev/cpuctl/cpuctl.c
==============================================================================
--- stable/10/sys/dev/cpuctl/cpuctl.c Sat Dec 27 00:01:28 2014 (r276270)
+++ stable/10/sys/dev/cpuctl/cpuctl.c Sat Dec 27 00:44:33 2014 (r276271)
@@ -63,7 +63,7 @@ static d_ioctl_t cpuctl_ioctl;
# define DPRINTF(...)
#endif
-#define UCODE_SIZE_MAX (16 * 1024)
+#define UCODE_SIZE_MAX (32 * 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-stable-10
mailing list