4 * Copyright (C) 2002, Linus Torvalds
6 * 11Jan2003 akpm@digeo.com
10 #include <linux/kernel.h>
11 #include <linux/file.h>
14 #include <linux/pagemap.h>
15 #include <linux/backing-dev.h>
16 #include <linux/pagevec.h>
17 #include <linux/fadvise.h>
18 #include <linux/syscalls.h>
20 #include <asm/unistd.h>
23 * POSIX_FADV_WILLNEED could set PG_Referenced, and POSIX_FADV_NOREUSE could
24 * deactivate the pages and clear PG_Referenced.
26 asmlinkage
long sys_fadvise64_64(int fd
, loff_t offset
, loff_t len
, int advice
)
28 struct file
*file
= fget(fd
);
29 struct address_space
*mapping
;
30 struct backing_dev_info
*bdi
;
34 unsigned long nrpages
;
40 mapping
= file
->f_mapping
;
41 if (!mapping
|| len
< 0) {
46 if (mapping
->a_ops
->get_xip_page
)
47 /* no bad return value, but ignore advice */
50 /* Careful about overflows. Len == 0 means "as much as possible" */
51 endbyte
= offset
+ len
;
52 if (!len
|| endbyte
< len
)
55 bdi
= mapping
->backing_dev_info
;
58 case POSIX_FADV_NORMAL
:
59 file
->f_ra
.ra_pages
= bdi
->ra_pages
;
61 case POSIX_FADV_RANDOM
:
62 file
->f_ra
.ra_pages
= 0;
64 case POSIX_FADV_SEQUENTIAL
:
65 file
->f_ra
.ra_pages
= bdi
->ra_pages
* 2;
67 case POSIX_FADV_WILLNEED
:
68 case POSIX_FADV_NOREUSE
:
69 if (!mapping
->a_ops
->readpage
) {
74 /* First and last PARTIAL page! */
75 start_index
= offset
>> PAGE_CACHE_SHIFT
;
76 end_index
= (endbyte
-1) >> PAGE_CACHE_SHIFT
;
78 /* Careful about overflow on the "+1" */
79 nrpages
= end_index
- start_index
+ 1;
83 ret
= force_page_cache_readahead(mapping
, file
,
85 max_sane_readahead(nrpages
));
89 case POSIX_FADV_DONTNEED
:
90 if (!bdi_write_congested(mapping
->backing_dev_info
))
91 filemap_flush(mapping
);
93 /* First and last FULL page! */
94 start_index
= (offset
+ (PAGE_CACHE_SIZE
-1)) >> PAGE_CACHE_SHIFT
;
95 end_index
= (endbyte
>> PAGE_CACHE_SHIFT
);
97 if (end_index
> start_index
)
98 invalidate_mapping_pages(mapping
, start_index
, end_index
-1);
108 #ifdef __ARCH_WANT_SYS_FADVISE64
110 asmlinkage
long sys_fadvise64(int fd
, loff_t offset
, size_t len
, int advice
)
112 return sys_fadvise64_64(fd
, offset
, len
, advice
);