public inbox for linux-ext4@vger.kernel.org
 help / color / mirror / Atom feed
 messages from 2025-09-13 01:04:05 to 2025-09-16 01:05:01 UTC [more...]

[RFC v5] fuse: containerize ext4 for safer operation
 2025-09-16  1:05 UTC  (69+ messages)
` [PATCHSET 1/9] fuse2fs: upgrade to libfuse 3.17
  ` [PATCH 1/4] fuse2fs: bump library version
  ` [PATCH 2/4] fuse2fs: wrap the fuse_set_feature_flag helper for older libfuse
  ` [PATCH 3/4] fuse2fs: disable nfs exports
  ` [PATCH 4/4] fuse2fs: drop fuse 2.x support code
` [PATCHSET RFC v5 2/9] fuse4fs: fork a low level fuse server
  ` [PATCH 01/21] fuse2fs: separate libfuse3 and fuse2fs detection in configure
  ` [PATCH 02/21] fuse2fs: start porting fuse2fs to lowlevel libfuse API
  ` [PATCH 03/21] debian: create new package for fuse4fs
  ` [PATCH 04/21] fuse4fs: namespace some helpers
  ` [PATCH 05/21] fuse4fs: convert to low level API
  ` [PATCH 06/21] libsupport: port the kernel list.h to libsupport
  ` [PATCH 07/21] libsupport: add a cache
  ` [PATCH 08/21] cache: disable debugging
  ` [PATCH 09/21] cache: use modern list iterator macros
  ` [PATCH 10/21] cache: embed struct cache in the owner
  ` [PATCH 11/21] cache: pass cache pointer to callbacks
  ` [PATCH 12/21] cache: pass a private data pointer through cache_walk
  ` [PATCH 13/21] cache: add a helper to grab a new refcount for a cache_node
  ` [PATCH 14/21] cache: return results of a cache flush
  ` [PATCH 15/21] cache: add a "get only if incore" flag to cache_node_get
  ` [PATCH 16/21] cache: support gradual expansion
  ` [PATCH 17/21] cache: implement automatic shrinking
  ` [PATCH 18/21] fuse4fs: add cache to track open files
  ` [PATCH 19/21] fuse4fs: use the orphaned inode list
  ` [PATCH 20/21] fuse4fs: implement FUSE_TMPFILE
  ` [PATCH 21/21] fuse4fs: create incore reverse orphan list
` [PATCHSET RFC v5 3/9] libext2fs: refactoring for fuse2fs iomap support
  ` [PATCH 01/10] libext2fs: make it possible to extract the fd from an IO manager
  ` [PATCH 02/10] libext2fs: always fsync the device when flushing the cache
  ` [PATCH 03/10] libext2fs: always fsync the device when closing the unix IO manager
  ` [PATCH 04/10] libext2fs: only fsync the unix fd if we wrote to the device
  ` [PATCH 05/10] libext2fs: invalidate cached blocks when freeing them
  ` [PATCH 06/10] libext2fs: only flush affected blocks in unix_write_byte
  ` [PATCH 07/10] libext2fs: allow unix_write_byte when the write would be aligned
  ` [PATCH 08/10] libext2fs: allow clients to ask to write full superblocks
  ` [PATCH 09/10] libext2fs: allow callers to disallow I/O to file data blocks
  ` [PATCH 10/10] libext2fs: add posix advisory locking to the unix IO manager
` [PATCHSET RFC v5 4/9] fuse2fs: use fuse iomap data paths for better file I/O performance
  ` [PATCH 01/17] fuse2fs: implement bare minimum iomap for file mapping reporting
  ` [PATCH 02/17] fuse2fs: add iomap= mount option
  ` [PATCH 03/17] fuse2fs: implement iomap configuration
  ` [PATCH 04/17] fuse2fs: register block devices for use with iomap
  ` [PATCH 05/17] fuse2fs: implement directio file reads
  ` [PATCH 06/17] fuse2fs: add extent dump function for debugging
  ` [PATCH 07/17] fuse2fs: implement direct write support
  ` [PATCH 08/17] fuse2fs: turn on iomap for pagecache IO
  ` [PATCH 09/17] fuse2fs: don't zero bytes in punch hole
  ` [PATCH 10/17] fuse2fs: don't do file data block IO when iomap is enabled
  ` [PATCH 11/17] fuse2fs: avoid fuseblk mode if fuse-iomap support is likely
  ` [PATCH 12/17] fuse2fs: enable file IO to inline data files
  ` [PATCH 13/17] fuse2fs: set iomap-related inode flags
  ` [PATCH 14/17] fuse2fs: configure block device block size
  ` [PATCH 15/17] fuse4fs: separate invalidation
  ` [PATCH 16/17] fuse2fs: implement statx
  ` [PATCH 17/17] fuse2fs: enable atomic writes
