Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 99502
b: refs/heads/master
c: f688726
h: refs/heads/master
v: v3
  • Loading branch information
Andreas Herrmann authored and Ingo Molnar committed Jun 24, 2008
1 parent 1cc6a7f commit 1daaca5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 14 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: 3e9c83b309fd7cbf1d9b801d0d5877c040e30420
refs/heads/master: f6887264deba4cd991f0ca006918dcff4c939021
21 changes: 8 additions & 13 deletions trunk/arch/x86/mm/pat.c
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@ int reserve_memtype(u64 start, u64 end, unsigned long req_type,
{
struct memtype *new, *entry;
unsigned long actual_type;
struct list_head *where;
int err = 0;

BUG_ON(start >= end); /* end is exclusive */
Expand Down Expand Up @@ -251,13 +252,12 @@ int reserve_memtype(u64 start, u64 end, unsigned long req_type,
spin_lock(&memtype_lock);

/* Search for existing mapping that overlaps the current range */
where = NULL;
list_for_each_entry(entry, &memtype_list, nd) {
struct memtype *saved_ptr;

if (entry->start >= end) {
dprintk("New Entry\n");
list_add(&new->nd, entry->nd.prev);
new = NULL;
where = entry->nd.prev;
break;
}

Expand Down Expand Up @@ -295,9 +295,7 @@ int reserve_memtype(u64 start, u64 end, unsigned long req_type,

dprintk("Overlap at 0x%Lx-0x%Lx\n",
saved_ptr->start, saved_ptr->end);
/* No conflict. Go ahead and add this new entry */
list_add(&new->nd, saved_ptr->nd.prev);
new = NULL;
where = saved_ptr->nd.prev;
break;
}

Expand Down Expand Up @@ -335,9 +333,7 @@ int reserve_memtype(u64 start, u64 end, unsigned long req_type,

dprintk("Overlap at 0x%Lx-0x%Lx\n",
saved_ptr->start, saved_ptr->end);
/* No conflict. Go ahead and add this new entry */
list_add(&new->nd, &saved_ptr->nd);
new = NULL;
where = &saved_ptr->nd;
break;
}
}
Expand All @@ -354,11 +350,10 @@ int reserve_memtype(u64 start, u64 end, unsigned long req_type,
return err;
}

if (new) {
/* No conflict. Not yet added to the list. Add to the tail */
if (where)
list_add(&new->nd, where);
else
list_add_tail(&new->nd, &memtype_list);
dprintk("New Entry\n");
}

spin_unlock(&memtype_lock);

Expand Down

0 comments on commit 1daaca5

Please sign in to comment.