lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Mon, 04 Sep 2023 18:11:08 +0000
From:   patchwork-bot+f2fs@...nel.org
To:     Jeff Layton <jlayton@...nel.org>
Cc:     viro@...iv.linux.org.uk, brauner@...nel.org, ericvh@...nel.org,
        lucho@...kov.net, asmadeus@...ewreck.org, linux_oss@...debyte.com,
        dhowells@...hat.com, marc.dionne@...istor.com, clm@...com,
        josef@...icpanda.com, dsterba@...e.com, xiubli@...hat.com,
        idryomov@...il.com, jaharkes@...cmu.edu, coda@...cmu.edu,
        code@...icks.com, xiang@...nel.org, chao@...nel.org,
        huyue2@...lpad.com, jefflexu@...ux.alibaba.com,
        linkinjeon@...nel.org, sj1557.seo@...sung.com, jack@...e.com,
        tytso@....edu, adilger.kernel@...ger.ca, jaegeuk@...nel.org,
        hirofumi@...l.parknet.co.jp, miklos@...redi.hu,
        rpeterso@...hat.com, agruenba@...hat.com,
        gregkh@...uxfoundation.org, tj@...nel.org,
        trond.myklebust@...merspace.com, anna@...nel.org,
        almaz.alexandrovich@...agon-software.com, mark@...heh.com,
        jlbec@...lplan.org, joseph.qi@...ux.alibaba.com,
        hubcap@...ibond.com, martin@...ibond.com, mcgrof@...nel.org,
        keescook@...omium.org, yzaikin@...gle.com, sfrench@...ba.org,
        pc@...guebit.com, ronniesahlberg@...il.com, sprasad@...rosoft.com,
        tom@...pey.com, senozhatsky@...omium.org, richard@....at,
        hdegoede@...hat.com, hughd@...gle.com, akpm@...ux-foundation.org,
        amir73il@...il.com, djwong@...nel.org, bcodding@...hat.com,
        jack@...e.cz, linux-kernel@...r.kernel.org, linux-mm@...ck.org,
        linux-mtd@...ts.infradead.org, linux-afs@...ts.infradead.org,
        linux-cifs@...r.kernel.org, codalist@...a.cs.cmu.edu,
        cluster-devel@...hat.com, linux-ext4@...r.kernel.org,
        devel@...ts.orangefs.org, ecryptfs@...r.kernel.org,
        ocfs2-devel@...ts.linux.dev, ceph-devel@...r.kernel.org,
        linux-nfs@...r.kernel.org, v9fs@...ts.linux.dev,
        samba-technical@...ts.samba.org, linux-unionfs@...r.kernel.org,
        linux-f2fs-devel@...ts.sourceforge.net, linux-xfs@...r.kernel.org,
        linux-fsdevel@...r.kernel.org, ntfs3@...ts.linux.dev,
        linux-erofs@...ts.ozlabs.org, linux-btrfs@...r.kernel.org
Subject: Re: [f2fs-dev] [PATCH v7 00/13] fs: implement multigrain timestamps

Hello:

This series was applied to jaegeuk/f2fs.git (dev)
by Christian Brauner <brauner@...nel.org>:

On Mon, 07 Aug 2023 15:38:31 -0400 you wrote:
> The VFS always uses coarse-grained timestamps when updating the
> ctime and mtime after a change. This has the benefit of allowing
> filesystems to optimize away a lot metadata updates, down to around 1
> per jiffy, even when a file is under heavy writes.
> 
> Unfortunately, this coarseness has always been an issue when we're
> exporting via NFSv3, which relies on timestamps to validate caches. A
> lot of changes can happen in a jiffy, so timestamps aren't sufficient to
> help the client decide to invalidate the cache.
> 
> [...]

Here is the summary with links:
  - [f2fs-dev,v7,01/13] fs: remove silly warning from current_time
    https://git.kernel.org/jaegeuk/f2fs/c/b3030e4f2344
  - [f2fs-dev,v7,02/13] fs: pass the request_mask to generic_fillattr
    https://git.kernel.org/jaegeuk/f2fs/c/0d72b92883c6
  - [f2fs-dev,v7,03/13] fs: drop the timespec64 arg from generic_update_time
    https://git.kernel.org/jaegeuk/f2fs/c/541d4c798a59
  - [f2fs-dev,v7,04/13] btrfs: have it use inode_update_timestamps
    https://git.kernel.org/jaegeuk/f2fs/c/bb7cc0a62e47
  - [f2fs-dev,v7,05/13] fat: make fat_update_time get its own timestamp
    (no matching commit)
  - [f2fs-dev,v7,06/13] ubifs: have ubifs_update_time use inode_update_timestamps
    (no matching commit)
  - [f2fs-dev,v7,07/13] xfs: have xfs_vn_update_time gets its own timestamp
    (no matching commit)
  - [f2fs-dev,v7,08/13] fs: drop the timespec64 argument from update_time
    (no matching commit)
  - [f2fs-dev,v7,09/13] fs: add infrastructure for multigrain timestamps
    https://git.kernel.org/jaegeuk/f2fs/c/ffb6cf19e063
  - [f2fs-dev,v7,10/13] tmpfs: add support for multigrain timestamps
    https://git.kernel.org/jaegeuk/f2fs/c/d48c33972916
  - [f2fs-dev,v7,11/13] xfs: switch to multigrain timestamps
    (no matching commit)
  - [f2fs-dev,v7,12/13] ext4: switch to multigrain timestamps
    https://git.kernel.org/jaegeuk/f2fs/c/0269b585868e
  - [f2fs-dev,v7,13/13] btrfs: convert to multigrain timestamps
    https://git.kernel.org/jaegeuk/f2fs/c/50e9ceef1d4f

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html


Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