linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2023-11-03 19:06:00 to 2023-11-06 17:39:21 UTC [more...]

[PATCH 00/35] nilfs2: Folio conversions
 2023-11-06 17:39 UTC  (36+ messages)
` [PATCH 01/35] nilfs2: Add nilfs_end_folio_io()
` [PATCH 02/35] nilfs2: Convert nilfs_abort_logs to use folios
` [PATCH 03/35] nilfs2: Convert nilfs_segctor_complete_write "
` [PATCH 04/35] nilfs2: Convert nilfs_forget_buffer to use a folio
` [PATCH 05/35] nilfs2: Convert to nilfs_folio_buffers_clean()
` [PATCH 06/35] nilfs2: Convert nilfs_writepage() to use a folio
` [PATCH 07/35] nilfs2: Convert nilfs_mdt_write_page() "
` [PATCH 08/35] nilfs2: Convert to nilfs_clear_folio_dirty()
` [PATCH 09/35] nilfs2: Convert to __nilfs_clear_folio_dirty()
` [PATCH 10/35] nilfs2: Convert nilfs_segctor_prepare_write to use folios
` [PATCH 11/35] nilfs2: Convert nilfs_page_mkwrite() to use a folio
` [PATCH 12/35] nilfs2: Convert nilfs_mdt_create_block "
` [PATCH 13/35] nilfs2: Convert nilfs_mdt_submit_block "
` [PATCH 14/35] nilfs2: Convert nilfs_gccache_submit_read_data "
` [PATCH 15/35] nilfs2: Convert nilfs_btnode_create_block "
` [PATCH 16/35] nilfs2: Convert nilfs_btnode_submit_block "
` [PATCH 17/35] nilfs2: Convert nilfs_btnode_delete "
` [PATCH 18/35] nilfs2: Convert nilfs_btnode_prepare_change_key "
` [PATCH 19/35] nilfs2: Convert nilfs_btnode_commit_change_key "
` [PATCH 20/35] nilfs2: Convert nilfs_btnode_abort_change_key "
` [PATCH 21/35] nilfs2: Remove page_address() from nilfs_set_link
` [PATCH 22/35] nilfs2: Remove page_address() from nilfs_add_link
` [PATCH 23/35] nilfs2: Remove page_address() from nilfs_delete_entry
` [PATCH 24/35] nilfs2: Return the mapped address from nilfs_get_page()
` [PATCH 25/35] nilfs2: Pass the mapped address to nilfs_check_page()
` [PATCH 26/35] nilfs2: Switch to kmap_local for directory handling
` [PATCH 27/35] nilfs2: Add nilfs_get_folio()
` [PATCH 28/35] nilfs2: Convert nilfs_readdir to use a folio
` [PATCH 29/35] nilfs2: Convert nilfs_find_entry "
` [PATCH 30/35] nilfs2: Convert nilfs_rename() to use folios
` [PATCH 31/35] nilfs2: Convert nilfs_add_link() to use a folio
` [PATCH 32/35] nilfs2: Convert nilfs_empty_dir() "
` [PATCH 33/35] nilfs2: Convert nilfs_make_empty() "
` [PATCH 34/35] nilfs2: Convert nilfs_prepare_chunk() and nilfs_commit_chunk() to folios
` [PATCH 35/35] nilfs2: Convert nilfs_page_bug() to nilfs_folio_bug()

[PATCH 0/3] fanotify support for btrfs sub-volumes
 2023-11-06 17:13 UTC  (26+ messages)

[PATCH v4 00/23] security: Move IMA and EVM to the LSM infrastructure
 2023-11-06 16:40 UTC  (8+ messages)
` [PATCH v4 12/23] security: Introduce file_post_open hook
` [PATCH v4 17/23] security: Introduce inode_post_remove_acl hook
` [PATCH v4 20/23] ima: Move IMA-Appraisal to LSM infrastructure

[PATCH v14 00/34] KVM: guest_memfd() and per-page attributes
 2023-11-06 16:24 UTC  (60+ messages)
