Linux fsverity development list
 help / color / mirror / Atom feed
 messages from 2026-02-12 10:11:46 to 2026-02-26 16:09:01 UTC [more...]

[PATCH 00/61] vfs: change inode->i_ino from unsigned long to u64
 2026-02-26 15:56 UTC  (62+ messages)
` [PATCH 01/61] vfs: widen inode hash/lookup functions "
` [PATCH 02/61] vfs: change i_ino from unsigned long "
` [PATCH 03/61] trace: update VFS-layer trace events for u64 i_ino
` [PATCH 04/61] ext4: update "
` [PATCH 05/61] jbd2: update format strings "
` [PATCH 06/61] f2fs: update "
` [PATCH 07/61] lockd: update format strings "
` [PATCH 08/61] nfs: update "
` [PATCH 09/61] nfs: remove nfs_fattr_to_ino_t() and nfs_fileid_to_ino_t()
` [PATCH 10/61] nfs: remove nfs_compat_user_ino64()
` [PATCH 11/61] nfs: remove enable_ino64 module parameter
` [PATCH 12/61] nfsd: update format strings for u64 i_ino
` [PATCH 13/61] smb: store full 64-bit uniqueid in i_ino
` [PATCH 14/61] smb: remove cifs_uniqueid_to_ino_t()
` [PATCH 15/61] locks: update /proc/locks format for u64 i_ino
` [PATCH 16/61] proc: update /proc/PID/maps "
` [PATCH 17/61] nilfs2: update "
` [PATCH 18/61] 9p: update format strings "
` [PATCH 19/61] affs: "
` [PATCH 20/61] afs: "
` [PATCH 21/61] autofs: "
` [PATCH 22/61] befs: "
` [PATCH 23/61] bfs: "
` [PATCH 24/61] cachefiles: "
` [PATCH 25/61] ceph: "
` [PATCH 26/61] coda: "
` [PATCH 27/61] cramfs: "
` [PATCH 28/61] ecryptfs: "
` [PATCH 29/61] efs: "
` [PATCH 30/61] exportfs: "
` [PATCH 31/61] ext2: "
` [PATCH 32/61] freevxfs: "
` [PATCH 33/61] hfs: "
` [PATCH 34/61] hfsplus: "
` [PATCH 35/61] hpfs: "
` [PATCH 36/61] isofs: "
` [PATCH 37/61] jffs2: "
` [PATCH 38/61] jfs: "
` [PATCH 39/61] minix: "
` [PATCH 40/61] nsfs: "
` [PATCH 41/61] ntfs3: "
` [PATCH 42/61] ocfs2: "
` [PATCH 43/61] orangefs: "
` [PATCH 44/61] overlayfs: "
` [PATCH 45/61] qnx4: "
` [PATCH 46/61] qnx6: "
` [PATCH 47/61] ubifs: "
` [PATCH 48/61] udf: "
` [PATCH 49/61] ufs: "
` [PATCH 50/61] zonefs: "
` [PATCH 51/61] security: update audit "
` [PATCH 52/61] drm/amdgpu: update "
` [PATCH 53/61] fsnotify: update fdinfo format strings "
` [PATCH 54/61] net: update socket dname format "
` [PATCH 55/61] uprobes: update format strings "
` [PATCH 56/61] dma-buf: update format string "
` [PATCH 57/61] fscrypt: update format strings "
` [PATCH 58/61] fsverity: update format string "
` [PATCH 59/61] iomap: "
` [PATCH 60/61] net: update legacy protocol format strings "
` [PATCH 61/61] vfs: update core "

[PATCH] fsverity: add dependency on 64K or smaller pages
 2026-02-24 15:32 UTC  (6+ messages)

[PATCH v3 00/35] fs-verity support for XFS with post EOF merkle tree
 2026-02-24 14:42 UTC  (94+ messages)
` [PATCH v3 01/35] fsverity: report validation errors back to the filesystem
` [PATCH v3 02/35] fsverity: expose ensure_fsverity_info()
` [PATCH v3 03/35] fsverity: add consolidated pagecache offset for metadata
` [PATCH v3 04/35] fsverity: generate and store zero-block hash
` [PATCH v3 05/35] fsverity: introduce fsverity_folio_zero_hash()
` [PATCH v3 06/35] fsverity: pass digest size and hash of the empty block to ->write
` [PATCH v3 07/35] iomap: introduce IOMAP_F_FSVERITY
` [PATCH v3 08/35] iomap: don't limit fsverity metadata by EOF in writeback
` [PATCH v3 09/35] iomap: obtain fsverity info for read path
` [PATCH v3 10/35] iomap: issue readahead for fsverity merkle tree
` [PATCH v3 11/35] iomap: allow filesystem to read fsverity metadata beyound EOF
` [PATCH v3 12/35] iomap: let fsverity verify holes
` [PATCH v3 13/35] xfs: use folio host instead of file struct
` [PATCH v3 14/35] xfs: add fs-verity ro-compat flag
` [PATCH v3 15/35] xfs: add inode on-disk VERITY flag
` [PATCH v3 16/35] xfs: initialize fs-verity on file open
` [PATCH v3 17/35] xfs: don't allow to enable DAX on fs-verity sealed inode
` [PATCH v3 18/35] xfs: disable direct read path for fs-verity files
` [PATCH v3 19/35] xfs: introduce XFS_FSVERITY_CONSTRUCTION inode flag
` [PATCH v3 20/35] xfs: introduce XFS_FSVERITY_REGION_START constant
` [PATCH v3 21/35] xfs: disable preallocations for fsverity Merkle tree writes
` [PATCH v3 22/35] xfs: add iomap write/writeback and reading of Merkle tree pages
` [PATCH v3 23/35] xfs: add helper to check that inode data need fsverity verification
` [PATCH v3 24/35] xfs: use read ioend for fsverity data verification
` [PATCH v3 25/35] xfs: add helpers to convert between pagecache and on-disk offset
` [PATCH v3 26/35] xfs: add a helper to decide if bmbt record needs offset conversion
` [PATCH v3 27/35] xfs: use different on-disk and pagecache offset for fsverity
` [PATCH v3 28/35] xfs: add fs-verity support
` [PATCH v3 29/35] xfs: add fs-verity ioctls
` [PATCH v3 30/35] xfs: advertise fs-verity being available on filesystem
` [PATCH v3 31/35] xfs: check and repair the verity inode flag state
` [PATCH v3 32/35] xfs: report verity failures through the health system
` [PATCH v3 33/35] xfs: introduce health state for corrupted fsverity metadata
` [PATCH v3 34/35] xfs: add fsverity traces
` [PATCH v3 35/35] xfs: enable ro-compat fs-verity flag

