public inbox for linux-riscv@lists.infradead.org
 help / color / mirror / Atom feed
 messages from 2024-10-09 10:41:21 to 2024-10-10 20:31:29 UTC [more...]

[PATCH v13 00/85] KVM: Stop grabbing references to PFNMAP'd pages
 2024-10-10 18:24 UTC  (50+ messages)
` [PATCH v13 01/85] KVM: Drop KVM_ERR_PTR_BAD_PAGE and instead return NULL to indicate an error
` [PATCH v13 02/85] KVM: Allow calling kvm_release_page_{clean,dirty}() on a NULL page pointer
` [PATCH v13 03/85] KVM: Add kvm_release_page_unused() API to put pages that KVM never consumes
` [PATCH v13 04/85] KVM: x86/mmu: Skip the "try unsync" path iff the old SPTE was a leaf SPTE
` [PATCH v13 05/85] KVM: x86/mmu: Don't overwrite shadow-present MMU SPTEs when prefaulting
` [PATCH v13 06/85] KVM: x86/mmu: Invert @can_unsync and renamed to @synchronizing
` [PATCH v13 07/85] KVM: x86/mmu: Mark new SPTE as Accessed when synchronizing existing SPTE
` [PATCH v13 08/85] KVM: x86/mmu: Mark folio dirty when creating SPTE, not when zapping/modifying
` [PATCH v13 09/85] KVM: x86/mmu: Mark page/folio accessed only when zapping leaf SPTEs
` [PATCH v13 10/85] KVM: x86/mmu: Use gfn_to_page_many_atomic() when prefetching indirect PTEs
` [PATCH v13 11/85] KVM: Rename gfn_to_page_many_atomic() to kvm_prefetch_pages()
` [PATCH v13 12/85] KVM: Drop @atomic param from gfn=>pfn and hva=>pfn APIs
` [PATCH v13 13/85] KVM: Annotate that all paths in hva_to_pfn() might sleep
` [PATCH v13 14/85] KVM: Return ERR_SIGPENDING from hva_to_pfn() if GUP returns -EGAIN
` [PATCH v13 15/85] KVM: Drop extra GUP (via check_user_page_hwpoison()) to detect poisoned page
` [PATCH v13 16/85] KVM: Replace "async" pointer in gfn=>pfn with "no_wait" and error code
` [PATCH v13 17/85] KVM: x86/mmu: Drop kvm_page_fault.hva, i.e. don't track intermediate hva
` [PATCH v13 18/85] KVM: Drop unused "hva" pointer from __gfn_to_pfn_memslot()
` [PATCH v13 20/85] KVM: Remove pointless sanity check on @map param to kvm_vcpu_(un)map()
` [PATCH v13 21/85] KVM: Explicitly initialize all fields at the start of kvm_vcpu_map()
` [PATCH v13 22/85] KVM: Use NULL for struct page pointer to indicate mremapped memory
` [PATCH v13 28/85] KVM: Move kvm_{set,release}_page_{clean,dirty}() helpers up in kvm_main.c
` [PATCH v13 29/85] KVM: pfncache: Precisely track refcounted pages
` [PATCH v13 30/85] KVM: Migrate kvm_vcpu_map() to kvm_follow_pfn()
` [PATCH v13 36/85] KVM: x86: Don't fault-in APIC access page during initial allocation
` [PATCH v13 37/85] KVM: x86/mmu: Add "mmu" prefix fault-in helpers to free up generic names
` [PATCH v13 38/85] KVM: x86/mmu: Put direct prefetched pages via kvm_release_page_clean()
` [PATCH v13 39/85] KVM: x86/mmu: Add common helper to handle prefetching SPTEs
` [PATCH v13 40/85] KVM: x86/mmu: Add helper to "finish" handling a guest page fault
` [PATCH v13 43/85] KVM: Add kvm_faultin_pfn() to specifically service guest page faults
` [PATCH v13 44/85] KVM: x86/mmu: Convert page fault paths to kvm_faultin_pfn()
` [PATCH v13 46/85] KVM: guest_memfd: Provide "struct page" as output from kvm_gmem_get_pfn()
` [PATCH v13 47/85] KVM: x86/mmu: Put refcounted pages instead of blindly releasing pfns
` [PATCH v13 48/85] KVM: x86/mmu: Don't mark unused faultin pages as accessed
` [PATCH v13 50/85] KVM: VMX: Hold mmu_lock until page is released when updating APIC access page
` [PATCH v13 51/85] KVM: VMX: Use __kvm_faultin_page() to get APIC access page/pfn
` [PATCH v13 58/85] KVM: RISC-V: Mark "struct page" pfns accessed before dropping mmu_lock
` [PATCH v13 59/85] KVM: RISC-V: Use kvm_faultin_pfn() when mapping pfns into the guest
` [PATCH v13 60/85] KVM: PPC: Use __kvm_faultin_pfn() to handle page faults on Book3s HV
` [PATCH v13 62/85] KVM: PPC: Drop unused @kvm_ro param from kvmppc_book3s_instantiate_page()
` [PATCH v13 63/85] KVM: PPC: Book3S: Mark "struct page" pfns dirty/accessed after installing PTE
` [PATCH v13 65/85] KVM: LoongArch: Mark "struct page" pfns dirty only in "slow" page fault path
` [PATCH v13 67/85] KVM: LoongArch: Mark "struct page" pfn accessed before dropping mmu_lock
` [PATCH v13 75/85] KVM: Convert gfn_to_page() to use kvm_follow_pfn()
` [PATCH v13 80/85] KVM: s390: Use kvm_release_page_dirty() to unpin "struct page" memory
` [PATCH v13 81/85] KVM: Make kvm_follow_pfn.refcounted_page a required field
` [PATCH v13 83/85] KVM: arm64: Don't mark "struct page" accessed when making SPTE young
` [PATCH v13 84/85] KVM: Drop APIs that manipulate "struct page" via pfns
` [PATCH v13 85/85] KVM: Don't grab reference on VM_MIXEDMAP pfns that have a "struct page"

[PATCH v5 0/8] x86/module: use large ROX pages for text allocations
 2024-10-10 17:18 UTC  (25+ messages)
` [PATCH v5 1/8] mm: vmalloc: group declarations depending on CONFIG_MMU together
` [PATCH v5 2/8] mm: vmalloc: don't account for number of nodes for HUGE_VMAP allocations
` [PATCH v5 3/8] asm-generic: introduce text-patching.h
` [PATCH v5 4/8] module: prepare to handle ROX allocations for text
` [PATCH v5 5/8] arch: introduce set_direct_map_valid_noflush()
` [PATCH v5 6/8] x86/module: perpare module loading for ROX allocations of text
` [PATCH v5 7/8] execmem: add support for cache of large ROX pages
` [PATCH v5 8/8] x86/module: enable ROX caches for module text
  ` Bisected: "