` [PATCHSET RFC v5 5/9] fuse4fs: specify the root node id
  ` [PATCH 1/1] fuse4fs: don't use inode number translation when possible
` [PATCHSET RFC v5 6/9] fuse2fs: handle timestamps and ACLs correctly when iomap is enabled
  ` [PATCH 01/10] fuse2fs: add strictatime/lazytime mount options
  ` [PATCH 02/10] fuse2fs: skip permission checking on utimens when iomap is enabled
  ` [PATCH 03/10] fuse2fs: let the kernel tell us about acl/mode updates
  ` [PATCH 04/10] fuse2fs: better debugging for file mode updates
  ` [PATCH 05/10] fuse2fs: debug timestamp updates
  ` [PATCH 06/10] fuse2fs: use coarse timestamps for iomap mode
` [PATCHSET RFC v5 7/9] fuse2fs: cache iomap mappings for even better file IO performance
` [PATCHSET RFC v5 8/9] fuse2fs: improve block and inode caching
` [PATCHSET RFC v5 9/9] fuse4fs: run servers as a contained service

[PATCHSET 6/6] fuse2fs: better tracking of writable state
 2025-09-16  0:05 UTC  (4+ messages)
` [PATCH 1/3] fuse2fs: pass a struct fuse2fs to fs_writeable
` [PATCH 2/3] fuse2fs: track our own writable state
` [PATCH 3/3] fuse2fs: enable the shutdown ioctl

[PATCHSET 5/6] fuse2fs: improve operation tracing
 2025-09-16  0:04 UTC  (6+ messages)
` [PATCH 1/5] fuse2fs: register as an IO flusher thread
` [PATCH 2/5] fuse2fs: hook library error message printing
` [PATCH 3/5] fuse2fs: print the function name in error messages, not the file name
` [PATCH 4/5] fuse2fs: improve tracing for file range operations
` [PATCH 5/5] fuse2fs: record thread id in debug trace data

[PATCHSET 4/6] fuse2fs: use fuseblk mode
 2025-09-16  0:03 UTC  (3+ messages)
` [PATCH 1/2] fuse2fs: mount norecovery if main block device is readonly
` [PATCH 2/2] fuse2fs: use fuseblk mode for mounting filesystems

[PATCHSET 3/6] fuse2fs: refactor mount code
 2025-09-16  0:02 UTC  (4+ messages)
` [PATCH 1/3] fuse2fs: split filesystem mounting into helper functions
` [PATCH 2/3] fuse2fs: make norecovery behavior consistent with the kernel
` [PATCH 3/3] fuse2fs: recheck support after replaying journal

[PATCHSET 2/6] fuse2fs: refactor unmount code
 2025-09-16  0:02 UTC  (4+ messages)
` [PATCH 1/3] fuse2fs: get rid of the global_fs variable
` [PATCH 2/3] fuse2fs: hoist lockfile code
` [PATCH 3/3] fuse2fs: hoist unmount code from main

[PATCHSET 1/6] fuse2fs: clean up operation startup
 2025-09-16  0:01 UTC  (10+ messages)
` [PATCH 1/9] fuse2fs: rework FUSE2FS_CHECK_CONTEXT not to rely on global_fs
` [PATCH 2/9] fuse2fs: rework checking file handles
` [PATCH 3/9] fuse2fs: rework fallocate file handle extraction
` [PATCH 4/9] fuse2fs: consolidate file handle checking in op_ioctl
` [PATCH 5/9] fuse2fs: move fs assignment closer to locking the bfl
` [PATCH 6/9] fuse2fs: clean up operation startup
` [PATCH 7/9] fuse2fs: clean up operation completion
` [PATCH 8/9] fuse2fs: clean up more boilerplate
` [PATCH 9/9] fuse2fs: collect runtime of various operations

[PATCHSET 2/2] fuse2fs: add some easy new features
 2025-09-15 22:43 UTC  (12+ messages)
` [PATCH 01/11] fuse2fs: check root directory while mounting
` [PATCH 02/11] fuse2fs: read bitmaps asynchronously during initialization
` [PATCH 03/11] fuse2fs: use file handles when possible
` [PATCH 04/11] fuse2fs: implement dir seeking
` [PATCH 05/11] fuse2fs: implement readdirplus
` [PATCH 06/11] fuse2fs: implement dirsync mode
` [PATCH 07/11] fuse2fs: only flush O_SYNC files on close
` [PATCH 08/11] fuse2fs: improve want_extra_isize handling
` [PATCH 09/11] fuse2fs: cache symlink targets in the kernel
` [PATCH 10/11] fuse2fs: constrain worker thread count
` [PATCH 11/11] fuse2fs: improve error handling behaviors

