This patchset is aimed to support shared pages tracking for fsdax. Changes since V12: - Rebased onto next-20220414 - Do not continue ->notify_failure() if filesystem is not ready yet - Simplify the logic of setting CoW flag - Fix build warning/error and typo This patchset moves owner tracking from dax_assocaite_entry() to pmem device driver, by introducing an interface ->memory_failure() for struct pagemap. This interface is called by memory_failure() in mm, and implemented by pmem device. Then call holder operations to find the filesystem which the corrupted data located in, and call filesystem handler to track files or metadata associated with this page. Finally we are able to try to fix the corrupted data in filesystem and do other necessary processing, such as killing processes who are using the files affected. The call trace is like this: memory_failure() |* fsdax case |------------ |pgmap->ops->memory_failure() => pmem_pgmap_memory_failure() | dax_holder_notify_failure() => | dax_device->holder_ops->notify_failure() => | - xfs_dax_notify_failure() | |* xfs_dax_notify_failure() | |-------------------------- | | xfs_rmap_query_range() | | xfs_dax_failure_fn() | | * corrupted on metadata | | try to recover data, call xfs_force_shutdown() | | * corrupted on file data | | try to recover data, call mf_dax_kill_procs() |* normal case |------------- |mf_generic_kill_procs() == Shiyang Ruan (7): dax: Introduce holder for dax_device mm: factor helpers for memory_failure_dev_pagemap pagemap,pmem: Introduce ->memory_failure() fsdax: Introduce dax_lock_mapping_entry() mm: Introduce mf_dax_kill_procs() for fsdax case xfs: Implement ->notify_failure() for XFS fsdax: set a CoW flag when associate reflink mappings drivers/dax/super.c | 67 +++++++++- drivers/md/dm.c | 2 +- drivers/nvdimm/pmem.c | 17 +++ fs/dax.c | 113 ++++++++++++++-- fs/erofs/super.c | 10 +- fs/ext2/super.c | 7 +- fs/ext4/super.c | 9 +- fs/xfs/Makefile | 5 + fs/xfs/xfs_buf.c | 10 +- fs/xfs/xfs_fsops.c | 3 + fs/xfs/xfs_mount.h | 1 + fs/xfs/xfs_notify_failure.c | 220 +++++++++++++++++++++++++++++++ fs/xfs/xfs_super.h | 1 + include/linux/dax.h | 48 +++++-- include/linux/memremap.h | 12 ++ include/linux/mm.h | 2 + include/linux/page-flags.h | 6 + mm/memory-failure.c | 255 +++++++++++++++++++++++++----------- 18 files changed, 682 insertions(+), 106 deletions(-) create mode 100644 fs/xfs/xfs_notify_failure.c -- 2.35.1