linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2023-03-31 16:12:23 to 2023-04-04 14:00:21 UTC [more...]

[PATCH 0/6] Avoid the mmap lock for fault-around
 2023-04-04 13:58 UTC  (2+ messages)
` [PATCH 3/6] mm: Move FAULT_FLAG_VMA_LOCK check into handle_pte_fault()

[RFC PATCH v3 0/2] Providing mount in memfd_restricted() syscall
 2023-04-04 13:53 UTC  (7+ messages)
` [RFC PATCH v3 1/2] mm: restrictedmem: Allow userspace to specify mount for memfd_restricted
` [RFC PATCH v3 2/2] selftests: restrictedmem: Check hugepage-ness of shmem file backing restrictedmem fd

[PATCH v1 0/5] Landlock support for UML
 2023-04-04 13:52 UTC  (4+ messages)

[PATCH 0/6] shmem: Add user and group quota support for tmpfs
 2023-04-04 13:48 UTC  (18+ messages)
` [PATCH 1/6] shmem: make shmem_inode_acct_block() return error
` [PATCH 2/6] shmem: make shmem_get_inode() return ERR_PTR instead of NULL
` [PATCH 3/6] quota: Check presence of quota operation structures instead of ->quota_read and ->quota_write callbacks
` [PATCH 4/6] shmem: prepare shmem quota infrastructure
` [PATCH 5/6] shmem: quota support
` [PATCH 6/6] Add default quota limit mount options

[PATCH] splice: report related fsnotify events
 2023-04-04 13:45 UTC  (9+ messages)

[PATCH v3 01/10] kobject: introduce kobject_del_and_put()
 2023-04-04 13:30 UTC  (2+ messages)

[ANNOUNCE] util-linux v2.39-rc2
 2023-04-04 12:50 UTC 

[PATCH v3 00/55] splice, net: Replace sendpage with sendmsg(MSG_SPLICE_PAGES)
 2023-04-04 10:52 UTC  (62+ messages)
` [PATCH v3 01/55] netfs: Fix netfs_extract_iter_to_sg() for ITER_UBUF/IOVEC
` [PATCH v3 02/55] iov_iter: Remove last_offset member
` [PATCH v3 03/55] net: Declare MSG_SPLICE_PAGES internal sendmsg() flag
` [PATCH v3 12/55] tls: Inline do_tcp_sendpages()
` [PATCH v3 13/55] siw: "
` [PATCH v3 14/55] tcp: Fold do_tcp_sendpages() into tcp_sendpage_locked()
` [PATCH v3 15/55] ip, udp: Support MSG_SPLICE_PAGES
` [PATCH v3 16/55] ip, udp: Make sendmsg(MSG_SPLICE_PAGES) copy unspliceable data
` [PATCH v3 17/55] ip6, udp6: Support MSG_SPLICE_PAGES
` [PATCH v3 18/55] udp: Convert udp_sendpage() to use MSG_SPLICE_PAGES
` [PATCH v3 19/55] af_unix: Support MSG_SPLICE_PAGES
` [PATCH v3 20/55] af_unix: Make sendmsg(MSG_SPLICE_PAGES) copy unspliceable data
` [PATCH v3 21/55] crypto: af_alg: Pin pages rather than ref'ing if appropriate
` [PATCH v3 22/55] crypto: af_alg: Use netfs_extract_iter_to_sg() to create scatterlists
` [PATCH v3 23/55] crypto: af_alg: Indent the loop in af_alg_sendmsg()
` [PATCH v3 24/55] crypto: af_alg: Support MSG_SPLICE_PAGES
` [PATCH v3 25/55] crypto: af_alg: Convert af_alg_sendpage() to use MSG_SPLICE_PAGES
` [PATCH v3 26/55] crypto: af_alg/hash: Support MSG_SPLICE_PAGES
` [PATCH v3 27/55] tls/device: "
` [PATCH v3 28/55] tls/device: Convert tls_device_sendpage() to use MSG_SPLICE_PAGES
` [PATCH v3 29/55] tls/sw: Support MSG_SPLICE_PAGES
` [PATCH v3 30/55] tls/sw: Convert tls_sw_sendpage() to use MSG_SPLICE_PAGES
` [PATCH v3 31/55] chelsio: Support MSG_SPLICE_PAGES
` [PATCH v3 32/55] chelsio: Convert chtls_sendpage() to use MSG_SPLICE_PAGES
` [PATCH v3 33/55] kcm: Support MSG_SPLICE_PAGES
` [PATCH v3 34/55] kcm: Convert kcm_sendpage() to use MSG_SPLICE_PAGES
` [PATCH v3 35/55] splice, net: Use sendmsg(MSG_SPLICE_PAGES) rather than ->sendpage()
` [PATCH v3 36/55] splice, net: Reimplement splice_to_socket() to pass multiple bufs to sendmsg()
` [PATCH v3 37/55] Remove file->f_op->sendpage
` [PATCH v3 38/55] siw: Use sendmsg(MSG_SPLICE_PAGES) rather than sendpage to transmit
` [PATCH v3 39/55] ceph: Use sendmsg(MSG_SPLICE_PAGES) rather than sendpage
` [PATCH v3 40/55] iscsi: "
` [PATCH v3 41/55] iscsi: Assume "sendpage" is okay in iscsi_tcp_segment_map()
` [PATCH v3 42/55] tcp_bpf: Make tcp_bpf_sendpage() go through tcp_bpf_sendmsg(MSG_SPLICE_PAGES)
` [PATCH v3 43/55] net: Use sendmsg(MSG_SPLICE_PAGES) not sendpage in skb_send_sock()
` [PATCH v3 44/55] algif: Remove hash_sendpage*()
` [PATCH v3 45/55] ceph: Use sendmsg(MSG_SPLICE_PAGES) rather than sendpage()
` [PATCH v3 46/55] rds: Use sendmsg(MSG_SPLICE_PAGES) rather than sendpage
` [PATCH v3 47/55] dlm: "
` [PATCH v3 48/55] sunrpc: Use sendmsg(MSG_SPLICE_PAGES) rather then sendpage
` [PATCH v3 49/55] nvme: "
` [PATCH v3 50/55] kcm: "
` [PATCH v3 51/55] smc: Drop smc_sendpage() in favour of smc_sendmsg() + MSG_SPLICE_PAGES
` [PATCH v3 52/55] ocfs2: Use sendmsg(MSG_SPLICE_PAGES) rather than sendpage()
` [PATCH v3 53/55] drbd: Use sendmsg(MSG_SPLICE_PAGES) rather than sendmsg()
` [PATCH v3 54/55] drdb: Send an entire bio in a single sendmsg
` [PATCH v3 55/55] sock: Remove ->sendpage*() in favour of sendmsg(MSG_SPLICE_PAGES)
` Trivial TLS server
` Trivial TLS client
` Test program for AF_KCM
` Is AF_KCM functional?

