From e8e2e634b5ab8e91afb9b7f93c7f0ff096369abe Mon Sep 17 00:00:00 2001 From: kib Date: Sat, 27 Dec 2014 00:44:33 +0000 Subject: MFC r275960: Increase allowed size of the microcode blob to 32KB. --- sys/dev/cpuctl/cpuctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- cgit v1.1