linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2024-03-15 13:01:07 to 2024-03-17 16:39:34 UTC [more...]

[PATCHBOMB v5.3] fs-verity support for XFS
 2024-03-17 16:39 UTC  (66+ messages)
` [PATCHSET "
  ` [PATCH 01/40] fsverity: remove hash page spin lock
  ` [PATCH 02/40] xfs: add parent pointer support to attribute code
  ` [PATCH 03/40] xfs: define parent pointer ondisk extended attribute format
  ` [PATCH 04/40] xfs: add parent pointer validator functions
  ` [PATCH 05/40] fs: add FS_XFLAG_VERITY for verity files
  ` [PATCH 06/40] fsverity: pass tree_blocksize to end_enable_verity()
  ` [PATCH 07/40] fsverity: support block-based Merkle tree caching
  ` [PATCH 08/40] fsverity: add per-sb workqueue for post read processing
  ` [PATCH 09/40] fsverity: add tracepoints
  ` [PATCH 10/40] fsverity: fix "support block-based Merkle tree caching"
  ` [PATCH 11/40] fsverity: send the level of the merkle tree block to ->read_merkle_tree_block
  ` [PATCH 12/40] fsverity: pass the new tree size and block size to ->begin_enable_verity
  ` [PATCH 13/40] fsverity: expose merkle tree geometry to callers
  ` [PATCH 14/40] fsverity: rely on cached block callers to retain verified state
  ` [PATCH 15/40] fsverity: box up the write_merkle_tree_block parameters too
  ` [PATCH 16/40] fsverity: pass the zero-hash value to the implementation
  ` [PATCH 17/40] fsverity: report validation errors back to the filesystem
  ` [PATCH 18/40] iomap: integrate fs-verity verification into iomap's read path
  ` [PATCH 19/40] xfs: add attribute type for fs-verity
  ` [PATCH 20/40] xfs: add fs-verity ro-compat flag
  ` [PATCH 21/40] xfs: add inode on-disk VERITY flag
  ` [PATCH 22/40] xfs: initialize fs-verity on file open and cleanup on inode destruction
  ` [PATCH 23/40] xfs: don't allow to enable DAX on fs-verity sealed inode
  ` [PATCH 24/40] xfs: disable direct read path for fs-verity files
  ` [PATCH 25/40] xfs: widen flags argument to the xfs_iflags_* helpers
  ` [PATCH 26/40] xfs: add fs-verity support
  ` [PATCH 27/40] xfs: create a per-mount shrinker for verity inodes merkle tree blocks
  ` [PATCH 28/40] xfs: create an icache tag for files with cached "
  ` [PATCH 29/40] xfs: shrink verity blob cache
  ` [PATCH 30/40] xfs: clean up stale fsverity metadata before starting
  ` [PATCH 31/40] xfs: better reporting and error handling in xfs_drop_merkle_tree
  ` [PATCH 32/40] xfs: make scrub aware of verity dinode flag
  ` [PATCH 33/40] xfs: add fs-verity ioctls
  ` [PATCH 34/40] xfs: advertise fs-verity being available on filesystem
  ` [PATCH 35/40] xfs: teach online repair to evaluate fsverity xattrs
  ` [PATCH 36/40] xfs: don't store trailing zeroes of merkle tree blocks
  ` [PATCH 37/40] xfs: create separate name hash function for xattrs
  ` [PATCH 38/40] xfs: use merkle tree offset as attr hash
  ` [PATCH 39/40] xfs: don't bother storing merkle tree blocks for zeroed data blocks
  ` [PATCH 40/40] xfs: enable ro-compat fs-verity flag
  ` [PATCH 01/20] xfsprogs: add parent pointer support to attribute code
  ` [PATCH 02/20] xfsprogs: define parent pointer xattr format
  ` [PATCH 03/20] xfsprogs: Add xfs_verify_pptr
  ` [PATCH 04/20] fs: add FS_XFLAG_VERITY for verity files
  ` [PATCH 05/20] xfs: add attribute type for fs-verity
  ` [PATCH 06/20] xfs: add fs-verity ro-compat flag
  ` [PATCH 07/20] xfs: add inode on-disk VERITY flag
  ` [PATCH 08/20] xfs: add fs-verity support
  ` [PATCH 09/20] xfs: advertise fs-verity being available on filesystem
  ` [PATCH 10/20] xfs: create separate name hash function for xattrs
  ` [PATCH 11/20] xfs: use merkle tree offset as attr hash
  ` [PATCH 12/20] xfs: enable ro-compat fs-verity flag
  ` [PATCH 13/20] libfrog: add fsverity to xfs_report_geom output
  ` [PATCH 14/20] xfs_db: introduce attr_modify command
  ` [PATCH 15/20] xfs_db: make attr_set/remove/modify be able to handle fs-verity attrs
  ` [PATCH 16/20] man: document attr_modify command
  ` [PATCH 17/20] xfs_db: dump verity features and metadata
  ` [PATCH 18/20] xfs_db: dump merkle tree data
  ` [PATCH 19/20] xfs_repair: junk fsverity xattrs when unnecessary
  ` [PATCH 20/20] mkfs.xfs: add verity parameter
` [PATCHSET v5.3] fstests: fs-verity support for XFS
  ` [PATCH 1/3] common/verity: enable fsverity "
  ` [PATCH 2/3] xfs/{021,122}: adapt to fsverity xattrs

