linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
 messages from 2024-08-01 02:43:03 to 2024-08-01 15:09:14 UTC [more...]

[PATCH v3 00/25] Generic `Allocator` support for Rust
 2024-08-01 15:09 UTC  (32+ messages)
` [PATCH v3 01/25] rust: alloc: add `Allocator` trait
` [PATCH v3 02/25] rust: alloc: separate `aligned_size` from `krealloc_aligned`
` [PATCH v3 03/25] rust: alloc: rename `KernelAllocator` to `Kmalloc`
` [PATCH v3 04/25] rust: alloc: implement `Allocator` for `Kmalloc`
` [PATCH v3 05/25] rust: alloc: add module `allocator_test`
` [PATCH v3 06/25] rust: alloc: implement `Vmalloc` allocator
` [PATCH v3 07/25] rust: alloc: implement `KVmalloc` allocator
` [PATCH v3 09/25] rust: alloc: implement kernel `Box`
` [PATCH v3 11/25] rust: alloc: remove `BoxExt` extension
` [PATCH v3 14/25] rust: alloc: import kernel `Box` type in init.rs
` [PATCH v3 15/25] rust: alloc: implement kernel `Vec` type
` [PATCH v3 16/25] rust: alloc: implement `IntoIterator` for `Vec`

[PATCH net-next v12 01/14] mm: page_frag: add a test module for page_frag
 2024-08-01 14:50 UTC  (7+ messages)
` [PATCH net-next v12 04/14] mm: page_frag: add '_va' suffix to page_frag API

[PATCH v3] rust: mm: add abstractions for mm_struct and vm_area_struct
 2024-08-01 14:37 UTC  (5+ messages)

[vbabka:slab-kfree_rcu-destroy-v1r0] [mm, slab] df00e211c9: WARNING:at_mm/slab_common.c:#kmem_cache_kfree_rcu_destroy_workfn
 2024-08-01 14:30 UTC  (3+ messages)

Race condition observed between page migration and page fault handling on arm64 machines
 2024-08-01 14:25 UTC  (12+ messages)

[PATCH] kernel/fs: last check for exec credentials on NOEXEC mount
 2024-08-01 14:07 UTC  (2+ messages)

[PATCH v3] mm/hugetlb: fix hugetlb vs. core-mm PT locking
 2024-08-01 13:52 UTC  (7+ messages)

[linus:master] [mm] c0bff412e6: stress-ng.clone.ops_per_sec -2.9% regression
 2024-08-01 13:44 UTC  (10+ messages)

[PATCH] libfs: fix infinite directory reads for offset dir
 2024-08-01 13:38 UTC  (9+ messages)

[PATCH v2 0/1] mm: introduce MADV_DEMOTE/MADV_PROMOTE
 2024-08-01 13:05 UTC  (3+ messages)

[PATCH v10 00/40] arm64/gcs: Provide support for GCS in userspace
 2024-08-01 12:07 UTC  (41+ messages)
` [PATCH v10 01/40] arm64/mm: Restructure arch_validate_flags() for extensibility
` [PATCH v10 02/40] prctl: arch-agnostic prctl for shadow stack
` [PATCH v10 03/40] mman: Add map_shadow_stack() flags
` [PATCH v10 04/40] arm64: Document boot requirements for Guarded Control Stacks
` [PATCH v10 05/40] arm64/gcs: Document the ABI "
` [PATCH v10 06/40] arm64/sysreg: Add definitions for architected GCS caps
` [PATCH v10 07/40] arm64/gcs: Add manual encodings of GCS instructions
` [PATCH v10 08/40] arm64/gcs: Provide put_user_gcs()
` [PATCH v10 09/40] arm64/gcs: Provide basic EL2 setup to allow GCS usage at EL0 and EL1
` [PATCH v10 10/40] arm64/cpufeature: Runtime detection of Guarded Control Stack (GCS)
` [PATCH v10 11/40] arm64/mm: Allocate PIE slots for EL0 guarded control stack
` [PATCH v10 12/40] mm: Define VM_SHADOW_STACK for arm64 when we support GCS
` [PATCH v10 13/40] arm64/mm: Map pages for guarded control stack
` [PATCH v10 14/40] KVM: arm64: Manage GCS access and registers for guests
` [PATCH v10 15/40] arm64/idreg: Add overrride for GCS
` [PATCH v10 16/40] arm64/hwcap: Add hwcap "
` [PATCH v10 17/40] arm64/traps: Handle GCS exceptions
` [PATCH v10 18/40] arm64/mm: Handle GCS data aborts
` [PATCH v10 19/40] arm64/gcs: Context switch GCS state for EL0
` [PATCH v10 20/40] arm64/gcs: Ensure that new threads have a GCS
` [PATCH v10 21/40] arm64/gcs: Implement shadow stack prctl() interface
` [PATCH v10 22/40] arm64/mm: Implement map_shadow_stack()
` [PATCH v10 23/40] arm64/signal: Set up and restore the GCS context for signal handlers
` [PATCH v10 24/40] arm64/signal: Expose GCS state in signal frames
` [PATCH v10 25/40] arm64/ptrace: Expose GCS via ptrace and core files
` [PATCH v10 26/40] arm64: Add Kconfig for Guarded Control Stack (GCS)
` [PATCH v10 27/40] kselftest/arm64: Verify the GCS hwcap
` [PATCH v10 28/40] kselftest: Provide shadow stack enable helpers for arm64
` [PATCH v10 29/40] selftests/clone3: Enable arm64 shadow stack testing
` [PATCH v10 30/40] kselftest/arm64: Add GCS as a detected feature in the signal tests
` [PATCH v10 31/40] kselftest/arm64: Add framework support for GCS to signal handling tests
` [PATCH v10 32/40] kselftest/arm64: Allow signals tests to specify an expected si_code
` [PATCH v10 33/40] kselftest/arm64: Always run signals tests with GCS enabled
` [PATCH v10 34/40] kselftest/arm64: Add very basic GCS test program
` [PATCH v10 35/40] kselftest/arm64: Add a GCS test program built with the system libc
` [PATCH v10 36/40] kselftest/arm64: Add test coverage for GCS mode locking
` [PATCH v10 37/40] kselftest/arm64: Add GCS signal tests
` [PATCH v10 38/40] kselftest/arm64: Add a GCS stress test
` [PATCH v10 39/40] kselftest/arm64: Enable GCS for the FP stress tests
` [PATCH v10 40/40] KVM: selftests: arm64: Add GCS registers to get-reg-list

[PATCH v5 0/2] allow KASAN to detect UAF in SLAB_TYPESAFE_BY_RCU slabs
 2024-08-01 12:54 UTC  (5+ messages)
` [PATCH v5 1/2] kasan: catch invalid free before SLUB reinitializes the object