FW: [LSF/MM/BPF TOPIC] SMDK inspired MM changes for CXL
 2023-04-04  8:31 UTC  (9+ messages)
  ` RE(2): "
        `  "

[PATCH v2 00/19] bio: check return values of bio_add_page
 2023-04-04  8:26 UTC  (14+ messages)
` [PATCH v2 05/19] md: use __bio_add_page to add single page
` [PATCH v2 06/19] md: raid5-log: "
` [PATCH v2 07/19] md: raid5: use __bio_add_page to add single page to new bio
` [PATCH v2 15/19] md: check for failure when adding pages in alloc_behind_master_bio
` [PATCH v2 16/19] md: raid1: use __bio_add_page for adding single page to bio
` [PATCH v2 17/19] md: raid1: check if adding pages to resync bio fails

[PATCH v11 0/2] mm, pmem, xfs: Introduce MF_MEM_REMOVE for unbind
 2023-04-04  4:33 UTC  (2+ messages)

[PATCH] MAINTAINERS: mark ecryptfs as orphan state
 2023-04-04  2:57 UTC  (5+ messages)

[linus:master] [swap_state] 5649d113ff: vm-scalability.throughput -33.1% regression
 2023-04-04  2:36 UTC  (3+ messages)

[RFC PATCH] Legacy mount option "sloppy" support
 2023-04-04  1:52 UTC  (5+ messages)

