Hi Linus, Please pull the for-linus branch of the btrfs repo: git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git for-linus This is later than I wanted because I got backed up running through btrfs bugs from the Oracle QA teams. But they are all bug fixes that we''ve queued and tested since rc1. Nothing in particular stands out, this just reflects bug fixing and QA done in parallel by all the btrfs developers. The most user visible of these is: Btrfs: clear the extent uptodate bits during parent transid failures Because that helps deal with out of date drives (say an iscsi disk that has gone away and come back). The old code wasn''t always properly retrying the other mirror for this type of failure. Liu Bo (6) commits (+24/-15): Btrfs: be less strict on finding next node in clear_extent_bit (+1/-2) Btrfs: skip states when they does not contain bits to clear (+10/-5) Btrfs: kick out redundant stuff in convert_extent_bit (+0/-5) Btrfs: increase the global block reserve estimates (+1/-1) Btrfs: fix trim 0 bytes after a device delete (+8/-1) Btrfs: fix a bug on overcommit stuff (+4/-1) Chris Mason (6) commits (+93/-47): Btrfs: clear the extent uptodate bits during parent transid failures (+3/-4) Btrfs: add extra sanity checks on the path names in btrfs_mksubvol (+6/-0) Btrfs: don''t reserve data with extents locked in btrfs_fallocate (+10/-15) Btrfs: improve error handling for btrfs_insert_dir_item callers (+26/-7) Btrfs: fix compiler warnings on 32 bit systems (+26/-20) Btrfs: make sure we update latest_bdev (+22/-1) Tsutomu Itoh (3) commits (+15/-8): Btrfs: check return value of lookup_extent_mapping() correctly (+4/-2) Btrfs: fix memory leak in load_free_space_cache() (+1/-0) Btrfs: fix return value check of extent_io_ops (+10/-6) David Sterba (2) commits (+17/-3): btrfs: fix structs where bitfields and spinlock/atomic share 8B word (+3/-3) btrfs: silence warning in raid array setup (+14/-0) Jan Schmidt (1) commits (+2/-0): Btrfs: avoid positive number with ERR_PTR Jeff Mahoney (1) commits (+53/-27): btrfs: delalloc for page dirtied out-of-band in fixup worker Keith Mannthey (1) commits (+6/-0): btrfs: Sector Size check during Mount Arne Jansen (1) commits (+5/-3): btrfs: don''t check DUP chunks twice Jeff Liu (1) commits (+2/-2): Btrfs: return the internal error unchanged if btrfs_get_extent_fiemap() call failed for SEEK_DATA/SEEK_HOLE inquiry Miao Xie (1) commits (+29/-24): Btrfs: fix deadlock on page lock when doing auto-defragment Florian Albrechtskirchinger (1) commits (+4/-2): btrfs: honor umask when creating subvol root Total: (24) commits (+250/-131) fs/btrfs/backref.c | 2 + fs/btrfs/check-integrity.c | 2 +- fs/btrfs/compression.c | 2 + fs/btrfs/ctree.h | 2 +- fs/btrfs/disk-io.c | 12 +++++ fs/btrfs/extent-tree.c | 51 ++++++++++++------- fs/btrfs/extent_io.c | 113 +++++++++++++++++++++++++------------------ fs/btrfs/extent_io.h | 1 + fs/btrfs/extent_map.h | 4 +- fs/btrfs/file.c | 29 +++++------- fs/btrfs/free-space-cache.c | 1 + fs/btrfs/inode-map.c | 6 ++- fs/btrfs/inode.c | 40 +++++++++++++-- fs/btrfs/ioctl.c | 59 +++++++++++++--------- fs/btrfs/scrub.c | 8 ++- fs/btrfs/transaction.c | 16 ++++--- fs/btrfs/volumes.c | 33 ++++++++++++- 17 files changed, 250 insertions(+), 131 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Hi Linus, I have two additional and btrfs fixes in my for-linus branch git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git for-linus One is a casting error that leads to memory corruption on i386 during scrub, and the other fixes a corner case in the backref walking code (also triggered by scrub). These are reviewed and tested. I was holding off on this while trying to track enospc bug reports, but it isn''t yet clear if those are regressions. These are valid fixes either way. Chris Mason (1) commits (+1/-1): Btrfs: fix casting error in scrub reada code Li Zefan (1) commits (+6/-2): btrfs: fix locking issues in find_parent_nodes() Total: (2) commits (+7/-3) fs/btrfs/backref.c | 8 ++++++-- fs/btrfs/reada.c | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-)