mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-04-09 06:48:28 +07:00
Use pgoff_t instead of unsigned long
Convert variables containing page indexes to pgoff_t. Signed-off-by: Jan Kara <jack@suse.cz> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
476aed3870
commit
2004dc8eec
@ -1332,7 +1332,7 @@ int filemap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
|
|||||||
struct file_ra_state *ra = &file->f_ra;
|
struct file_ra_state *ra = &file->f_ra;
|
||||||
struct inode *inode = mapping->host;
|
struct inode *inode = mapping->host;
|
||||||
struct page *page;
|
struct page *page;
|
||||||
unsigned long size;
|
pgoff_t size;
|
||||||
int did_readaround = 0;
|
int did_readaround = 0;
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
|
|
||||||
|
@ -56,7 +56,8 @@ do_xip_mapping_read(struct address_space *mapping,
|
|||||||
read_actor_t actor)
|
read_actor_t actor)
|
||||||
{
|
{
|
||||||
struct inode *inode = mapping->host;
|
struct inode *inode = mapping->host;
|
||||||
unsigned long index, end_index, offset;
|
pgoff_t index, end_index;
|
||||||
|
unsigned long offset;
|
||||||
loff_t isize;
|
loff_t isize;
|
||||||
|
|
||||||
BUG_ON(!mapping->a_ops->get_xip_page);
|
BUG_ON(!mapping->a_ops->get_xip_page);
|
||||||
|
Loading…
Reference in New Issue
Block a user