linux-xfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] xfs: 4.20 merge
@ 2018-10-24  0:00 Dave Chinner
  2018-10-24 16:38 ` Linus Torvalds
  0 siblings, 1 reply; 2+ messages in thread
From: Dave Chinner @ 2018-10-24  0:00 UTC (permalink / raw)
  To: torvalds; +Cc: djwong, linux-kernel, linux-xfs, sandeen

Hi Linus,

Can you please pull the XFS 4.20 update from the tag listed below?
There's not a huge amount of change in this cycle - Darrick has been
out of action for a couple of months (hence me sending the last few
pull requests), so we decided a quiet cycle mainly focussed on bug
fixes was a good idea. Darrick will take the helm again at the end of
this merge window.

The branch has applied cleanly to your current tree, so you
shouldn't see any problems with it.

FYI, I may be sending another update later in the cycle - there's a
pending rework of the clone/dedupe_file_range code that fixes
numerous bugs that is spread amongst the VFS, XFS and ocfs2 code. It
has been reviewed and tested, Al and I just need to work out the
details of the merge, so it may come from him rather than me.

Thanks!

-Dave.


The following changes since commit b39989009bdb84992915c9869f58094ed5becf10:

  xfs: fix data corruption w/ unaligned reflink ranges (2018-10-06 11:44:39 +1000)

are available in the git repository at:

  git://git.kernel.org/pub/scm/fs/xfs/xfs-linux tags/xfs-4.20-merge-1

for you to fetch changes up to 96987eea537d6ccd98704a71958f9ba02da80843:

  xfs: cancel COW blocks before swapext (2018-10-18 17:21:55 +1100)

----------------------------------------------------------------
xfs: Changes for 4.20

- only support filesystems with unwritten extents
- add definition for statfs XFS magic number
- remove unused parameters around reflink code
- more debug for dangling delalloc extents
- cancel COW extents on extent swap targets
- fix quota stats output and clean up the code
- refactor some of the attribute code in preparation for parent pointers
- fix several buffer handling bugs

----------------------------------------------------------------
Adam Borowski (1):
      xfs: add a define for statfs magic to uapi

Allison Henderson (4):
      xfs: Move fs/xfs/xfs_attr.h to fs/xfs/libxfs/xfs_attr.h
      xfs: Add helper function xfs_attr_try_sf_addname
      xfs: Add attibute set and helper functions
      xfs: Add attibute remove and helper functions

Brian Foster (1):
      xfs: clear ail delwri queued bufs on unmount of shutdown fs

Carlos Maiolino (2):
      xfs: Fix xqmstats offsets in /proc/fs/xfs/xqmstat
      xfs: use offsetof() in place of offset macros for __xfsstats

Christoph Hellwig (8):
      xfs: remove XFS_IO_INVALID
      xfs: remove suport for filesystems without unwritten extent flag
      xfs: handle zeroing in xfs_file_iomap_begin_delay
      xfs: remove the unused shared argument to xfs_reflink_reserve_cow
      xfs: remove the unused trimmed argument from xfs_reflink_trim_around_shared
      xfs: fix fork selection in xfs_find_trim_cow_extent
      xfs: print dangling delalloc extents
      xfs: cancel COW blocks before swapext

Darrick J. Wong (3):
      xfs: xrep_findroot_block should reject root blocks with siblings
      xfs: always assign buffer verifiers when one is provided
      xfs: fix buffer state management in xrep_findroot_block

Dave Chinner (2):
      xfs: issue log message on user force shutdown
      xfs: fix use-after-free race in xfs_buf_rele

 fs/xfs/libxfs/xfs_attr.c       | 236 ++++++++++++++++++++++++-----------------
 fs/xfs/{ => libxfs}/xfs_attr.h |   2 +
 fs/xfs/libxfs/xfs_bmap.c       |  70 ++++++------
 fs/xfs/libxfs/xfs_bmap.h       |   1 +
 fs/xfs/libxfs/xfs_format.h     |   8 +-
 fs/xfs/libxfs/xfs_sb.c         |   5 +-
 fs/xfs/scrub/repair.c          | 128 +++++++++++++++++-----
 fs/xfs/scrub/scrub.c           |  13 ---
 fs/xfs/xfs_aops.c              |   4 +-
 fs/xfs/xfs_aops.h              |  14 ++-
 fs/xfs/xfs_bmap_util.c         |  61 ++---------
 fs/xfs/xfs_buf.c               | 109 +++++++++++++++----
 fs/xfs/xfs_buf.h               |   2 +
 fs/xfs/xfs_fsops.c             |  50 ++++-----
 fs/xfs/xfs_ioctl.c             |   8 --
 fs/xfs/xfs_iomap.c             |  53 ++++++---
 fs/xfs/xfs_reflink.c           |  33 +++---
 fs/xfs/xfs_reflink.h           |   4 +-
 fs/xfs/xfs_stats.c             |  52 ++++-----
 fs/xfs/xfs_stats.h             |  28 +----
 fs/xfs/xfs_super.c             |  38 ++++++-
 fs/xfs/xfs_trans.h             |   1 +
 fs/xfs/xfs_trans_ail.c         |  28 +++--
 fs/xfs/xfs_trans_buf.c         |  42 ++++++++
 include/uapi/linux/magic.h     |   1 +
 25 files changed, 608 insertions(+), 383 deletions(-)
 rename fs/xfs/{ => libxfs}/xfs_attr.h (97%)

-- 
Dave Chinner
david@fromorbit.com

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [GIT PULL] xfs: 4.20 merge
  2018-10-24  0:00 [GIT PULL] xfs: 4.20 merge Dave Chinner
@ 2018-10-24 16:38 ` Linus Torvalds
  0 siblings, 0 replies; 2+ messages in thread
From: Linus Torvalds @ 2018-10-24 16:38 UTC (permalink / raw)
  To: david; +Cc: djwong, Linux Kernel Mailing List, linux-xfs, sandeen

On Wed, Oct 24, 2018 at 1:01 AM Dave Chinner <david@fromorbit.com> wrote:
>
> Can you please pull the XFS 4.20 update from the tag listed below?

Pulled, thanks,

             Linus

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-10-25  1:07 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-24  0:00 [GIT PULL] xfs: 4.20 merge Dave Chinner
2018-10-24 16:38 ` Linus Torvalds

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).