[RFC v11 08/14] mm: page_frag: some minor refactoring before adding new API
 2024-08-01 12:53 UTC  (10+ messages)

[BUG] mm/cgroupv2: memory.min may lead to an OOM error
 2024-08-01 11:40 UTC  (3+ messages)

[PATCH v4 00/29] arm64: Permission Overlay Extension
 2024-08-01 11:01 UTC  (5+ messages)
` [PATCH v4 13/29] arm64: convert protection key into vm_flags and pgprot values

[PATCH v2 0/3] mm: tlb swap entries batch async release
 2024-08-01 10:33 UTC  (5+ messages)

[RFC PATCH 0/8] Unmapping guest_memfd from Direct Map
 2024-08-01 10:30 UTC  (9+ messages)
` [RFC PATCH 8/8] kvm: gmem: Allow restricted userspace mappings

[PATCH v2 0/9] Unify hugetlb into arch_get_unmapped_area functions
 2024-08-01 10:11 UTC  (9+ messages)
` [PATCH v2 6/9] mm: Make hugetlb mappings go through mm_get_unmapped_area_vmflags

[PATCH v5 0/9] mm: swap: mTHP swap allocator base on swap cluster order
 2024-08-01 10:06 UTC  (4+ messages)

[linux-next:master 1060/2655] drivers/gpu/drm/nouveau/nv10_fence.c:35:40: sparse: sparse: incorrect type in initializer (different address spaces)
 2024-08-01 10:02 UTC 

alloc_tag was not set WARNING: CPU: 1 PID: 0 at include/linux/alloc_tag.h:130 alloc_tagging_slab_free_hook+0x17f/0x1ec
 2024-08-01  9:46 UTC 

[PATCH v6 00/11] mm: multi-gen LRU: Walk secondary MMU page tables while aging
 2024-08-01  9:36 UTC  (5+ messages)
` [PATCH v6 04/11] mm: Add missing mmu_notifier_clear_young for !MMU_NOTIFIER
` [PATCH v6 05/11] mm: Add fast_only bool to test_young and clear_young MMU notifiers

[PATCH] lib: test_hmm: Use min() to improve dmirror_exclusive()
 2024-08-01  9:33 UTC 

[PATCH v2] mm/migrate: fix deadlock in migrate_pages_batch() on large folios
 2024-08-01  9:32 UTC  (2+ messages)

[PATCH] mm/cma: Change the addition of totalcma_pages in the cma_init_reserved_mem
 2024-08-01  9:28 UTC  (2+ messages)

[PATCH 0/1] mm: swap: add nr argument in swapcache_prepare() and swapcache_clear()
 2024-08-01  9:20 UTC  (12+ messages)
` [PATCH 1/1] mm: swap: add nr argument in swapcache_prepare and swapcache_clear to support large folios