[PATCH v4 0/3] Ignore non-LRU-based reclaim in memcg reclaim
 2023-04-04  0:13 UTC  (4+ messages)
` [PATCH v4 1/3] mm: vmscan: move set_task_reclaim_state() after global_reclaim()
` [PATCH v4 2/3] mm: vmscan: refactor updating reclaimed pages in reclaim_state
` [PATCH v4 3/3] mm: vmscan: ignore non-LRU-based reclaim in memcg reclaim

[PATCH v2 0/8] Introduce provisioning primitives for thinly provisioned storage
 2023-04-03 22:57 UTC  (6+ messages)
` [PATCH v2 2/7] dm: Add support for block provisioning

[RFC PATCH 0/3] permit write-sealed memfd read-only shared mappings
 2023-04-03 22:28 UTC  (4+ messages)
` [RFC PATCH 1/3] mm: drop the assumption that VM_SHARED always implies writable
` [RFC PATCH 2/3] mm: update seal_check_[future_]write() to include F_SEAL_WRITE as well
` [RFC PATCH 3/3] mm: perform the mapping_map_writable() check after call_mmap()

[PATCH mm-unstable RFC 0/5] cgroup: eliminate atomic rstat
 2023-04-03 22:04 UTC  (7+ messages)
` [PATCH mm-unstable RFC 1/5] writeback: move wb_over_bg_thresh() call outside lock section
` [PATCH mm-unstable RFC 2/5] memcg: flush stats non-atomically in mem_cgroup_wb_stats()
` [PATCH mm-unstable RFC 3/5] memcg: calculate root usage from global state
` [PATCH mm-unstable RFC 4/5] memcg: remove mem_cgroup_flush_stats_atomic()
` [PATCH mm-unstable RFC 5/5] cgroup: remove cgroup_rstat_flush_atomic()

[PATCH v2 0/5] remove page_endio()
 2023-04-03 21:19 UTC  (7+ messages)
    ` [PATCH v2 1/5] zram: always chain bio to the parent in read_from_bdev_async
    ` [PATCH v2 2/5] orangefs: use folios in orangefs_readahead
    ` [PATCH v2 3/5] mpage: split bi_end_io callback for reads and writes
    ` [PATCH v2 4/5] mpage: use folios in bio end_io handler
    ` [PATCH v2 5/5] filemap: remove page_endio()

[RFC PATCH v2 0/9] fuse: API for Checkpoint/Restore
 2023-04-03 21:14 UTC  (11+ messages)
` [RFC PATCH v2 1/9] fuse: move FUSE_DEFAULT_* defines to fuse common header
` [RFC PATCH v2 2/9] fuse: add const qualifiers to common fuse helpers
` [RFC PATCH v2 3/9] fuse: add fuse connection generation
` [RFC PATCH v2 4/9] fuse: handle stale inode connection in fuse_queue_forget
` [RFC PATCH v2 5/9] fuse: move fuse connection flags to the separate structure
` [RFC PATCH v2 6/9] fuse: take fuse connection generation into account
` [RFC PATCH v2 7/9] fuse: add fuse device ioctl(FUSE_DEV_IOC_REINIT)
` [RFC PATCH v2 8/9] namespace: add sb_revalidate_bindmounts helper
` [RFC PATCH v2 9/9] fuse: add fuse device ioctl(FUSE_DEV_IOC_BM_REVAL)

[PATCH v3 0/7] Split a folio to any lower order folios
 2023-04-03 20:18 UTC  (8+ messages)
` [PATCH v3 1/7] mm/memcg: use order instead of nr in split_page_memcg()
` [PATCH v3 2/7] mm/page_owner: use order instead of nr in split_page_owner()
` [PATCH v3 3/7] mm: memcg: make memcg huge page split support any order split
` [PATCH v3 4/7] mm: page_owner: add support for splitting to any order in split page_owner
` [PATCH v3 5/7] mm: thp: split huge page to any lower order pages
` [PATCH v3 6/7] mm: truncate: split huge page cache page to a non-zero order if possible
` [PATCH v3 7/7] mm: huge_memory: enable debugfs to split huge pages to any order

[RFC PATCH 0/9] fuse: API for Checkpoint/Restore
 2023-04-03 16:54 UTC 

[GIT PULL] vfs fixes
 2023-04-03 16:51 UTC  (2+ messages)

[PATCH v2] fs/buffer: Remove redundant assignment to err
 2023-04-03 16:41 UTC  (8+ messages)

[RFC PATCH 0/9] fuse: API for Checkpoint/Restore
 2023-04-03 14:56 UTC  (7+ messages)
` [RFC PATCH 7/9] fuse: add fuse device ioctl(FUSE_DEV_IOC_REINIT)

