lkml.org 
[lkml]   [2021]   [Mar]   [18]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    /
    From
    Date
    SubjectRe: [PATCH 2/3] mm, dax, pmem: Introduce dev_pagemap_failure()
    On Wed, Mar 17, 2021 at 9:58 PM Dave Chinner <david@fromorbit.com> wrote:
    >
    > On Wed, Mar 17, 2021 at 09:08:23PM -0700, Dan Williams wrote:
    > > Jason wondered why the get_user_pages_fast() path takes references on a
    > > @pgmap object. The rationale was to protect against accessing a 'struct
    > > page' that might be in the process of being removed by the driver, but
    > > he rightly points out that should be solved the same way all gup-fast
    > > synchronization is solved which is invalidate the mapping and let the
    > > gup slow path do @pgmap synchronization [1].
    > >
    > > To achieve that it means that new user mappings need to stop being
    > > created and all existing user mappings need to be invalidated.
    > >
    > > For device-dax this is already the case as kill_dax() prevents future
    > > faults from installing a pte, and the single device-dax inode
    > > address_space can be trivially unmapped.
    > >
    > > The situation is different for filesystem-dax where device pages could
    > > be mapped by any number of inode address_space instances. An initial
    > > thought was to treat the device removal event like a drop_pagecache_sb()
    > > event that walks superblocks and unmaps all inodes. However, Dave points
    > > out that it is not just the filesystem user-mappings that need to react
    > > to global DAX page-unmap events, it is also filesystem metadata
    > > (proposed DAX metadata access), and other drivers (upstream
    > > DM-writecache) that need to react to this event [2].
    > >
    > > The only kernel facility that is meant to globally broadcast the loss of
    > > a page (via corruption or surprise remove) is memory_failure(). The
    > > downside of memory_failure() is that it is a pfn-at-a-time interface.
    > > However, the events that would trigger the need to call memory_failure()
    > > over a full PMEM device should be rare.
    >
    > This is a highly suboptimal design. Filesystems only need a single
    > callout to trigger a shutdown that unmaps every active mapping in
    > the filesystem - we do not need a page-by-page error notification
    > which results in 250 million hwposion callouts per TB of pmem to do
    > this.
    >
    > Indeed, the moment we get the first hwpoison from this patch, we'll
    > map it to the primary XFS superblock and we'd almost certainly
    > consider losing the storage behind that block to be a shut down
    > trigger. During the shutdown, the filesystem should unmap all the
    > active mappings (we already need to add this to shutdown on DAX
    > regardless of this device remove issue) and so we really don't need
    > a page-by-page notification of badness.

    XFS doesn't, but what about device-mapper and other agents? Even if
    the driver had a callback up the stack memory_failure() still needs to
    be able to trigger failures down the stack for CPU consumed poison.

    >
    > AFAICT, it's going to take minutes, maybe hours for do the page-by-page
    > iteration to hwposion every page. It's going to take a few seconds
    > for the filesystem shutdown to run a device wide invalidation.
    >
    > SO, yeah, I think this should simply be a single ranged call to the
    > filesystem like:
    >
    > ->memory_failure(dev, 0, -1ULL)
    >
    > to tell the filesystem that the entire backing device has gone away,
    > and leave the filesystem to handle failure entirely at the
    > filesystem level.

    So I went with memory_failure() after our discussion of all the other
    agents in the system that might care about these pfns going offline
    and relying on memory_failure() to route down to each of those. I.e.
    the "reuse the drop_pagecache_sb() model" idea was indeed
    insufficient. Now I'm trying to reconcile the fact that platform
    poison handling will hit memory_failure() first and may not
    immediately reach the driver, if ever (see the perennially awkward
    firmware-first-mode error handling: ghes_handle_memory_failure()) . So
    even if the ->memory_failure(dev...) up call exists there is no
    guarantee it can get called for all poison before the memory_failure()
    down call happens. Which means regardless of whether
    ->memory_failure(dev...) exists memory_failure() needs to be able to
    do the right thing.

    Combine that with the fact that new buses like CXL might be configured
    in "poison on decode error" mode which means that a memory_failure()
    storm can happen regardless of whether the driver initiates it
    programatically.

    How about a mechanism to optionally let a filesystem take over memory
    failure handling for a range of pfns that the memory_failure() can
    consult to fail ranges at a time rather than one by one? So a new
    'struct dax_operations' op (void) (*memory_failure_register(struct
    dax_device *, void *data). Where any agent that claims a dax_dev can
    register to take over memory_failure() handling for any event that
    happens in that range. This would be routed through device-mapper like
    any other 'struct dax_operations' op. I think that meets your
    requirement to get notifications of all the events you want to handle,
    but still allows memory_failure() to be the last resort for everything
    that has not opted into this error handling.

    \
     
     \ /
      Last update: 2021-03-18 20:22    [W:4.108 / U:0.516 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site