summaryrefslogtreecommitdiffstats
path: root/ipc
diff options
context:
space:
mode:
authorJesper Juhl <jj@chaosbits.net>2010-12-25 19:57:41 +0100
committerIngo Molnar <mingo@elte.hu>2010-12-27 14:33:30 +0100
commit5cdd2de0a76d0ac47f107c8a7b32d75d25768dc1 (patch)
tree34b4834f0a377f571b050fd13abb4bc8a8da3821 /ipc
parenteda4b716ea1f2a647a39cebae66b3fae4c4b80e4 (diff)
downloadop-kernel-dev-5cdd2de0a76d0ac47f107c8a7b32d75d25768dc1.zip
op-kernel-dev-5cdd2de0a76d0ac47f107c8a7b32d75d25768dc1.tar.gz
x86/microcode: Fix double vfree() and remove redundant pointer checks before vfree()
In arch/x86/kernel/microcode_intel.c::generic_load_microcode() we have this: while (leftover) { ... if (get_ucode_data(mc, ucode_ptr, mc_size) || microcode_sanity_check(mc) < 0) { vfree(mc); break; } ... } if (mc) vfree(mc); This will cause a double free of 'mc'. This patch fixes that by just removing the vfree() call in the loop since 'mc' will be freed nicely just after we break out of the loop. There's also a second change in the patch. I noticed a lot of checks for pointers being NULL before passing them to vfree(). That's completely redundant since vfree() deals gracefully with being passed a NULL pointer. Removing the redundant checks yields a nice size decrease for the object file. Size before the patch: text data bss dec hex filename 4578 240 1032 5850 16da arch/x86/kernel/microcode_intel.o Size after the patch: text data bss dec hex filename 4489 240 984 5713 1651 arch/x86/kernel/microcode_intel.o Signed-off-by: Jesper Juhl <jj@chaosbits.net> Acked-by: Tigran Aivazian <tigran@aivazian.fsnet.co.uk> Cc: Shaohua Li <shaohua.li@intel.com> LKML-Reference: <alpine.LNX.2.00.1012251946100.10759@swampdragon.chaosbits.net> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'ipc')
0 files changed, 0 insertions, 0 deletions
OpenPOWER on IntegriCloud