` [PATCH 01/34] KVM: Tweak kvm_hva_range and hva_handler_t to allow reusing for gfn ranges
` [PATCH 02/34] KVM: Assert that mmu_invalidate_in_progress *never* goes negative
` [PATCH 03/34] KVM: Use gfn instead of hva for mmu_notifier_retry
` [PATCH 04/34] KVM: WARN if there are dangling MMU invalidations at VM destruction
` [PATCH 05/34] KVM: PPC: Drop dead code related to KVM_ARCH_WANT_MMU_NOTIFIER
` [PATCH 06/34] KVM: PPC: Return '1' unconditionally for KVM_CAP_SYNC_MMU
` [PATCH 07/34] KVM: Convert KVM_ARCH_WANT_MMU_NOTIFIER to CONFIG_KVM_GENERIC_MMU_NOTIFIER
` [PATCH 08/34] KVM: Introduce KVM_SET_USER_MEMORY_REGION2
` [PATCH 09/34] KVM: Add KVM_EXIT_MEMORY_FAULT exit to report faults to userspace
` [PATCH 10/34] KVM: Add a dedicated mmu_notifier flag for reclaiming freed memory
` [PATCH 11/34] KVM: Drop .on_unlock() mmu_notifier hook
` [PATCH 12/34] KVM: Introduce per-page memory attributes
` [PATCH 13/34] mm: Add AS_UNMOVABLE to mark mapping as completely unmovable
` [PATCH 14/34] fs: Rename anon_inode_getfile_secure() and anon_inode_getfd_secure()
` [PATCH 15/34] KVM: Add KVM_CREATE_GUEST_MEMFD ioctl() for guest-specific backing memory
` [PATCH 16/34] KVM: x86: "Reset" vcpu->run->exit_reason early in KVM_RUN
` [PATCH 17/34] KVM: x86: Disallow hugepages when memory attributes are mixed
` [PATCH 18/34] KVM: x86/mmu: Handle page fault for private memory
` [PATCH 19/34] KVM: Drop superfluous __KVM_VCPU_MULTIPLE_ADDRESS_SPACE macro
` [PATCH 20/34] KVM: Allow arch code to track number of memslot address spaces per VM
` [PATCH 21/34] KVM: x86: Add support for "protected VMs" that can utilize private memory
` [PATCH 22/34] KVM: selftests: Drop unused kvm_userspace_memory_region_find() helper
` [PATCH 23/34] KVM: selftests: Convert lib's mem regions to KVM_SET_USER_MEMORY_REGION2
` [PATCH 24/34] KVM: selftests: Add support for creating private memslots
` [PATCH 25/34] KVM: selftests: Add helpers to convert guest memory b/w private and shared
` [PATCH 26/34] KVM: selftests: Add helpers to do KVM_HC_MAP_GPA_RANGE hypercalls (x86)
` [PATCH 27/34] KVM: selftests: Introduce VM "shape" to allow tests to specify the VM type
` [PATCH 28/34] KVM: selftests: Add GUEST_SYNC[1-6] macros for synchronizing more data
` [PATCH 29/34] KVM: selftests: Add x86-only selftest for private memory conversions
` [PATCH 30/34] KVM: selftests: Add KVM_SET_USER_MEMORY_REGION2 helper
` [PATCH 31/34] KVM: selftests: Expand set_memory_region_test to validate guest_memfd()
` [PATCH 32/34] KVM: selftests: Add basic selftest for guest_memfd()
` [PATCH 33/34] KVM: selftests: Test KVM exit behavior for private memory/access
` [PATCH 34/34] KVM: selftests: Add a memory region subtest to validate invalid flags
` [PATCH 35/34] KVM: Prepare for handling only shared mappings in mmu_notifier events
` [PATCH 36/34] KVM: Add transparent hugepage support for dedicated guest memory

[PATCH 0/7 v3] block: Add config option to not allow writing to mounted devices
 2023-11-06 15:57 UTC  (9+ messages)
` [PATCH 2/7] block: Remove blkdev_get_by_*() functions
` [PATCH 3/7] block: Add config option to not allow writing to mounted devices
` [PATCH 5/7] fs: Block writes to mounted block devices

[PATCH v13 00/35] KVM: guest_memfd() and per-page attributes
 2023-11-06 15:56 UTC  (20+ messages)
` [PATCH v13 16/35] KVM: Add KVM_CREATE_GUEST_MEMFD ioctl() for guest-specific backing memory
` [PATCH v13 20/35] KVM: x86/mmu: Handle page fault for private memory
` [PATCH v13 23/35] KVM: x86: Add support for "protected VMs" that can utilize "
` [PATCH v13 27/35] KVM: selftests: Add helpers to convert guest memory b/w private and shared

[GIT PULL for v6.7] autofs updates
 2023-11-06 14:50 UTC  (7+ messages)

[PATCH 0/2] fuse: Rename DIRECT_IO_{RELAX -> ALLOW_MMAP}
 2023-11-06 14:08 UTC  (3+ messages)

Heisenbug: I/O freeze can be resolved by cat $task/cmdline of unrelated process
 2023-11-06 13:58 UTC  (6+ messages)

[PATCH v2] dcache: remove unnecessary NULL check in dget_dlock()
 2023-11-06 13:44 UTC 

[PATCH v4 0/6] querying mount attributes
 2023-11-06 13:33 UTC  (4+ messages)

[BUG REPORT] next-20231102: generic/311 fails on XFS with external log
 2023-11-06 12:49 UTC  (17+ messages)
` [PATCH] fs: handle freezing from multiple devices
` [PATCH v2 0/2] Handle multi device freezing
` [PATCH v2 1/2] fs: remove dead check
` [PATCH v2 2/2] fs: handle freezing from multiple devices

[PATCH v1 0/2] fuse: Introduce sysfs APIs to flush or resend pending requests
 2023-11-06 12:03 UTC  (5+ messages)

Inquiry from MikolajGroup Hungary
 2023-11-06 10:11 UTC 

[PATCH] vfs: remove a redundant might_sleep in wait_on_inode
 2023-11-06  9:45 UTC  (2+ messages)

[resend PATCH v4] fuse: share lookup state between submount and its parent
 2023-11-06  9:41 UTC  (2+ messages)

[syzbot] [reiserfs?] possible deadlock in reiserfs_dirty_inode
 2023-11-06  8:34 UTC 

[GIT PULL] overlayfs update for 6.7
 2023-11-06  6:50 UTC 

[PATCH v10] exec: Fix dead-lock in de_thread with ptrace_attach
 2023-11-06  6:41 UTC  (4+ messages)
` [PATCH v11] "
  ` [PATCH v12] "
    ` [PATCH v13] "