[PATCH RFC 00/24] vfs, nfsd, nfs: implement directory delegations
 2024-03-17 16:03 UTC  (36+ messages)
` [PATCH RFC 01/24] filelock: push the S_ISREG check down to ->setlease handlers
` [PATCH RFC 02/24] filelock: add a lm_set_conflict lease_manager callback
` [PATCH RFC 03/24] vfs: add try_break_deleg calls for parents to vfs_{link,rename,unlink}
` [PATCH RFC 04/24] vfs: allow mkdir to wait for delegation break on parent
` [PATCH RFC 05/24] vfs: allow rmdir "
` [PATCH RFC 06/24] vfs: break parent dir delegations in open(..., O_CREAT) codepath
` [PATCH RFC 07/24] vfs: make vfs_create break delegations on parent directory
` [PATCH RFC 08/24] vfs: make vfs_mknod "
` [PATCH RFC 09/24] filelock: lift the ban on directory leases in generic_setlease
` [PATCH RFC 10/24] nfsd: allow filecache to hold S_IFDIR files
` [PATCH RFC 11/24] nfsd: allow DELEGRETURN on directories
` [PATCH RFC 12/24] nfsd: encoders and decoders for GET_DIR_DELEGATION
` [PATCH RFC 13/24] nfsd: check for delegation conflicts vs. the same client
` [PATCH RFC 14/24] nfsd: wire up GET_DIR_DELEGATION handling
` [PATCH RFC 15/24] nfs: fix nfs_stateid_hash prototype when CONFIG_CRC32 isn't set
` [PATCH RFC 16/24] nfs: remove unused NFS_CALL macro
` [PATCH RFC 17/24] nfs: add cache_validity to the nfs_inode_event tracepoints
` [PATCH RFC 18/24] nfs: add a tracepoint to nfs_inode_detach_delegation_locked
` [PATCH RFC 19/24] nfs: new tracepoint in nfs_delegation_need_return
` [PATCH RFC 20/24] nfs: new tracepoint in match_stateid operation
` [PATCH RFC 21/24] nfs: add a GDD_GETATTR rpc operation
` [PATCH RFC 22/24] nfs: skip dentry revalidation when parent dir has a delegation
` [PATCH RFC 23/24] nfs: optionally request a delegation on GETATTR
` [PATCH RFC 24/24] nfs: add a module parameter to disable directory delegations

[syzbot] [overlayfs?] WARNING in ovl_copy_up_file
 2024-03-17 13:58 UTC  (3+ messages)

