Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 99503
b: refs/heads/master
c: 64fe44c
h: refs/heads/master
i:
  99501: 1cc6a7f
  99499: ebf4a29
  99495: e1b23c9
  99487: 4d37fdc
v: v3
  • Loading branch information
Andreas Herrmann authored and Ingo Molnar committed Jun 24, 2008
1 parent 1daaca5 commit 8888e1e
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 64 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: f6887264deba4cd991f0ca006918dcff4c939021
refs/heads/master: 64fe44c38bbdfab4fe052029058ce5fe9804de68
96 changes: 33 additions & 63 deletions trunk/arch/x86/mm/pat.c
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,33 @@ static unsigned long pat_x_mtrr_type(u64 start, u64 end, unsigned long req_type)
return req_type;
}

static int chk_conflict(struct memtype *new, struct memtype *entry,
unsigned long *type)
{
if (new->type != entry->type) {
if (type) {
new->type = entry->type;
*type = entry->type;
} else
goto conflict;
}

/* check overlaps with more than one entry in the list */
list_for_each_entry_continue(entry, &memtype_list, nd) {
if (new->end <= entry->start)
break;
else if (new->type != entry->type)
goto conflict;
}
return 0;

conflict:
printk(KERN_INFO "%s:%d conflicting memory types "
"%Lx-%Lx %s<->%s\n", current->comm, current->pid, new->start,
new->end, cattr_name(new->type), cattr_name(entry->type));
return -EBUSY;
}

/*
* req_type typically has one of the:
* - _PAGE_CACHE_WB
Expand Down Expand Up @@ -254,94 +281,37 @@ int reserve_memtype(u64 start, u64 end, unsigned long req_type,
/* 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) {
where = entry->nd.prev;
break;
}

if (start <= entry->start && end >= entry->start) {
if (actual_type != entry->type && new_type) {
actual_type = entry->type;
*new_type = actual_type;
new->type = actual_type;
}

if (actual_type != entry->type) {
err = -EBUSY;
break;
}

saved_ptr = entry;
/*
* Check to see whether the request overlaps more
* than one entry in the list
*/
list_for_each_entry_continue(entry, &memtype_list, nd) {
if (end <= entry->start) {
break;
}

if (actual_type != entry->type) {
err = -EBUSY;
break;
}
}

err = chk_conflict(new, entry, new_type);
if (err) {
break;
}

dprintk("Overlap at 0x%Lx-0x%Lx\n",
saved_ptr->start, saved_ptr->end);
where = saved_ptr->nd.prev;
entry->start, entry->end);
where = entry->nd.prev;
break;
}

if (start < entry->end) {
if (actual_type != entry->type && new_type) {
actual_type = entry->type;
*new_type = actual_type;
new->type = actual_type;
}

if (actual_type != entry->type) {
err = -EBUSY;
break;
}

saved_ptr = entry;
/*
* Check to see whether the request overlaps more
* than one entry in the list
*/
list_for_each_entry_continue(entry, &memtype_list, nd) {
if (end <= entry->start) {
break;
}

if (actual_type != entry->type) {
err = -EBUSY;
break;
}
}

err = chk_conflict(new, entry, new_type);
if (err) {
break;
}

dprintk("Overlap at 0x%Lx-0x%Lx\n",
saved_ptr->start, saved_ptr->end);
where = &saved_ptr->nd;
entry->start, entry->end);
where = &entry->nd;
break;
}
}

if (err) {
printk(KERN_INFO "%s:%d conflicting memory types "
"%Lx-%Lx %s<->%s\n", current->comm, current->pid, start,
end, cattr_name(new->type), cattr_name(entry->type));
printk(KERN_INFO "reserve_memtype failed 0x%Lx-0x%Lx, "
"track %s, req %s\n",
start, end, cattr_name(new->type), cattr_name(req_type));
Expand Down

0 comments on commit 8888e1e

Please sign in to comment.