[RFC] simplifying fast_dput(), dentry_kill() et.al
 2023-11-06  5:53 UTC  (7+ messages)

[PATCH v9 bpf-next 00/17] BPF token and BPF FS-based delegation
 2023-11-06  5:01 UTC  (16+ messages)
` [PATCH v9 bpf-next 01/17] bpf: align CAP_NET_ADMIN checks with bpf_capable() approach
` [PATCH v9 bpf-next 07/17] bpf: take into account BPF token when fetching helper protos
` [PATCH v9 bpf-next 09/17] bpf,lsm: refactor bpf_prog_alloc/bpf_prog_free LSM hooks
  ` [PATCH v9 9/17] "
` [PATCH v9 bpf-next 11/17] bpf,lsm: add BPF token "
  ` [PATCH v9 "
` [PATCH v9 bpf-next 13/17] libbpf: add BPF token support to bpf_map_create() API
` [PATCH v9 bpf-next 14/17] libbpf: add BPF token support to bpf_btf_load() API
` [PATCH v9 bpf-next 15/17] libbpf: add BPF token support to bpf_prog_load() API
` [PATCH v9 bpf-next 16/17] selftests/bpf: add BPF token-enabled tests
` [PATCH v9 bpf-next 17/17] bpf,selinux: allocate bpf_security_struct per BPF token
  ` [PATCH v9 "

[PATCH v9 bpf-next 10/17] bpf,lsm: refactor bpf_map_alloc/bpf_map_free LSM hooks
 2023-11-06  5:01 UTC  (2+ messages)
` [PATCH v9 "

[syzbot] [btrfs?] kernel BUG in __extent_writepage_io
 2023-11-06  1:31 UTC 

[GIT PULL] bcachefs for 6.7-rc1, part 2
 2023-11-06  1:15 UTC 

[syzbot] [btrfs?] KASAN: slab-use-after-free Read in btrfs_qgroup_account_extent
 2023-11-05 16:00 UTC  (4+ messages)

[syzbot] Monthly ntfs report (Nov 2023)
 2023-11-05 13:07 UTC 

[syzbot] Monthly btrfs report (Nov 2023)
 2023-11-05 13:07 UTC 

[PATCH] fuse: fix stale data issue of virtiofs with dax
 2023-11-05 12:33 UTC  (2+ messages)

[syzbot] [btrfs?] kernel BUG in btrfs_try_granting_tickets
 2023-11-04 23:58 UTC 

[PATCH 22/32] vfs: inode cache conversion to hash-bl
 2023-11-04 20:51 UTC  (11+ messages)
` (subset) "

[PATCH] MAINTAINERS: Add Joel Granados as co-maintainer for proc sysctl
 2023-11-04 20:16 UTC  (2+ messages)

[linux-next:master] BUILD REGRESSION e27090b1413ff236ca1aec26d6b022149115de2c
 2023-11-04 11:38 UTC 

[viro-vfs:work.dcache 16/16] fs/dcache.c:1081:27: error: passing 'struct list_head' to parameter of incompatible type 'struct list_head *'; take the address with &
 2023-11-04  3:29 UTC 

[viro-vfs:work.dcache 16/16] fs/dcache.c:1081:48: error: incompatible type for argument 2 of 'to_shrink_list'
 2023-11-04  2:01 UTC 

[PATCH v4 6/7] samples/landlock: Add support for LANDLOCK_ACCESS_FS_IOCTL
 2023-11-04  1:50 UTC  (2+ messages)

[PATCH v2 0/6] shmem: high order folios support in write path
 2023-11-03 23:12 UTC  (5+ messages)
` [RFC PATCH 00/11] "
    ` [RFC PATCH 01/11] XArray: add cmpxchg order test

[PATCH] dcache: remove unnecessary NULL check in dget_dlock()
 2023-11-03 19:37 UTC  (2+ 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).