These patches are to support having metadata accounting and dirty handling in a generic way. For dirty metadata ext4 and xfs currently are limited by their journal size, which allows them to handle dirty metadata flushing in a relatively easy way. Btrfs does not have this limiting factor, we can have as much dirty metadata on the system as we have memory, so we have a dummy inode that all of our metadat pages are allocated from so we can call balance_dirty_pages() on it and make sure we don't overwhelm the system with dirty metadata pages. The problem with this is it severely limits our ability to do things like support sub-pagesize blocksizes. Btrfs also supports metadata blocksizes > page size, which makes keeping track of our metadata and it's pages particularly tricky. We have the inode mapping with our pages, and we have another radix tree for our actual metadata buffers. This double accounting leads to some fun shenanigans around reclaim and evicting pages we know we are done using. To solve this we would like to switch to a scheme like xfs has, where we simply have our metadata structures tied into the slab shrinking code, and we just use alloc_page() for our pages, or kmalloc() when we add sub-pagesize blocksizes. In order to do this we need infrastructure in place to make sure we still don't overwhelm the system with dirty metadata pages. Enter these patches. Because metadata is tracked on a non-pagesize amount we need to convert a bunch of our existing counters to bytes. From there I've added various counters for metadata, to keep track of overall metadata bytes, how many are dirty and how many are under writeback. I've added a super operation to handle the dirty writeback, which is going to be handled mostly inside the fs since we will need a little more smarts around what we writeback. The last three patches are just there to show how we use the infrastructure in the first 8 patches. The actuall kill btree_inode patch is pretty big, unfortunately ripping out all of the pagecache based handling and replacing it with the new infrastructure has to be done whole-hog and can't be broken up anymore than it already has been without making it un-bisectable. Thanks, Josef