[PATCH v3 0/9] fuse: inode IO modes and mmap + parallel dio
 2024-03-17 13:54 UTC  (9+ messages)
` [PATCH v3 9/9] fuse: allow parallel dio writes with FUSE_DIRECT_IO_ALLOW_MMAP

VFS: Close: file count is zero (use-after-free)
 2024-03-17 11:57 UTC 

Uneccesary flushes waking up suspended disks
 2024-03-16 18:35 UTC  (5+ messages)

bcachefs: do not run 6.7: upgrade to 6.8 immediately if you have a multi device fs
 2024-03-16 18:08 UTC  (8+ messages)

[syzbot] Monthly fs report (Mar 2024)
 2024-03-16 12:09 UTC 

[syzbot] [v9fs?] KMSAN: uninit-value in v9fs_evict_inode
 2024-03-16 11:15 UTC 

WARNING in mark_buffer_dirty
 2024-03-16  4:54 UTC  (2+ messages)

[RFC PATCH 2/2] selinux: wire up new execstack LSM hook
 2024-03-16  3:24 UTC  (7+ messages)
` [RFC PATCH 1/2] lsm: introduce new hook security_vm_execstack

[PATCH 00/11] sysctl: treewide: constify ctl_table argument of sysctl handlers
 2024-03-16  2:52 UTC  (13+ messages)
` [PATCH 01/11] stackleak: don't modify ctl_table argument
` [PATCH 02/11] cgroup: bpf: constify ctl_table arguments and fields
` [PATCH 03/11] hugetlb: constify ctl_table arguments of utility functions
` [PATCH 04/11] utsname: constify ctl_table arguments of utility function
` [PATCH 05/11] neighbour: "
` [PATCH 06/11] ipv4/sysctl: constify ctl_table arguments of utility functions
` [PATCH 07/11] ipv6/addrconf: "
` [PATCH 08/11] ipv6/ndisc: constify ctl_table arguments of utility function
` [PATCH 09/11] ipvs: constify ctl_table arguments of utility functions
` [PATCH 10/11] sysctl: constify ctl_table arguments of utility function
` [PATCH 11/11] sysctl: treewide: constify the ctl_table argument of handlers

[RFC v4 linux-next 00/19] fs & block: remove bdev->bd_inode
 2024-03-16  2:49 UTC  (34+ messages)
` [RFC v4 linux-next 01/19] block: move two helpers into bdev.c
` [RFC v4 linux-next 02/19] block: remove sync_blockdev_nowait()
` [RFC v4 linux-next 03/19] block: remove sync_blockdev_range()
` [RFC v4 linux-next 04/19] block: prevent direct access of bd_inode
` [RFC v4 linux-next 05/19] bcachefs: remove dead function bdev_sectors()
` [RFC v4 linux-next 06/19] cramfs: prevent direct access of bd_inode
` [RFC v4 linux-next 07/19] erofs: "
` [RFC v4 linux-next 08/19] nilfs2: "
` [RFC v4 linux-next 09/19] gfs2: "
` [RFC v4 linux-next 10/19] s390/dasd: use bdev api in dasd_format()
` [RFC v4 linux-next 11/19] btrfs: prevent direct access of bd_inode
` [RFC v4 linux-next 13/19] ext4: "
` [RFC v4 linux-next 14/19] jbd2: "
` [RFC v4 linux-next 15/19] bcache: "
` [RFC v4 linux-next 16/19] block2mtd: "

[PATCH v5 00/11] IOMMU memory observability
 2024-03-15 21:53 UTC  (5+ messages)