[PATCH v13 00/40] arm64/gcs: Provide support for GCS in userspace
 2024-10-10 17:16 UTC  (5+ messages)
` [PATCH v13 11/40] arm64/gcs: Provide basic EL2 setup to allow GCS usage at EL0 and EL1

[PATCH 0/9] vdso: Remove timekeeper argument and includes
 2024-10-10 16:01 UTC  (11+ messages)
` [PATCH 1/9] vdso: Remove timekeeper argument of __arch_update_vsyscall()
` [PATCH 2/9] arm: vdso: Remove timekeeper includes
` [PATCH 3/9] arm64: vdso: Remove timekeeper include
` [PATCH 4/9] powerpc/vdso: Remove timekeeper includes
` [PATCH 5/9] riscv: vdso: Remove timekeeper include
` [PATCH 6/9] s390/vdso: Remove timekeeper includes
` [PATCH 7/9] x86/vdso: Remove timekeeper include
` [PATCH 8/9] LoongArch: vdso: Remove timekeeper includes
` [PATCH 9/9] MIPS: "

[PATCH v2 0/3] riscv: interrupt-controller: Add T-HEAD C900 ACLINT SSWI
 2024-10-10 16:18 UTC  (6+ messages)
` [PATCH v2 1/3] dt-bindings: interrupt-controller: Add Sophgo SG2044 "
` [PATCH v2 2/3] irqchip: add T-HEAD C900 ACLINT SSWI driver
` [PATCH v2 3/3] riscv: defconfig: Enable T-HEAD C900 ACLINT SSWI drivers

[PATCH 0/3] riscv: interrupt-controller: Add T-HEAD C900 ACLINT SSWI
 2024-10-10 16:16 UTC  (5+ messages)
` [PATCH 1/3] dt-bindings: interrupt-controller: Add Sophgo SG2044 "

