Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 324044
b: refs/heads/master
c: 2d29748
h: refs/heads/master
v: v3
  • Loading branch information
Dan Carpenter authored and Borislav Petkov committed Sep 19, 2012
1 parent 132c624 commit ba3a244
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 2efb05e8e9fa3510044e007b90263c73b6a83f84
refs/heads/master: 2d297480037e1d9100ca504737820c1bf65db6c0
4 changes: 2 additions & 2 deletions trunk/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 ba3a244

Please sign in to comment.