summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkib <kib@FreeBSD.org>2014-12-27 00:44:33 +0000
committerkib <kib@FreeBSD.org>2014-12-27 00:44:33 +0000
commite8e2e634b5ab8e91afb9b7f93c7f0ff096369abe (patch)
tree57dc7c4bacee20ca840d4cb166d423d5208c1c71
parentb2f7ab039b1fa2b8d23318b14fd37933528e0824 (diff)
downloadFreeBSD-src-e8e2e634b5ab8e91afb9b7f93c7f0ff096369abe.zip
FreeBSD-src-e8e2e634b5ab8e91afb9b7f93c7f0ff096369abe.tar.gz
MFC r275960:
Increase allowed size of the microcode blob to 32KB.
-rw-r--r--sys/dev/cpuctl/cpuctl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/cpuctl/cpuctl.c b/sys/dev/cpuctl/cpuctl.c
index 96ceb0d..ec41a2e 100644
--- a/sys/dev/cpuctl/cpuctl.c
+++ b/sys/dev/cpuctl/cpuctl.c
@@ -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);
OpenPOWER on IntegriCloud