Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 250943
b: refs/heads/master
c: f67d9b1
h: refs/heads/master
i:
  250941: e1d3e58
  250939: ffa81fb
  250935: 3df5ef2
  250927: 8d5c52a
  250911: 4520d5b
  250879: 8f06f45
v: v3
  • Loading branch information
Bob Liu authored and Linus Torvalds committed May 25, 2011
1 parent 4ebc2ad commit fe98aae
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 10 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: eb709b0d062efd653a61183af8e27b2711c3cf5c
refs/heads/master: f67d9b1576c1c6e02100f8b27f4e9d66bbeb4d49
23 changes: 14 additions & 9 deletions trunk/mm/nommu.c
Original file line number Diff line number Diff line change
Expand Up @@ -1124,7 +1124,7 @@ static int do_mmap_private(struct vm_area_struct *vma,
unsigned long capabilities)
{
struct page *pages;
unsigned long total, point, n, rlen;
unsigned long total, point, n;
void *base;
int ret, order;

Expand All @@ -1148,13 +1148,12 @@ static int do_mmap_private(struct vm_area_struct *vma,
* make a private copy of the data and map that instead */
}

rlen = PAGE_ALIGN(len);

/* allocate some memory to hold the mapping
* - note that this may not return a page-aligned address if the object
* we're allocating is smaller than a page
*/
order = get_order(rlen);
order = get_order(len);
kdebug("alloc order %d for %lx", order, len);

pages = alloc_pages(GFP_KERNEL, order);
Expand All @@ -1164,7 +1163,7 @@ static int do_mmap_private(struct vm_area_struct *vma,
total = 1 << order;
atomic_long_add(total, &mmap_pages_allocated);

point = rlen >> PAGE_SHIFT;
point = len >> PAGE_SHIFT;

/* we allocated a power-of-2 sized page set, so we may want to trim off
* the excess */
Expand All @@ -1186,7 +1185,7 @@ static int do_mmap_private(struct vm_area_struct *vma,
base = page_address(pages);
region->vm_flags = vma->vm_flags |= VM_MAPPED_COPY;
region->vm_start = (unsigned long) base;
region->vm_end = region->vm_start + rlen;
region->vm_end = region->vm_start + len;
region->vm_top = region->vm_start + (total << PAGE_SHIFT);

vma->vm_start = region->vm_start;
Expand All @@ -1202,15 +1201,15 @@ static int do_mmap_private(struct vm_area_struct *vma,

old_fs = get_fs();
set_fs(KERNEL_DS);
ret = vma->vm_file->f_op->read(vma->vm_file, base, rlen, &fpos);
ret = vma->vm_file->f_op->read(vma->vm_file, base, len, &fpos);
set_fs(old_fs);

if (ret < 0)
goto error_free;

/* clear the last little bit */
if (ret < rlen)
memset(base + ret, 0, rlen - ret);
if (ret < len)
memset(base + ret, 0, len - ret);

}

Expand Down Expand Up @@ -1259,6 +1258,7 @@ unsigned long do_mmap_pgoff(struct file *file,

/* we ignore the address hint */
addr = 0;
len = PAGE_ALIGN(len);

/* we've determined that we can make the mapping, now translate what we
* now know into VMA flags */
Expand Down Expand Up @@ -1635,14 +1635,17 @@ static int shrink_vma(struct mm_struct *mm,
int do_munmap(struct mm_struct *mm, unsigned long start, size_t len)
{
struct vm_area_struct *vma;
unsigned long end = start + len;
unsigned long end;
int ret;

kenter(",%lx,%zx", start, len);

len = PAGE_ALIGN(len);
if (len == 0)
return -EINVAL;

end = start + len;

/* find the first potentially overlapping VMA */
vma = find_vma(mm, start);
if (!vma) {
Expand Down Expand Up @@ -1762,6 +1765,8 @@ unsigned long do_mremap(unsigned long addr,
struct vm_area_struct *vma;

/* insanity checks first */
old_len = PAGE_ALIGN(old_len);
new_len = PAGE_ALIGN(new_len);
if (old_len == 0 || new_len == 0)
return (unsigned long) -EINVAL;

Expand Down

0 comments on commit fe98aae

Please sign in to comment.