summaryrefslogtreecommitdiffstats
path: root/mm/filemap.c
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2013-07-08 19:00:18 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2013-07-09 13:33:23 -0400
commit64363aad5ff1b878230e91223038c26a2205bff3 (patch)
tree8f8bb770645e634d55fc390ec4428b1818eccd10 /mm/filemap.c
parent73b44ff43c4b3cf517826da03c51948593f88753 (diff)
mm: remove unused VM_<READfoo> macros and expand other in-place
These VM_<READfoo> macros aren't used very often and three of them aren't used at all. Expand the ones that are used in-place, and remove all the now unused #define VM_<foo> macros. VM_READHINTMASK, VM_NormalReadHint and VM_ClearReadHint were added just before 2.4 and appears have never been used. Signed-off-by: Joe Perches <joe@perches.com> Acked-by: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/filemap.c')
-rw-r--r--mm/filemap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mm/filemap.c b/mm/filemap.c
index 7905fe721aa8..4b51ac1acae7 100644
--- a/mm/filemap.c
+++ b/mm/filemap.c
@@ -1539,12 +1539,12 @@ static void do_sync_mmap_readahead(struct vm_area_struct *vma,
1539 struct address_space *mapping = file->f_mapping; 1539 struct address_space *mapping = file->f_mapping;
1540 1540
1541 /* If we don't want any read-ahead, don't bother */ 1541 /* If we don't want any read-ahead, don't bother */
1542 if (VM_RandomReadHint(vma)) 1542 if (vma->vm_flags & VM_RAND_READ)
1543 return; 1543 return;
1544 if (!ra->ra_pages) 1544 if (!ra->ra_pages)
1545 return; 1545 return;
1546 1546
1547 if (VM_SequentialReadHint(vma)) { 1547 if (vma->vm_flags & VM_SEQ_READ) {
1548 page_cache_sync_readahead(mapping, ra, file, offset, 1548 page_cache_sync_readahead(mapping, ra, file, offset,
1549 ra->ra_pages); 1549 ra->ra_pages);
1550 return; 1550 return;
@@ -1584,7 +1584,7 @@ static void do_async_mmap_readahead(struct vm_area_struct *vma,
1584 struct address_space *mapping = file->f_mapping; 1584 struct address_space *mapping = file->f_mapping;
1585 1585
1586 /* If we don't want any read-ahead, don't bother */ 1586 /* If we don't want any read-ahead, don't bother */
1587 if (VM_RandomReadHint(vma)) 1587 if (vma->vm_flags & VM_RAND_READ)
1588 return; 1588 return;
1589 if (ra->mmap_miss > 0) 1589 if (ra->mmap_miss > 0)
1590 ra->mmap_miss--; 1590 ra->mmap_miss--;