Github RISC-V CI (BoF follow-up)
 2024-10-10 16:16 UTC  (2+ messages)

[PATCH v5 0/2] Add board support for Sipeed LicheeRV Nano
 2024-10-10 15:23 UTC  (4+ messages)
` [PATCH v5 1/2] riscv: dts: sophgo: Add initial SG2002 SoC device tree
` [PATCH v5 2/2] riscv: dts: sophgo: Add LicheeRV Nano board "

[PATCH] cfi: rust: pass -Zpatchable-function-entry on all architectures
 2024-10-10 14:48 UTC  (13+ messages)

[PATCH] riscv: Prevent a bad reference count on CPU nodes
 2024-10-10 14:32 UTC  (5+ messages)

[PATCH 3/3] riscv: add PREEMPT_LAZY support
 2024-10-10 12:25 UTC  (4+ messages)
    ` [PATCH v2 "

[PATCH 3/3] riscv: Allow to enable PREEMPT_RT
 2024-10-10 12:21 UTC  (5+ messages)

[PATCH v3 00/14] KVM: selftests: Morph max_guest_mem to mmu_stress
 2024-10-10 11:41 UTC  (16+ messages)
` [PATCH v3 01/14] KVM: Move KVM_REG_SIZE() definition to common uAPI header
` [PATCH v3 02/14] KVM: selftests: Disable strict aliasing
` [PATCH v3 03/14] KVM: selftests: Return a value from vcpu_get_reg() instead of using an out-param
` [PATCH v3 04/14] KVM: selftests: Assert that vcpu_{g,s}et_reg() won't truncate
` [PATCH v3 05/14] KVM: selftests: Check for a potential unhandled exception iff KVM_RUN succeeded
` [PATCH v3 06/14] KVM: selftests: Rename max_guest_memory_test to mmu_stress_test
` [PATCH v3 07/14] KVM: selftests: Only muck with SREGS on x86 in mmu_stress_test
` [PATCH v3 08/14] KVM: selftests: Compute number of extra pages needed "
` [PATCH v3 09/14] KVM: sefltests: Explicitly include ucall_common.h in mmu_stress_test.c
` [PATCH v3 10/14] KVM: selftests: Enable mmu_stress_test on arm64
` [PATCH v3 11/14] KVM: selftests: Use vcpu_arch_put_guest() in mmu_stress_test
` [PATCH v3 12/14] KVM: selftests: Precisely limit the number of guest loops "
` [PATCH v3 13/14] KVM: selftests: Add a read-only mprotect() phase to mmu_stress_test
` [PATCH v3 14/14] KVM: selftests: Verify KVM correctly handles mprotect(PROT_READ)

[PATCH v2] mmc: sdhci-of-dwcmshc: Prevent stale command interrupt handling
 2024-10-10 11:38 UTC  (3+ messages)

provide generic page_to_phys and phys_to_page implementations
 2024-10-10  8:37 UTC  (6+ messages)
` [PATCH] asm-generic: "

[PATCH 00/28] vdso: Preparations for generic data storage
 2024-10-10  7:55 UTC  (31+ messages)
