Hi folks, The for-next branch of the xfs-linux repository at: git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git has just been updated. Patches often get missed, so please check if your outstanding patches were in this update. If they have not been in this update, please resubmit them to linux-xfs@xxxxxxxxxxxxxxx so they can be picked up in the next update. Most of this push are simple(ish) bugfixes, with one big caveat: I've merged a patch to selftest the dir/xattr name hash function so that we might catch any platforms that are miscompiling it and hence writing out bad xattr/directory trees. The new head of the for-next branch is commit: e9b60c7f9713 pcpcntr: remove percpu_counter_sum_all() 8 new commits: Darrick J. Wong (4): [6de4b1ab470f] xfs: try to idiot-proof the allocators [9eb775968b68] xfs: walk all AGs if TRYLOCK passed to xfs_alloc_vextent_iterate_ags [e6fbb7167ed0] xfs: add tracepoints for each of the externally visible allocators [3cfb9290da3d] xfs: test dir/attr hash when loading module Dave Chinner (4): [1470afefc3c4] cpumask: introduce for_each_cpu_or [8b57b11cca88] pcpcntrs: fix dying cpu summation race [7ba85fba47bd] fork: remove use of percpu_counter_sum_all [e9b60c7f9713] pcpcntr: remove percpu_counter_sum_all() Code Diffstat: fs/xfs/Makefile | 1 + fs/xfs/libxfs/xfs_alloc.c | 36 ++- fs/xfs/xfs_dahash_test.c | 662 +++++++++++++++++++++++++++++++++++++++++ fs/xfs/xfs_dahash_test.h | 12 + fs/xfs/xfs_super.c | 5 + fs/xfs/xfs_trace.h | 7 + include/linux/cpumask.h | 17 ++ include/linux/find.h | 37 +++ include/linux/percpu_counter.h | 6 - kernel/fork.c | 5 - lib/find_bit.c | 9 + lib/percpu_counter.c | 37 +-- 12 files changed, 799 insertions(+), 35 deletions(-) create mode 100644 fs/xfs/xfs_dahash_test.c create mode 100644 fs/xfs/xfs_dahash_test.h