[PATCH] smaps: Fix defined but not used smaps_shmem_walk_ops
 2023-04-03 14:52 UTC  (2+ messages)

two little cleanups for the for-6.4/splice branch
 2023-04-03 14:25 UTC  (4+ messages)
` [PATCH 1/3] iov_iter: remove iov_iter_get_pages
` [PATCH 2/3] iov_iter: remove iov_iter_get_pages_alloc
` [PATCH 3/3] iov_iter: remove the extraction_flags argument to __iov_iter_get_pages_alloc

[PATCH 5.10 041/173] keys: Do not cache key in task struct if key is requested from kernel thread
 2023-04-03 14:07 UTC 

RFC: Filesystem metadata in HIGHMEM
 2023-04-03 14:22 UTC  (2+ messages)

[PATCH 5.4 015/104] keys: Do not cache key in task struct if key is requested from kernel thread
 2023-04-03 14:08 UTC 

[syzbot] [ntfs3?] UBSAN: shift-out-of-bounds in attr_set_size
 2023-04-03 13:03 UTC 

[PATCHSET for-next 0/2] Flag file systems as supporting parallel dio writes
 2023-04-03 12:24 UTC  (2+ messages)

[linux-next:master] [splice] 3eb3c59b12: stress-ng.sendfile.ops_per_sec 8.4% improvement
 2023-04-03  8:43 UTC 

FW: [LSF/MM/BPF TOPIC] SMDK inspired MM changes for CXL
 2023-04-03  8:34 UTC  (6+ messages)
  `  "

[RFC PATCH v2 37/48] ceph: Use sendmsg(MSG_SPLICE_PAGES) rather than sendpage()
 2023-04-03  8:32 UTC  (6+ messages)
` [RFC PATCH v2 00/48] splice, net: Replace sendpage with sendmsg(MSG_SPLICE_PAGES)

[PATCH] fs: consolidate duplicate dt_type helpers
 2023-04-03  7:28 UTC  (2+ messages)

[syzbot] [cluster?] possible deadlock in freeze_super (2)
 2023-04-03  6:23 UTC  (2+ messages)

[syzbot] [fs?] KMSAN: kernel-infoleak in sys_name_to_handle_at (2)
 2023-04-03  6:23 UTC 

[linus:master] [vfs] 981ee95cc1: stress-ng.access.ops_per_sec 382.1% improvement
 2023-04-03  6:15 UTC 

[syzbot] [ext4?] KASAN: slab-out-of-bounds Write in ext4_write_inline_data_end (2)
 2023-04-03  5:32 UTC 

[PATCH v5 0/4] fs/ufs: Replace kmap() with kmap_local_page
 2023-04-03  5:27 UTC  (4+ messages)

[PATCHSET v6b 0/11] Turn single segment imports into ITER_UBUF
 2023-04-02 23:37 UTC  (7+ messages)

[PATCH] fs/9p: Add new options to Documentation
 2023-04-02 18:43 UTC  (6+ messages)

[RFC PATCH v2 1/2] mm: restrictedmem: Allow userspace to specify mount for memfd_restricted
 2023-03-31 23:56 UTC  (2+ messages)

[PATCH v3 0/3] Ignore non-LRU-based reclaim in memcg reclaim
 2023-03-31 22:11 UTC  (4+ messages)
` [PATCH v3 2/3] mm: vmscan: refactor updating reclaimed pages in reclaim_state

[syzbot] [xfs?] WARNING in xfs_bmap_extents_to_btree
 2023-03-31 20:46 UTC  (6+ messages)

[PATCHv3 bpf-next 0/9] mm/bpf/perf: Store build id in file object
 2023-03-31 20:27 UTC  (8+ 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).