lkml.org 
[lkml]   [2020]   [May]   [21]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH v4 10/36] fs: Make page_mkwrite_check_truncate thp-aware
On Fri, May 22, 2020 at 08:01:39AM +1000, Dave Chinner wrote:
> On Fri, May 15, 2020 at 06:16:30AM -0700, Matthew Wilcox wrote:
> > if (page->mapping != inode->i_mapping)
> > return -EFAULT;
> >
> > /* page is wholly inside EOF */
> > - if (page->index < index)
> > - return PAGE_SIZE;
> > + if (page->index + hpage_nr_pages(page) - 1 < index)
> > + return thp_size(page);
>
> Can we make these interfaces all use the same namespace prefix?
> Here we have a mix of thp and hpage and I have no clue how hpages
> are different to thps. If they refer to the same thing (i.e. huge
> pages) then can we please make the API consistent before splattering
> it all over the filesystem code?

Yes, they're the same thing. I'll rename hpage_nr_pages() to thp_count().

\
 
 \ /
  Last update: 2020-05-22 01:31    [W:0.629 / U:0.872 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site