` [PATCH v5 02/11] iommu/dma: use iommu_put_pages_list() to releae freelist

[LSF/MM/BPF TOPIC] Filesystem testing
 2024-03-15 20:32 UTC  (2+ messages)

[PATCH] fscache: Fix error handling in fscache_begin_operation()
 2024-03-15 18:34 UTC  (2+ messages)

[PATCH v10 0/9] Landlock: IOCTL support
 2024-03-15 18:30 UTC  (5+ messages)
` [PATCH v10 1/9] security: Create security_file_vfs_ioctl hook
    ` [RFC PATCH] fs: Add an use vfs_get_ioctl_handler()

[PATCH v3 0/2] sysctl: treewide: prepare ctl_table_root for ctl_table constification
 2024-03-15 18:11 UTC  (3+ messages)
` [PATCH v3 1/2] sysctl: treewide: drop unused argument ctl_table_root::set_ownership(table)
` [PATCH v3 2/2] sysctl: treewide: constify argument ctl_table_root::permissions(table)

[PATCH] cifs: Move some extern decls from .c files to .h
 2024-03-15 17:46 UTC 

[GIT PULL] bcachefs 6.9 updates v2
 2024-03-15 17:20 UTC  (2+ messages)

[GIT PULL] fuse update for 6.9
 2024-03-15 17:20 UTC  (2+ messages)

[PATCH v5 00/37] Memory allocation profiling
 2024-03-15 17:06 UTC  (9+ messages)
` [PATCH v5 14/37] lib: introduce support for page allocation tagging
` [PATCH v5 23/37] mm/slab: add allocation accounting into slab allocation and free paths

[PATCH 0/3] bit more FS_IOC_GETFSUUID, FS_IOC_GETFSSYSFSPATH
 2024-03-15 16:50 UTC  (4+ messages)
` [PATCH 3/3] ext4: Add support for FS_IOC_GETFSSYSFSPATH

[PATCH v2] sysctl: drop unused argument set_ownership()::table
 2024-03-15 16:19 UTC  (4+ messages)

[linus:master] [pidfd] cb12fd8e0d: ltp.readahead01.fail
 2024-03-15 14:49 UTC  (3+ messages)
  ` [LTP] "

[PATCH v2 01/34] bdev: open block device as files
 2024-03-15 14:28 UTC  (3+ messages)
` [PATCH] fs,block: get holder during claim

[PATCH v2] fs/{posix_acl,ext2,jfs,ceph}: apply umask if ACL support is disabled
 2024-03-15 13:52 UTC  (11+ messages)

[PATCH] statx.2: Document STATX_SUBVOL
 2024-03-15 13:47 UTC  (3+ messages)

[PATCH -next] fs: Add kernel-doc comments to proc_create_net_data_write()
 2024-03-15 13:30 UTC  (2+ messages)

[syzbot] [tomoyo?] [hfs?] general protection fault in tomoyo_check_acl (3)
 2024-03-15 13:29 UTC  (8+ messages)
` [syzbot] [hfs] "

[PATCH v3 00/11] enable bs > ps in XFS
 2024-03-15 13:21 UTC  (3+ messages)
` [PATCH v3 03/11] filemap: allocate mapping_min_order folios in the page cache

[PATCH v10 2/8] fuse: introduce atomic open
 2024-03-15 13:09 UTC  (3+ messages)
` [PATCH] fuse: Do NULL check instead of IS_ERR in atomic_open

[PATCH v2 00/10] xfs/iomap: fix non-atomic clone operation and don't update size when zeroing range post eof
 2024-03-15 12:53 UTC  (10+ messages)
` [PATCH v2 01/10] xfs: match lock mode in xfs_buffered_write_iomap_begin()
` [PATCH v2 03/10] xfs: make xfs_bmapi_convert_delalloc() to allocate the target offset
` [PATCH v2 04/10] xfs: drop xfs_convert_blocks()
` [PATCH v2 05/10] xfs: convert delayed extents to unwritten when zeroing post eof blocks
` [PATCH v2 06/10] iomap: drop the write failure handles when unsharing and zeroing
` [PATCH v2 07/10] iomap: don't increase i_size if it's not a write operation
` [PATCH v2 08/10] iomap: use a new variable to handle the written bytes in iomap_write_iter()
` [PATCH v2 09/10] iomap: make block_write_end() return a boolean
` [PATCH v2 10/10] iomap: do some small logical cleanup in buffered write


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).