On Thu, Jul 24, 2014 at 10:22:50AM -0400, Brian Foster wrote: > Hi all, > > This is a first pass at sparse inode chunk support for XFS. Some > background on this work is available here: > > http://oss.sgi.com/archives/xfs/2013-08/msg00346.html > > The basic idea is to allow the partial allocation of inode chunks into > fragmented regions of free space. This is accomplished through addition > of a holemask field into the inobt record that defines what portion(s) > of an inode chunk are invalid (i.e., holes in the chunk). This work is > not quite complete, but is at a point where I'd like to start getting > feedback on the design and what direction to take for some of the known > gaps. > > The basic breakdown of functionality in this set is as follows: > > - Patches 1-2 - A couple generic cleanups that are dependencies for later > patches in the series. > - Patches 3-5 - Basic data structure update, feature bit and minor > helper introduction. > - Patches 6-7 - Update v5 icreate logging and recovery to handle sparse > inode records. > - Patches 8-13 - Allocation support for sparse inode records. Physical > chunk allocation and individual inode allocation. > - Patches 14-16 - Deallocation support for sparse inode chunks. Physical > chunk deallocation, individual inode free and cluster free. > - Patch 17 - Fixes for bulkstat/inumbers. > - Patch 18 - Activate support for sparse chunk allocation and > processing. > > This work is lightly tested for regression (some xfstests failures due > to repair) and basic functionality. I have a new xfstests test I'll > forward along for demonstration purposes. > > Some notes on gaps in the design: > > - Sparse inode chunk allocation granularity: > > The current minimum sparse chunk allocation granularity is the cluster > size. Looking at the patchset (I got to patch 5 that first uses this), this is problematic. the cluster size is currently a kernel implementation detail, and not something defined by the on-disk format. We can change the cluster size in the kernel and not affect the format on disk. Making the cluster size a part of the disk format by defining it to be the resolution of sparse inode chunks changes that - it's now a part of the on-disk inode format, and that greatly limits what we can do with it. > My initial attempts at this work tried to redefine to the minimum > chunk length based on the holemask granularity (a la the stale macro I > seemingly left in this series ;), but this involves tweaking the > codepaths that use the cluster size (i.e., imap) which proved rather > hairy. This is where we need to head towards, though. The cluster size is currently the unit of inode IO, so that needs to be influenced by the sparse inode chunk granularity. Yes, we can define the inode chunk granularity to be the same as the cluster size, but that simply means we need to configure the cluster size appropriately at mount. It doesn't mean we need to change what cluster size means or it's implementation.... > This also means we need a solution where an imap can change if an > inode was initially mapped as a sparse chunk and said chunk is > subsequently made full. E.g., we'd perhaps need to invalidate the inode > buffers for sparse chunks at the time where they are made full. Given > that, I landed on using the cluster size and leaving those codepaths as > is for the time being. Again, that's kernel inode buffer cache implementaiton details, not something that matters for the on-disk format. So really these need to be separated. Probably means we need a "sparse inode allocation alignment" field in the superblock to define this. Having the kernel reject sparse alignments it can't support from the initial implementation means we can improve the kernel implementation over time and (eventually) support sub-cluster sized sparse inode allocation. i.e. initial implementation only supports sparse alignment == cluster size, and rejects everything else.... > There is a tradeoff here for v5 superblocks because we've recently made > a change to scale the cluster size based on the factor increase in the > inode size from the default (see xfsprogs commit 7b5f9801). This means > that effectiveness of sparse chunks is tied to whether the level of free > space fragmentation matches the cluster size. By that I mean effectivess > is good (near 100% utilization possible) if free space fragmentation > leaves free extents around that at least match the cluster size. If > fragmentation is worse than the cluster size, effectiveness is reduced. > This can also be demonstrated with the forthcoming xfstests test. Exactly. We don't need to solve every problem with the initial implementation - we can iteratively improve the code because once the fields are one disk we only need to change the kernel implemenation to support finer grained sparse allocation to solve this allocation chunk < cluster size problem.... > - On-disk lifecycle of the sparse inode chunks feature bit: > > We set an incompatible feature bit once a sparse inode chunk is > allocated because older revisions of code will interpret the non-zero > holemask bits in the higher order bytes of the record freecount. The > feature bit must be removed once all sparse inode chunks are eliminated > one way or another. This series does not currently remove the feature > bit once set simply because I hadn't thought through the mechanism quite > yet. For the next version, I'm thinking about adding an inobt walk > mechanism that can be conditionally invoked (i.e., feature bit is > currently set and a sparse inode chunk has been eliminated) either via > workqueue on an interval or during unmount if necessary. Thoughts or > alternative suggestions on that appreciated. I wouldn't bother. Let xfs_repair determine if the bit needs to be set or not when it does it's final superblock write after it has scanned and repaired the fs. I'm even in two minds of whether we want the sb bit added dynamically, because it means the same upgrade/downdgrade cycle can have different results simply due to filesystem freespace fragmentation patterns... Perhaps an xfs-admin command to turn the feature on dynamicallyi for existing filesystems, kind of like what we did with lazy superblock counters when they were introduced? Cheers, Dave. -- Dave Chinner david@xxxxxxxxxxxxx _______________________________________________ xfs mailing list xfs@xxxxxxxxxxx http://oss.sgi.com/mailman/listinfo/xfs