Skip to content

Commit

Permalink
Merge tag 'microcode_fix_3.7' of git://git.kernel.org/pub/scm/linux/k…
Browse files Browse the repository at this point in the history
…ernel/git/bp/bp into x86/microcode

Pull microcode changes from Borislav Petkov:

 "A small list usage correction from Dan Carpenter."

Signed-off-by: Ingo Molnar <mingo@kernel.org>
  • Loading branch information
Ingo Molnar committed Sep 20, 2012
2 parents 2efb05e + 2d29748 commit bd13178
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/x86/kernel/microcode_amd.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit bd13178

Please sign in to comment.