On 12/22/21 8:13 PM, Greg KH wrote:
On Fri, Dec 10, 2021 at 03:36:15PM +0000, David Howells wrote:
gregkh@linuxfoundation.org wrote:
ops->cleanup(netfs_priv, folio_file_mapping(folio));
ops->cleanup(folio_file_mapping(folio), netfs_priv);
Is it page->mapping or page_mapping(page) instead of folio_file_mapping()? If so, you can switch that to the other side instead, e.g.:
ops->cleanup(netfs_priv, page_mapping(page));
ops->cleanup(page_mapping(page), netfs_priv);
David
Ok, can you or someone send me a fixed up patch like this so that I can apply it?
OK I will send a new version later. Thanks David for the suggestion.