• Dan Magenheimer's avatar
    frontswap: support exclusive gets if tmem backend is capable · e3483a5f
    Dan Magenheimer authored
    Tmem, as originally specified, assumes that "get" operations
    performed on persistent pools never flush the page of data out
    of tmem on a successful get, waiting instead for a flush
    operation.  This is intended to mimic the model of a swap
    disk, where a disk read is non-destructive.  Unlike a
    disk, however, freeing up the RAM can be valuable.  Over
    the years that frontswap was in the review process, several
    reviewers (and notably Hugh Dickins in 2010) pointed out that
    this would result, at least temporarily, in two copies of the
    data in RAM: one (compressed for zcache) copy in tmem,
    and one copy in the swap cache.  We wondered if this could
    be done differently, at least optionally.
    
    This patch allows tmem backends to instruct the frontswap
    code that this backend performs exclusive gets.  Zcache2
    already contains hooks to support this feature.  Other
    backends are completely unaffected unless/until they are
    updated to support this feature.
    
    While i...
    e3483a5f
frontswap.c 10.3 KB