linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2022-05-19 13:54:18 to 2022-05-22 12:52:05 UTC [more...]

[RFC] what to do with IOCB_DSYNC?
 2022-05-22 12:51 UTC  (22+ messages)

[PATCH v3] fs/proc/base.c: fix incorrect fmode_t casts
 2022-05-22 12:09 UTC  (2+ messages)

[PATCH v3] fanotify: fix incorrect fmode_t casts
 2022-05-22 12:08 UTC  (2+ messages)

[PATCH v3] fs/open.c: fix incorrect fmode_t cast in build_open_how
 2022-05-22 12:08 UTC  (2+ messages)

[PATCH 0/5] kallsyms: make kallsym APIs more safe with scnprintf
 2022-05-22  9:43 UTC  (9+ messages)
    ` [PATCH 1/5] kallsyms: pass buffer size in sprint_* APIs
    ` [PATCH 2/5] kallsyms: replace sprintf with scnprintf
    ` [PATCH 3/5] arch:hexagon/powerpc: use KSYM_NAME_LEN as array size
    ` [PATCH 4/5] kallsyms: pass buffer size argument in *lookup* APIs
    ` [PATCH 5/5] kallsyms: remove unsed API lookup_symbol_attrs

[RFC PATCH v4 00/17] io-uring/xfs: support async buffered writes
 2022-05-22  7:34 UTC  (26+ messages)
` [RFC PATCH v4 01/17] mm: Move starting of background writeback into the main balancing loop
` [RFC PATCH v4 02/17] mm: Move updates of dirty_exceeded into one place
` [RFC PATCH v4 03/17] mm: Prepare balance_dirty_pages() for async buffered writes
` [RFC PATCH v4 04/17] mm: Add balance_dirty_pages_ratelimited_flags() function
` [RFC PATCH v4 05/17] iomap: Add gfp parameter to iomap_page_create()
` [RFC PATCH v4 06/17] iomap: Add async buffered write support
` [RFC PATCH v4 07/17] iomap: Use balance_dirty_pages_ratelimited_flags in iomap_write_iter
` [RFC PATCH v4 08/17] fs: Add check for async buffered writes to generic_write_checks
` [RFC PATCH v4 09/17] fs: Split off remove_needs_file_privs() __remove_file_privs()
` [RFC PATCH v4 10/17] fs: Split off file_needs_update_time and __file_update_time
` [RFC PATCH v4 11/17] fs: Add async write file modification handling
` [RFC PATCH v4 12/17] fs: Optimization for concurrent file time updates
` [RFC PATCH v4 13/17] io_uring: Add support for async buffered writes
` [RFC PATCH v4 14/17] io_uring: Add tracepoint for short writes
` [RFC PATCH v4 15/17] xfs: Add iomap async buffered write support
` [RFC PATCH v4 16/17] xfs: Add "
` [RFC PATCH v4 17/17] xfs: Enable "

[PATCH] kernel/sysctl.c: Clean up indentation, replace spaces with tab
 2022-05-22  5:29 UTC 

[PATCH v2] sysctl: handle table->maxlen properly for proc_dobool
 2022-05-22  5:26 UTC 

[PATCH v6 0/8] KVM: mm: fd-based approach for supporting KVM guest private memory
 2022-05-22  4:03 UTC  (12+ messages)
` [PATCH v6 1/8] mm: Introduce memfile_notifier
` [PATCH v6 2/8] mm/shmem: Support memfile_notifier
` [PATCH v6 3/8] mm/memfd: Introduce MFD_INACCESSIBLE flag
` [PATCH v6 4/8] KVM: Extend the memslot to support fd-based private memory
` [PATCH v6 5/8] KVM: Add KVM_EXIT_MEMORY_FAULT exit
` [PATCH v6 6/8] KVM: Handle page fault for private memory
` [PATCH v6 7/8] KVM: Enable and expose KVM_MEM_PRIVATE
` [PATCH v6 8/8] memfd_create.2: Describe MFD_INACCESSIBLE flag

RFC: Ioctl v2
 2022-05-21 19:45 UTC  (6+ messages)

[GIT PULL] erofs updates for 5.19-rc1 (fscache part inclusive)
 2022-05-21 14:19 UTC 

[PATCH] writeback: fix typo in comment
 2022-05-21 11:10 UTC 

[PATCH] afs: Fix afs_getattr() to refetch file status if callback break occurred
 2022-05-21  7:18 UTC 

[PATCH] afs: Fix afs_getattr() to refetch file status if callback break occurred
 2022-05-21  6:44 UTC  (2+ messages)

[PATCH RFC v6 07/21] dept: Apply Dept to seqlock
 2022-05-21  5:25 UTC  (2+ messages)

[PATCH RFC v6 00/21] DEPT(Dependency Tracker)
 2022-05-21  3:24 UTC  (3+ messages)
` [PATCH RFC v6 02/21] dept: Implement Dept(Dependency Tracker)

[PATCH RESEND] watch_queue: fix IOC_WATCH_QUEUE_SET_SIZE alloc error paths
 2022-05-20 22:37 UTC 

[syzbot] INFO: task hung in jbd2_journal_commit_transaction (3)
 2022-05-20 21:45 UTC  (5+ messages)

[PATCH] cred: Propagate security_prepare_creds() error code
 2022-05-20 21:27 UTC 

[PATCHES] stuff from the last cycle that missed the window
 2022-05-20 19:02 UTC  (14+ messages)
` [PATCH] fs/namei.c:reserve_stack(): tidy up the call of try_to_unlazy()
` [PATCH] get rid of dead code in legitimize_root()
  ` [PATCH] uninline may_mount() and don't opencode it in fspick(2)/fsopen(2)
    ` [PATCH] linux/mount.h: trim includes
      ` [PATCH] m->mnt_root->d_inode->i_sb is a weird way to spell m->mnt_sb
        ` [PATCH] blob_to_mnt(): kern_unmount() is needed to undo kern_mount()
          ` [PATCH] move mount-related externs from fs.h to mount.h

