diff options
author | rpaulo <rpaulo@FreeBSD.org> | 2013-07-03 20:29:15 +0000 |
---|---|---|
committer | rpaulo <rpaulo@FreeBSD.org> | 2013-07-03 20:29:15 +0000 |
commit | 328ede385d1197187e0d5b813d421943c826958c (patch) | |
tree | 5458ace5703bac73c3d9d27d67d05e5fbb949073 | |
parent | 09921b0dcb0a6bc73dee2ebaa40efb100a9ba308 (diff) | |
download | FreeBSD-src-328ede385d1197187e0d5b813d421943c826958c.zip FreeBSD-src-328ede385d1197187e0d5b813d421943c826958c.tar.gz |
Increase the microcode max size to 16K to accomodate more recent Intel
firmware.
-rw-r--r-- | sys/dev/cpuctl/cpuctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/cpuctl/cpuctl.c b/sys/dev/cpuctl/cpuctl.c index c5f27ac..742ef0db 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 (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); |