[PATCHSET 1/2] fuse2fs: round 5 bug fixes
 2025-09-15 22:40 UTC  (13+ messages)
` [PATCH 01/12] libext2fs: use F_GETFL, not F_GETFD, in unixfd_open
` [PATCH 02/12] libext2fs: don't look for O_EXCL in the F_GETFL output
` [PATCH 03/12] fuse2fs: update manpage
` [PATCH 04/12] fuse2fs: quiet down EXT2_ET_RO_FILSYS errors
` [PATCH 05/12] fuse2fs: free global_fs after a failed ext2fs_close call
` [PATCH 06/12] fuse2fs: fix memory corruption when parsing mount options
` [PATCH 07/12] fuse2fs: fix fssetxattr flags updates
` [PATCH 08/12] fuse2fs: fix default acls propagating to non-dir children
` [PATCH 09/12] fuse2fs: don't update atime when reading executable file content
` [PATCH 10/12] fuse2fs: fix in_file_group missing the primary process gid
` [PATCH 11/12] fuse2fs: work around EBUSY discard returns from dm-thinp
` [PATCH 12/12] fuse2fs: check free space when creating a symlink

[PATCH RESEND 00/62] initrd: remove classic initrd support
 2025-09-15 21:05 UTC  (73+ messages)
` [PATCH RESEND 01/62] init: remove deprecated "load_ramdisk" command line parameter, which does nothing
` [PATCH RESEND 02/62] init: remove deprecated "prompt_ramdisk" "
` [PATCH RESEND 03/62] init: sh, sparc, x86: remove unused constants RAMDISK_PROMPT_FLAG and RAMDISK_LOAD_FLAG
` [PATCH RESEND 04/62] init: x86, arm, sh, sparc: remove variable rd_image_start, which controls starting block number of initrd
` [PATCH RESEND 05/62] init: remove "ramdisk_start" command line parameter, "
` [PATCH RESEND 06/62] arm: init: remove special logic for setting brd.rd_size
` [PATCH RESEND 08/62] arm: init: remove FLAG_RDLOAD and FLAG_RDPROMPT
` [PATCH RESEND 13/62] ext2: remove ext2_image_size and associated code
` [PATCH RESEND 16/62] brd: remove "ramdisk_size" command line parameter
` [PATCH RESEND 17/62] doc: modernize Documentation/filesystems/ramfs-rootfs-initramfs.rst
` [PATCH RESEND 21/62] init: remove all mentions of root=/dev/ram*
` [PATCH RESEND 22/62] doc: remove obsolete mentions of pivot_root
` [PATCH RESEND 23/62] init: rename __initramfs_{start,size} to __builtin_initramfs_{start,size}
` [PATCH RESEND 24/62] init: remove wrong comment
` [PATCH RESEND 25/62] init: rename phys_initrd_{start,size} to phys_external_initramfs_{start,size}
` [PATCH RESEND 26/62] init: move phys_external_initramfs_{start,size} to init/initramfs.c
` [PATCH RESEND 27/62] init: alpha: remove "extern unsigned long initrd_start, initrd_end"
` [PATCH RESEND 28/62] init: alpha, arc, arm, arm64, csky, m68k, microblaze, mips, nios2, openrisc, parisc, powerpc, s390, sh, sparc, um, x86, xtensa: rename initrd_{start,end} to virt_external_initramfs_{start,end}
` [PATCH RESEND 29/62] init: move virt_external_initramfs_{start,end} to init/initramfs.c
` [PATCH RESEND 30/62] doc: remove documentation for block device 4 0
` [PATCH RESEND 31/62] init: rename initrd_below_start_ok to initramfs_below_start_ok
` [PATCH RESEND 32/62] init: move initramfs_below_start_ok to init/initramfs.c
` [PATCH RESEND 33/62] init: remove init/do_mounts_initrd.c
` [PATCH RESEND 34/62] init: inline create_dev into the only caller
` [PATCH RESEND 35/62] init: make mount_root_generic static
` [PATCH RESEND 36/62] init: make mount_root static
` [PATCH RESEND 37/62] init: remove root_mountflags from init/do_mounts.h
` [PATCH RESEND 38/62] init: remove most headers "
` [PATCH RESEND 39/62] init: make console_on_rootfs static
` [PATCH RESEND 40/62] init: rename free_initrd_mem to free_initramfs_mem
` [PATCH RESEND 41/62] init: rename reserve_initrd_mem to reserve_initramfs_mem
` [PATCH RESEND 42/62] init: rename <linux/initrd.h> to <linux/initramfs.h>
` [PATCH RESEND 43/62] setsid: inline ksys_setsid into the only caller
` [PATCH RESEND 44/62] doc: kernel-parameters: remove [RAM] from reserve_mem=
` [PATCH RESEND 45/62] doc: kernel-parameters: replace [RAM] with [INITRAMFS]
` [PATCH RESEND 46/62] init: edit docs for initramfs-related configs
` [PATCH RESEND 47/62] init: fix typo: virtul => virtual
` [PATCH RESEND 48/62] init: fix comment
` [PATCH RESEND 49/62] init: rename ramdisk_execute_command to initramfs_execute_command
` [PATCH RESEND 50/62] init: rename ramdisk_command_access to initramfs_command_access
` [PATCH RESEND 51/62] init: rename get_boot_config_from_initrd to get_boot_config_from_initramfs
` [PATCH RESEND 52/62] init: rename do_retain_initrd to retain_initramfs
` [PATCH RESEND 53/62] init: rename kexec_free_initrd to kexec_free_initramfs
` [PATCH RESEND 54/62] init: arm, x86: deal with some references to initrd
` [PATCH RESEND 55/62] init: rename CONFIG_BLK_DEV_INITRD to CONFIG_INITRAMFS
` [PATCH RESEND 56/62] init: rename CONFIG_RD_GZIP to CONFIG_INITRAMFS_DECOMPRESS_GZIP
` [PATCH RESEND 57/62] init: rename CONFIG_RD_BZIP2 to CONFIG_INITRAMFS_DECOMPRESS_BZIP2
` [PATCH RESEND 58/62] init: rename CONFIG_RD_LZMA to CONFIG_INITRAMFS_DECOMPRESS_LZMA
` [PATCH RESEND 59/62] init: rename CONFIG_RD_XZ to CONFIG_INITRAMFS_DECOMPRESS_XZ
` [PATCH RESEND 60/62] init: rename CONFIG_RD_LZO to CONFIG_INITRAMFS_DECOMPRESS_LZO
` [PATCH RESEND 61/62] init: rename CONFIG_RD_LZ4 to CONFIG_INITRAMFS_DECOMPRESS_LZ4
` [PATCH RESEND 62/62] init: rename CONFIG_RD_ZSTD to CONFIG_INITRAMFS_DECOMPRESS_ZSTD

[PATCH 00/62] initrd: remove classic initrd support
 2025-09-15 16:43 UTC  (2+ messages)

[RFC PATCH v3 0/4] ->i_state accessors
 2025-09-15 14:16 UTC  (7+ messages)
` [PATCH v3 2/4] fs: hide ->i_state handling behind accessors

[PATCH v6 00/11] Add more tests for multi fs block atomic writes
 2025-09-15 13:26 UTC  (10+ messages)
` [PATCH v6 01/12] common/rc: Add _min() and _max() helpers
` [PATCH v6 02/12] common/rc: Add fio atomic write helpers
` [PATCH v6 03/12] common/rc: Add a helper to run fsx on a given file
` [PATCH v6 09/12] generic: Add sudden shutdown tests for multi block atomic writes

BUG report: an ext4 data corruption issue in nojournal mode
 2025-09-15 12:03 UTC  (5+ messages)

[syzbot] [ext4?] kernel BUG in ext4_write_inline_data (3)
 2025-09-13 15:21 UTC 


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