Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bd131781 authored by Ingo Molnar's avatar Ingo Molnar
Browse files

Merge tag 'microcode_fix_3.7' of...

Merge tag 'microcode_fix_3.7' of git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp

 into x86/microcode

Pull microcode changes from Borislav Petkov:

 "A small list usage correction from Dan Carpenter."

Signed-off-by: default avatarIngo Molnar <mingo@kernel.org>
parents 2efb05e8 2d297480
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -150,9 +150,9 @@ static void update_cache(struct ucode_patch *new_patch)

static void free_cache(void)
{
	struct ucode_patch *p;
	struct ucode_patch *p, *tmp;

	list_for_each_entry_reverse(p, &pcache, plist) {
	list_for_each_entry_safe(p, tmp, &pcache, plist) {
		__list_del(p->plist.prev, p->plist.next);
		kfree(p->data);
		kfree(p);