[PATCH] generi/579: handle quoted cmp output
 2026-02-23 18:25 UTC  (3+ messages)

[GIT PULL] fsverity fixes for v7.0-rc1
 2026-02-22 21:19 UTC  (2+ messages)
` [f2fs-dev] "

[PATCH v4 0/3] fsverity: remove fsverity_verify_page()
 2026-02-18 21:41 UTC  (7+ messages)
` [PATCH v4 1/3] f2fs: remove unnecessary ClearPageUptodate in f2fs_verify_cluster()
` [PATCH v4 2/3] f2fs: make f2fs_verify_cluster() partially large-folio-aware
` [PATCH v4 3/3] fsverity: remove fsverity_verify_page()

[PATCH] fsverity: fix build error by adding fsverity_readahead() stub
 2026-02-18 21:41 UTC  (3+ messages)

[PATCH 01/11] fsverity: don't issue readahead for non-ENOENT errors from __filemap_get_folio
 2026-02-17 21:14 UTC  (2+ messages)
` [f2fs-dev] "

[PATCH 01/15] fs,fsverity: reject size changes on fsverity files in setattr_prepare
 2026-02-17 21:14 UTC  (2+ messages)
` [f2fs-dev] [PATCH 01/15] fs, fsverity: "

[PATCH v3 0/2] fsverity: remove fsverity_verify_page()
 2026-02-17  6:29 UTC  (5+ messages)
` [PATCH v3 1/2] f2fs: make f2fs_verify_cluster() partially large-folio-aware
` [PATCH v3 2/2] fsverity: remove fsverity_verify_page()

[PATCH v2 0/2] fsverity: remove fsverity_verify_page()
 2026-02-15  4:11 UTC  (7+ messages)
` [PATCH v2 1/2] f2fs: use fsverity_verify_blocks() instead of fsverity_verify_page()
` [PATCH v2 2/2] fsverity: remove fsverity_verify_page()

[PATCH 0/2] fsverity: remove fsverity_verify_page()
 2026-02-14 20:55 UTC  (6+ messages)
` [PATCH 1/2] f2fs: use fsverity_verify_blocks() instead of fsverity_verify_page()
` [PATCH 2/2] fsverity: remove fsverity_verify_page()

[GIT PULL] fsverity updates for 7.0
 2026-02-12 19:13 UTC  (4+ messages)
` [f2fs-dev] "


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox