On Wed 23-01-19 10:48:58, Amir Goldstein wrote: > In his session about "reflink" in LSF/MM 2016 [1], Darrick Wong brought > up the subject of sharing pages between cloned files and the general vibe > in room was that it could be done. > > In his talk about XFS subvolumes and snapshots [2], Dave Chinner said > that Matthew Willcox was "working on that problem". > > I have started working on a new overlayfs address space implementation > that could also benefit from being able to share pages even for filesystems > that do not support clones (for copy up anticipation state). > > To simplify the problem, we can start with sharing only uptodate clean > pages that map the same offset in respected files. While the same offset > requirement somewhat limits the use cases that benefit from shared file > pages, there is still a vast majority of use cases (i.e. clone full > image), where sharing pages of similar offset will bring a lot of > benefit. > > At first glance, this requires dropping the assumption that a for an > uptodate clean page, vmf->vma->vm_file->f_inode == page->mapping->host. > Is there really such an assumption in common vfs/mm code? and what will > it take to drop it? There definitely is such assumption. Take for example page reclaim as one such place that will be non-trivial to deal with. You need to remove the page from page cache of all inodes that contain it without having any file context whatsoever. So you will need to create some way for this page->page caches mapping to happen. Jerome in his talk at LSF/MM last year [1] actually nicely summarized what it would take to get rid of page->mapping dereferences. He even had some preliminary patches. To sum it up, it's a lot of intrusive work but in principle it is possible. [1] https://lwn.net/Articles/752564/ Honza -- Jan Kara <jack@xxxxxxxx> SUSE Labs, CR