On Wed, Oct 11, 2017 at 09:02:38AM -0400, Brian Foster wrote: > On Wed, Oct 11, 2017 at 10:58:58PM +1100, Dave Chinner wrote: > > On Wed, Oct 11, 2017 at 05:02:20AM -0400, Brian Foster wrote: > > > i.e. if xfs_invalidatepage() is trashing the dirty state on the > > buffers, then we should also be trashing the dirty state on the page > > so they are clean and coherent when passed to xfs_vm_releasepage. > > That leaves us with the simple rule in xfs_vm_releasepage(): > > > > Never release a dirty page because they always contain valid > > data that needs to be written back first. > > > > That's what I'm trying to do - move the control decisions to page > > level, rather than having them split and, at times, be incoherent > > at bufferhead level. We're wanting to get rid of bufferheads so we > > should be making decisions in this code based on page state, not > > the bufferhead state... > > > > That seems reasonable to me. I'm not against this patch if it simplifies > our internal logic for dealing with pages, though I'm still kind of > wondering why to not do this by simply clearing the page earlier in > truncate_complete_page(). /broken record We can't change the generic code because of ext3. Yes, it makes no sense that we can't just change the order to skip over dirty pages first when you look at the generic code. But the reality is we will break ext3 if we do that. > That said, I suppose there's an argument to be made to do that locally > and perhaps try to push it up the chain once the approach has some soak > time. That was my argument for a long while, but it's just not feasible until someone fixes ext3. We've been advised, instead, to just fix the filesystem specific callouts to behave correctly. > Could you at least rewrite the commit log to reflect that this is > not a regression and is more of a refactoring/cleanup to effectively > elevate page state over bh state (a code comment to that effect probably > couldn't hurt either)? Thanks. I just went back and re-read the commit message I originally wrote. It talks about being "defensive" and "being able to catch the case where the page is dirty and should not have bufferheads removed from it". There's othing about spurious warnings or regressions in it at all. IOWs, it's already saying "use the page state to determine actions rather than bufferhead state." Not in those exact words, but it's not far off it. I'll rewrite it, but on re-reading the commit message I've now got no idea what the problem was in the first place. :/ Cheers, Dave. -- Dave Chinner david@xxxxxxxxxxxxx -- To unsubscribe from this list: send the line "unsubscribe linux-xfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html