diff options
| author | Steve French <sfrench@us.ibm.com> | 2005-12-31 13:27:22 -0500 |
|---|---|---|
| committer | Steve French <sfrench@us.ibm.com> | 2005-12-31 13:27:22 -0500 |
| commit | eea60caef610c7a6c58c0de9c80ae1e438e01301 (patch) | |
| tree | 25e19289bba003fe085e589430d0d981fd6b73a7 /mm/mremap.c | |
| parent | da8543ef125afc7bba4da526b61a1ae07dc25109 (diff) | |
| parent | 82c9df820112c6286a8e8fbe482e94b65b49062c (diff) | |
Merge with /pub/scm/linux/kernel/git/torvalds/linux-2.6.git
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'mm/mremap.c')
| -rw-r--r-- | mm/mremap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/mremap.c b/mm/mremap.c index b535438c363c..ddaeee9a0b69 100644 --- a/mm/mremap.c +++ b/mm/mremap.c | |||
| @@ -323,7 +323,7 @@ unsigned long do_mremap(unsigned long addr, | |||
| 323 | /* We can't remap across vm area boundaries */ | 323 | /* We can't remap across vm area boundaries */ |
| 324 | if (old_len > vma->vm_end - addr) | 324 | if (old_len > vma->vm_end - addr) |
| 325 | goto out; | 325 | goto out; |
| 326 | if (vma->vm_flags & VM_DONTEXPAND) { | 326 | if (vma->vm_flags & (VM_DONTEXPAND | VM_PFNMAP)) { |
| 327 | if (new_len > old_len) | 327 | if (new_len > old_len) |
| 328 | goto out; | 328 | goto out; |
| 329 | } | 329 | } |