[RFC PATCH v2 00/10] KVM: Restricted mapping of guest_memfd at the host and pKVM/arm64 support
 2024-08-01  9:01 UTC  (11+ messages)
` [RFC PATCH v2 01/10] KVM: Introduce kvm_gmem_get_pfn_locked(), which retains the folio lock
` [RFC PATCH v2 02/10] KVM: Add restricted support for mapping guestmem by the host
` [RFC PATCH v2 03/10] KVM: Implement kvm_(read|/write)_guest_page for private memory slots
` [RFC PATCH v2 04/10] KVM: Add KVM capability to check if guest_memfd can be mapped by the host
` [RFC PATCH v2 05/10] KVM: selftests: guest_memfd mmap() test when mapping is allowed
` [RFC PATCH v2 06/10] KVM: arm64: Skip VMA checks for slots without userspace address
` [RFC PATCH v2 07/10] KVM: arm64: Do not allow changes to private memory slots
` [RFC PATCH v2 08/10] KVM: arm64: Handle guest_memfd()-backed guest page faults
` [RFC PATCH v2 09/10] KVM: arm64: arm64 has private memory support when config is enabled
` [RFC PATCH v2 10/10] KVM: arm64: Enable private memory kconfig for arm64

[PATCH RESEND v2 0/9] Merge arm64/riscv hugetlbfs contpte support
 2024-08-01  8:57 UTC  (7+ messages)

[PATCH v7 0/5] x86/pkeys: update PKRU to enable pkey 0 before
 2024-08-01  8:57 UTC  (7+ messages)
` [PATCH v7 1/5] x86/pkeys: Add PKRU as a parameter in signal handling functions
` [PATCH v7 2/5] x86/pkeys: Add helper functions to update PKRU on the sigframe
` [PATCH v7 3/5] x86/pkeys: Update PKRU to enable all pkeys before XSAVE
` [PATCH v7 4/5] x86/pkeys: Restore altstack before sigcontext
` [PATCH v7 5/5] selftests/mm: Add new testcases for pkeys

[linux-next:master] [nfsd] 48d45b8a92: UBSAN:array-index-out-of-bounds_in_fs/nfsd/nfssvc.c
 2024-08-01  8:24 UTC 

[PATCH v4 00/22] mm/zsmalloc: add zpdesc memory descriptor for zswap.zpool
 2024-08-01  8:06 UTC  (9+ messages)
` [PATCH v4 22/22] mm/zsmalloc: update comments for page->zpdesc changes

[PATCH v2] mm: list_lru: fix UAF for memory cgroup
 2024-08-01  8:06 UTC  (2+ messages)

[PATCH v2 0/1] mm: introduce MADV_DEMOTE/MADV_PROMOTE
 2024-08-01  8:06 UTC  (3+ messages)
` [PATCH v2 1/1] "

[syzbot] [jfs?] general protection fault in dbFree
 2024-08-01  8:00 UTC 

[PATCH v5 0/2] mm: zswap: fixes for global shrinker
 2024-08-01  7:40 UTC  (3+ messages)
` [PATCH v5 2/2] mm: zswap: fix global shrinker error handling logic

[PATCH v17 00/35] Drivers for Gunyah hypervisor
 2024-08-01  6:56 UTC  (11+ messages)
` [PATCH v17 19/35] arch/mm: Export direct {un,}map functions
    `  "

