Message ID | 20240417160842.76665-6-ryncsn@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | mm/swap: optimize swap cache search space | expand |
On Thu, Apr 18, 2024 at 12:08:39AM +0800, Kairui Song wrote: > +++ b/fs/smb/client/file.c > @@ -4749,7 +4749,7 @@ static int cifs_readpage_worker(struct file *file, struct page *page, > static int cifs_read_folio(struct file *file, struct folio *folio) > { > struct page *page = &folio->page; > - loff_t offset = page_file_offset(page); > + loff_t offset = page_offset(page); loff_t offset = folio_pos(folio);
diff --git a/fs/smb/client/file.c b/fs/smb/client/file.c index 16aadce492b2..73bbd761bf32 100644 --- a/fs/smb/client/file.c +++ b/fs/smb/client/file.c @@ -4749,7 +4749,7 @@ static int cifs_readpage_worker(struct file *file, struct page *page, static int cifs_read_folio(struct file *file, struct folio *folio) { struct page *page = &folio->page; - loff_t offset = page_file_offset(page); + loff_t offset = page_offset(page); int rc = -EACCES; unsigned int xid;