` [PATCH 01/28] csky/vdso: Remove gettimeofday() and friends from VDSO
` [PATCH 02/28] csky/vdso: Remove arch_vma_name()
` [PATCH 03/28] s390/vdso: Drop LBASE_VDSO
` [PATCH 04/28] arm64: vdso: "
` [PATCH 05/28] arm64: vdso: Use only one single vvar mapping
` [PATCH 06/28] riscv: "
` [PATCH 07/28] arm: vdso: Remove assembly for datapage access
` [PATCH 08/28] LoongArch: vDSO: Use vdso/datapage.h to access vDSO data
` [PATCH 09/28] MIPS: vdso: Avoid name conflict around "vdso_data"
` [PATCH 10/28] x86/mm/mmap: Remove arch_vma_name()
` [PATCH 11/28] x86: vdso: Use __arch_get_vdso_data() to access vdso data
` [PATCH 12/28] x86: vdso: Place vdso_data at beginning of vvar page
` [PATCH 13/28] x86: vdso: Access rng data from kernel without vvar
` [PATCH 14/28] x86: vdso: Allocate vvar page from C code
` [PATCH 15/28] x86: vdso: Access timens vdso data without vvar.h
` [PATCH 16/28] x86: vdso: Access rng "
` [PATCH 17/28] x86: vdso: Move the rng offset to vsyscall.h
` [PATCH 18/28] x86: vdso: Access vdso data without vvar.h
` [PATCH 19/28] x86: vdso: Delete vvar.h
` [PATCH 20/28] x86: vdso: Split virtual clock pages into dedicated mapping
` [PATCH 21/28] powerpc: vdso: Remove offset comment from 32bit vdso_arch_data
` [PATCH 22/28] powerpc: procfs: Propagate error of remap_pfn_range()
` [PATCH 23/28] powerpc/pseries/lparcfg: Fix printing of system_active_processors
` [PATCH 24/28] powerpc/pseries/lparcfg: Use num_possible_cpus() for potential processors
` [PATCH 25/28] powerpc: Add kconfig option for the systemcfg page
` [PATCH 26/28] powerpc: Split systemcfg data out of vdso data page
` [PATCH 27/28] powerpc: Split systemcfg struct definitions out from vdso
` [PATCH 28/28] vdso: Rename struct arch_vdso_data to arch_vdso_time_data

[PATCH] pinctrl: th1520: Use common error handling code in th1520_pinctrl_dt_node_to_map()
 2024-10-10  6:33 UTC 

[PATCH] tools: add forwarding header for arch/riscv/include/asm/fence.h
 2024-10-10  6:11 UTC  (3+ messages)

[PATCH] net/9p/usbg: Fix build error
 2024-10-10  2:06 UTC  (4+ messages)

[PATCH bpf] riscv, bpf: Fix possible infinite tailcall when CONFIG_CFI_CLANG is enabled
 2024-10-10  1:30 UTC  (4+ messages)

[PATCH v6 00/33] riscv control-flow integrity for usermode
 2024-10-10  0:02 UTC  (13+ messages)
` [PATCH v6 02/33] mm: helper `is_shadow_stack_vma` to check shadow stack vma
` [PATCH v6 06/33] riscv/Kconfig: enable HAVE_EXIT_THREAD for riscv
` [PATCH v6 11/33] riscv/mm : ensure PROT_WRITE leads to VM_READ | VM_WRITE
` [PATCH v6 18/33] prctl: arch-agnostic prctl for indirect branch tracking
` [PATCH v6 19/33] riscv: Implements arch agnostic shadow stack prctls

[PATCH v3] selftests: sched_ext: Add sched_ext as proper selftest target
 2024-10-09 16:46 UTC  (3+ messages)

[PATCH 3/3] riscv: Allow to enable PREEMPT_RT
 2024-10-09 16:47 UTC  (2+ messages)

[PATCH v1 00/11] Redo PolarFire SoC's mailbox/clock devicestrees and related code
 2024-10-09 16:12 UTC  (3+ messages)
` [PATCH v1 03/11] dt-bindings: mfd: syscon document the non simple-mfd syscon on PolarFire SoC
  ` (subset) "

[PATCH v2 0/2] ftrace: Make ftrace_regs abstract and consolidate code
 2024-10-09 15:31 UTC  (5+ messages)
` [PATCH v2 2/2] ftrace: Consolidate ftrace_regs accessor functions for archs using pt_regs

[PATCH v1] RISC-V: disallow gcc + rust builds
 2024-10-09 12:52 UTC  (6+ messages)

[PATCH v3 0/3] pinctrl: th1520: Improve code quality
 2024-10-09 12:42 UTC  (2+ messages)

[RISCV] [BUG] CPU topology issue on TH1520 on Kernel 5.10.113-th15020
 2024-10-09 10:54 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