[PATCH 2/2] mm: tlb: add tlb swap entries batch async release
 2024-08-01  6:54 UTC  (3+ messages)

[PATCH 0/1] mm: introduce MADV_DEMOTE/MADV_PROMOTE
 2024-08-01  6:50 UTC  (2+ messages)
` [PATCH 1/1] "

[PATCH] mm: fix compilation warning in patchs
 2024-08-01  6:50 UTC 

[PATCH 0/6] mm: split underutilized THPs
 2024-08-01  6:36 UTC  (12+ messages)

[PATCH v3 00/26] mm: introduce numa_memblks
 2024-08-01  6:08 UTC  (27+ messages)
` [PATCH v3 01/26] mm: move kernel/numa.c to mm/
` [PATCH v3 02/26] MIPS: sgi-ip27: make NODE_DATA() the same as on all other architectures
` [PATCH v3 03/26] MIPS: sgi-ip27: ensure node_possible_map only contains valid nodes
` [PATCH v3 04/26] MIPS: sgi-ip27: drop HAVE_ARCH_NODEDATA_EXTENSION
` [PATCH v3 05/26] MIPS: loongson64: rename __node_data to node_data
` [PATCH v3 06/26] MIPS: loongson64: drop HAVE_ARCH_NODEDATA_EXTENSION
` [PATCH v3 07/26] mm: drop CONFIG_HAVE_ARCH_NODEDATA_EXTENSION
` [PATCH v3 08/26] arch, mm: move definition of node_data to generic code
` [PATCH v3 09/26] arch, mm: pull out allocation of NODE_DATA "
` [PATCH v3 10/26] x86/numa: simplify numa_distance allocation
` [PATCH v3 11/26] x86/numa: use get_pfn_range_for_nid to verify that node spans memory
` [PATCH v3 12/26] x86/numa: move FAKE_NODE_* defines to numa_emu
` [PATCH v3 13/26] x86/numa_emu: simplify allocation of phys_dist
` [PATCH v3 14/26] x86/numa_emu: split __apicid_to_node update to a helper function
` [PATCH v3 15/26] x86/numa_emu: use a helper function to get MAX_DMA32_PFN
` [PATCH v3 16/26] x86/numa: numa_{add,remove}_cpu: make cpu parameter unsigned
` [PATCH v3 17/26] mm: introduce numa_memblks
` [PATCH v3 18/26] mm: move numa_distance and related code from x86 to numa_memblks
` [PATCH v3 19/26] mm: introduce numa_emulation
` [PATCH v3 20/26] mm: numa_memblks: introduce numa_memblks_init
` [PATCH v3 21/26] mm: numa_memblks: make several functions and variables static
` [PATCH v3 22/26] mm: numa_memblks: use memblock_{start,end}_of_DRAM() when sanitizing meminfo
` [PATCH v3 23/26] of, numa: return -EINVAL when no numa-node-id is found
` [PATCH v3 24/26] arch_numa: switch over to numa_memblks
` [PATCH v3 25/26] mm: make range-to-target_node lookup facility a part of numa_memblks
` [PATCH v3 26/26] docs: move numa=fake description to kernel-parameters.txt

[PATCH v2 1/5] memblock test: fix implicit declaration of function 'virt_to_phys'
 2024-08-01  6:09 UTC  (4+ messages)

arch/powerpc/mm/nohash/tlb_64e.c:36:5: sparse: sparse: symbol 'mmu_pte_psize' was not declared. Should it be static?
 2024-08-01  5:06 UTC 

[PATCH 5/6] mm: add selftests to split_huge_page() to verify unmap/zap of zero pages
 2024-08-01  4:45 UTC  (2+ messages)

[linux-next:pending-fixes 107/314] drivers/net/ethernet/meta/fbnic/fbnic_devlink.c:17:undefined reference to `devlink_priv'
 2024-08-01  4:15 UTC 

[PATCH v5 0/4] mm: support mTHP swap-in for zRAM-like swapfile
 2024-08-01  3:00 UTC  (10+ messages)
` [PATCH v5 4/4] mm: Introduce per-thpsize swapin control policy

[RFC PATCH] binfmt_elf: Dump smaller VMAs first in ELF cores
 2024-08-01  2:52 UTC  (2+ messages)

[PATCH] mm: list_lru: fix UAF for memory cgroup
 2024-08-01  2:42 UTC  (7+ 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).