[RFC PATCH v3 00/18] io-uring/xfs: support async buffered writes
 2022-05-20 18:32 UTC  (24+ messages)
` [RFC PATCH v3 01/18] block: Add check for async buffered writes to generic_write_checks
` [RFC PATCH v3 02/18] iomap: Add iomap_page_create_gfp to allocate iomap_pages
` [RFC PATCH v3 03/18] iomap: Use iomap_page_create_gfp() in __iomap_write_begin
` [RFC PATCH v3 04/18] iomap: Add async buffered write support
` [RFC PATCH v3 15/18] mm: Add balance_dirty_pages_ratelimited_async() function
` [RFC PATCH v3 16/18] iomap: Use balance_dirty_pages_ratelimited_flags in iomap_write_iter
` [RFC PATCH v3 18/18] xfs: Enable async buffered write support

[PATCH v4 00/13] support non power of 2 zoned devices
 2022-05-20 17:18 UTC  (24+ messages)
    ` [dm-devel] "
    ` [PATCH v4 08/13] btrfs:zoned: make sb for npo2 zone devices align with sb log offsets

[PATCH RFC 0/5] Implement a TLS handshake upcall
 2022-05-20 16:39 UTC  (3+ messages)
` [PATCH RFC 2/5] tls: build proto after context has been initialized

[RFC PATCH] procfs: Add file path and size to /proc/<pid>/fdinfo
 2022-05-20 16:12 UTC  (7+ messages)

[PATCH v9 1/4] fs: add mode_strip_sgid() helper
 2022-05-20 16:10 UTC  (4+ messages)
` [PATCH v9 2/4] fs: Add missing umask strip in vfs_tmpfile
` [PATCH v9 3/4] fs: move S_ISGID stripping into the vfs
` [PATCH v9 4/4] ceph: rely on vfs for setgid stripping

kernel BUG in ext4_writepages
 2022-05-20 14:50 UTC  (6+ messages)

[PATCH v2] netfs: Fix gcc-12 warning by embedding vfs inode in netfs_i_context
 2022-05-20 14:47 UTC 

[PATCH 0/4] kdevops: use linux-kdevops for the main tree
 2022-05-20 14:44 UTC  (3+ messages)
` [PATCH 3/4] playbooks: add a common playbook a git reset task for kdevops

[RFC PATCH v2 0/7] make statx() return I/O alignment information
 2022-05-20 11:52 UTC  (6+ messages)
` [RFC PATCH v2 1/7] statx: add "

[PATCH v13] vfs: fix copy_file_range regression in cross-fs copies
 2022-05-20 10:33 UTC  (2+ messages)

warning for EOPNOTSUPP vfs_copy_file_range
 2022-05-20  7:52 UTC  (9+ messages)

[RFC PATCH] vfs: allow ->atomic_open() on positive
 2022-05-20  6:48 UTC  (7+ messages)

[PATCHv2 0/3] direct io alignment relax
 2022-05-20  6:10 UTC  (27+ messages)
` [PATCHv2 1/3] block/bio: remove duplicate append pages code
` [PATCHv2 3/3] block: relax direct io memory alignment

[RFC PATCH] mm, pmem, xfs: Introduce MF_MEM_REMOVE for unbind
 2022-05-20  5:37 UTC  (4+ messages)
` [RFC PATCH v2] "

[PATCH v3 0/1] FUSE: Allow non-extending parallel direct writes
 2022-05-20  4:34 UTC  (2+ messages)
` [PATCH v3 1/1] FUSE: Allow non-extending parallel direct writes on the same file

[PATCH v4] fcntl: Add 32bit filesystem mode
 2022-05-19 21:01 UTC  (3+ messages)

[PATCH v5 0/3] FUSE: Implement atomic lookup + open/create
 2022-05-19 20:47 UTC  (6+ messages)
      ` [fuse-devel] "

[PATCH] nfs: Fix fscache volume key rendering for endianness
 2022-05-19 20:19 UTC  (3+ messages)

[PATCH] jfs: Release even dirty metapages on invalidate
 2022-05-19 19:44 UTC 

[PATCH v2 0/6] userfaultfd: add /dev/userfaultfd for fine grained access control
 2022-05-19 19:13 UTC  (10+ messages)
` [PATCH v2 3/6] userfaultfd: selftests: modify selftest to use /dev/userfaultfd
` [PATCH v2 4/6] userfaultfd: update documentation to describe /dev/userfaultfd
` [PATCH v2 5/6] userfaultfd: selftests: make /dev/userfaultfd testing configurable

[RFC: kdevops] Standardizing on failure rate nomenclature for expunges
 2022-05-19 16:54 UTC  (13+ messages)

[ANNOUNCE] xfs-linux: iomap-for-next updated to e9c3a8e820ed
 2022-05-19 16:41 UTC 

[PATCH 1/2] netfs: ->cleanup() op is always given a rreq pointer now
 2022-05-19 15:36 UTC  (2+ messages)

[PATCH v4 00/13] support non power of 2 zoned devices
 2022-05-19 15:25 UTC  (2+ messages)

[PATCH v4] writeback: Fix inode->i_io_list not be protected by inode->i_lock error
 2022-05-19 14:32 UTC  (2+ messages)
` [writeback] b47372dac9: BUG:soft_lockup-CPU##stuck_for#s![kworker/u16:#:#]

[PATCH] sysctl: handle table->maxlen properly for proc_dobool
 2022-05-19 14:10 UTC  (3+ messages)


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).