linux-riscv.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
 messages from 2022-11-01 23:31:08 to 2022-11-07 14:51:03 UTC [more...]

[RFC PATCH v1] riscv: support for hardware breakpoints/watchpoints
 2022-11-07 14:32 UTC  (5+ messages)

Słowa kluczowe do wypozycjonowania
 2022-11-07  9:15 UTC 

[PATCH] Documentation: riscv: tableize memory layout
 2022-11-07  7:26 UTC  (5+ messages)

[PATCH 00/44] KVM: Rework kvm_init() and hardware enabling
 2022-11-07  3:23 UTC  (89+ messages)
` [PATCH 01/44] KVM: Register /dev/kvm as the _very_ last thing during initialization
` [PATCH 02/44] KVM: Initialize IRQ FD after arch hardware setup
` [PATCH 03/44] KVM: Allocate cpus_hardware_enabled "
` [PATCH 04/44] KVM: Teardown VFIO ops earlier in kvm_exit()
` [PATCH 05/44] KVM: s390: Unwind kvm_arch_init() piece-by-piece() if a step fails
` [PATCH 06/44] KVM: s390: Move hardware setup/unsetup to init/exit
` [PATCH 07/44] KVM: x86: Do timer initialization after XCR0 configuration
` [PATCH 08/44] KVM: x86: Move hardware setup/unsetup to init/exit
` [PATCH 09/44] KVM: Drop arch hardware (un)setup hooks
` [PATCH 10/44] KVM: VMX: Clean up eVMCS enabling if KVM initialization fails
` [PATCH 11/44] KVM: x86: Move guts of kvm_arch_init() to standalone helper
` [PATCH 12/44] KVM: VMX: Do _all_ initialization before exposing /dev/kvm to userspace
` [PATCH 13/44] KVM: x86: Serialize vendor module initialization (hardware setup)
` [PATCH 14/44] KVM: arm64: Simplify the CPUHP logic
` [PATCH 15/44] KVM: arm64: Free hypervisor allocations if vector slot init fails
` [PATCH 16/44] KVM: arm64: Unregister perf callbacks if hypervisor finalization fails
` [PATCH 17/44] KVM: arm64: Do arm/arch initialiation without bouncing through kvm_init()
` [PATCH 18/44] KVM: arm64: Mark kvm_arm_init() and its unique descendants as __init
` [PATCH 19/44] KVM: MIPS: Hardcode callbacks to hardware virtualization extensions
` [PATCH 20/44] KVM: MIPS: Setup VZ emulation? directly from kvm_mips_init()
` [PATCH 21/44] KVM: MIPS: Register die notifier prior to kvm_init()
` [PATCH 22/44] KVM: RISC-V: Do arch init directly in riscv_kvm_init()
` [PATCH 23/44] KVM: RISC-V: Tag init functions and data with __init, __ro_after_init
` [PATCH 24/44] KVM: PPC: Move processor compatibility check to module init
` [PATCH 25/44] KVM: s390: Do s390 specific init without bouncing through kvm_init()
` [PATCH 26/44] KVM: s390: Mark __kvm_s390_init() and its descendants as __init
` [PATCH 27/44] KVM: Drop kvm_arch_{init,exit}() hooks
` [PATCH 28/44] KVM: VMX: Make VMCS configuration/capabilities structs read-only after init
` [PATCH 29/44] KVM: x86: Do CPU compatibility checks in x86 code
` [PATCH 30/44] KVM: Drop kvm_arch_check_processor_compat() hook
` [PATCH 31/44] KVM: x86: Use KBUILD_MODNAME to specify vendor module name
` [PATCH 32/44] KVM: x86: Unify pr_fmt to use module name for all KVM modules
` [PATCH 33/44] KVM: x86: Do VMX/SVM support checks directly in vendor code
` [PATCH 34/44] KVM: VMX: Shuffle support checks and hardware enabling code around
` [PATCH 35/44] KVM: SVM: Check for SVM support in CPU compatibility checks
` [PATCH 36/44] KVM: x86: Do compatibility checks when onlining CPU
` [PATCH 37/44] KVM: Rename and move CPUHP_AP_KVM_STARTING to ONLINE section
` [PATCH 38/44] KVM: Disable CPU hotplug during hardware enabling
` [PATCH 39/44] KVM: Drop kvm_count_lock and instead protect kvm_usage_count with kvm_lock
` [PATCH 40/44] KVM: Remove on_each_cpu(hardware_disable_nolock) in kvm_exit()
` [PATCH 41/44] KVM: Use a per-CPU variable to track which CPUs have enabled virtualization
` [PATCH 42/44] KVM: Make hardware_enable_failed a local variable in the "enable all" path
` [PATCH 43/44] KVM: Register syscore (suspend/resume) ops early in kvm_init()
` [PATCH 44/44] KVM: Opt out of generic hardware enabling on s390 and PPC

[PATCH 1/2] RISC-V: kexec: Fix memory leak of fdt buffer
 2022-11-07  1:30 UTC  (5+ messages)
` [PATCH 2/2] RISC-V: kexec: Fix memory leak of elf header buffer

[PATCH v4 0/8] Add OPTPROBES feature on RISCV
 2022-11-06 10:03 UTC  (9+ messages)
` [PATCH v4 1/8] riscv/kprobe: Prepare the skeleton to implement RISCV OPTPROBES feature
` [PATCH v4 2/8] riscv/kprobe: Allocate detour buffer from module area
` [PATCH v4 3/8] riscv/kprobe: Prepare the skeleton to prepare optimized kprobe
` [PATCH v4 4/8] riscv/kprobe: Add common RVI and RVC instruction decoder code
` [PATCH v4 5/8] riscv/kprobe: Search free register(s) to clobber for 'AUIPC/JALR'
` [PATCH v4 6/8] riscv/kprobe: Add code to check if kprobe can be optimized
` [PATCH v4 7/8] riscv/kprobe: Prepare detour buffer for optimized kprobe
` [PATCH v4 8/8] riscv/kprobe: Patch AUIPC/JALR pair to optimize kprobe

[QUERY]: RZ/Five (AX45MP) non-coherent DMA
 2022-11-05 22:41 UTC  (3+ messages)

[PATCH RFC 0/9] String optimizations and call support in alternatives
 2022-11-04 22:51 UTC  (10+ messages)
` [PATCH RFC 1/9] string: allow override for strstarts()
` [PATCH RFC 2/9] efi/riscv: libstub: mark when compiling libstub
` [PATCH RFC 3/9] RISC-V: add auipc elements to parse_asm header
` [PATCH RFC 4/9] RISC-V: add U-type imm parsing "
` [PATCH RFC 5/9] RISC-V: add rd reg "
` [PATCH RFC 6/9] RISC-V: fix auipc-jalr addresses in patched alternatives
` [PATCH RFC 7/9] RISC-V: add infrastructure to allow different str* implementations
` [PATCH RFC 8/9] HACK: RISC-V: add zbb support to string functions
` [PATCH RFC 9/9] HACK: disable strchr call in overlay-fs

[PATCH v12 01/17] riscv: Rename __switch_to_aux -> fpu
 2022-11-04 22:08 UTC  (14+ messages)
` [PATCH v12 02/17] riscv: Extending cpufeature.c to detect V-extension
` [PATCH v12 05/17] riscv: Add has_vector/riscv_vsize to save vector features
` [PATCH v12 06/17] riscv: Reset vector register
` [PATCH v12 07/17] riscv: Add vector struct and assembler definitions
` [PATCH v12 08/17] riscv: Add task switch support for vector

Regression: Fwd: Re: [PATCH] riscv: mmap with PROT_WRITE but no PROT_READ is invalid
 2022-11-04 12:02 UTC  (2+ messages)
` Regression: Fwd: Re: [PATCH] riscv: mmap with PROT_WRITE but no PROT_READ is invalid #forregzbot

[PATCH 00/12] riscv: Allwinner D1 platform support
 2022-11-04  2:57 UTC  (3+ messages)
` [PATCH 02/12] dt-bindings: riscv: Add T-HEAD C906 and C910 compatibles

[PATCH] riscv: vdso: fix build with llvm
 2022-11-02 17:07 UTC  (4+ messages)

[PATCH v3 0/2] Fix /proc/cpuinfo cpumask warning
 2022-11-03 23:22 UTC  (18+ messages)
` [PATCH v3 2/2] x86: "

[GIT PULL] Please pull powerpc/linux.git powerpc-6.1-4 tag
 2022-11-03 22:18 UTC  (4+ messages)

[PATCH v4 0/1] Fix /proc/cpuinfo cpumask warning
 2022-11-03 14:25 UTC  (2+ messages)
` [PATCH v4 1/1] x86: cpuinfo: Ensure inputs to cpumask_next are valid

RISC-V reserved memory problems
 2022-11-03 12:07 UTC  (3+ messages)

[PATCH 9/9] RISC-V: Use Zicboz in memset when available
 2022-11-03 10:21 UTC  (3+ messages)

[PATCH V2] selftests/vDSO: Add riscv getcpu & gettimeofday test
 2022-11-03  8:04 UTC 

[PATCH -next V8 00/14] riscv: Add GENERIC_ENTRY support and related features
 2022-11-03  7:50 UTC  (15+ messages)
` [PATCH -next V8 01/14] compiler_types.h: Add __noinstr_section() for noinstr
` [PATCH -next V8 02/14] riscv: elf_kexec: Fixup compile warning
` [PATCH -next V8 03/14] riscv: compat_syscall_table: "
` [PATCH -next V8 04/14] riscv: ptrace: Remove duplicate operation
` [PATCH -next V8 05/14] riscv: traps: Add noinstr to prevent instrumentation inserted
` [PATCH -next V8 06/14] riscv: convert to generic entry
` [PATCH -next V8 07/14] riscv: Support HAVE_IRQ_EXIT_ON_IRQ_STACK
` [PATCH -next V8 08/14] riscv: Support HAVE_SOFTIRQ_ON_OWN_STACK
` [PATCH -next V8 09/14] riscv: Add config of thread stack size
` [PATCH -next V8 10/14] riscv: Typo fixup for addi -> andi in comment
` [PATCH -next V8 11/14] riscv: Add support for STACKLEAK gcc plugin
` [PATCH -next V8 12/14] riscv: remove extra level wrappers of trace_hardirqs_{on,off}
` [PATCH -next V8 13/14] riscv: consolidate ret_from_kernel_thread into ret_from_fork
` [PATCH -next V8 14/14] riscv: entry: consolidate general regs saving/restoring

[PATCH v10 0/7] RISC-V IPI Improvements
 2022-11-03  7:01 UTC  (7+ messages)
` [PATCH v10 5/7] RISC-V: Allow marking IPIs as suitable for remote FENCEs
` [PATCH v10 6/7] RISC-V: Use IPIs for remote TLB flush when possible
` [PATCH v10 7/7] RISC-V: Use IPIs for remote icache "

[RFC PATCH v3 0/2] AX45MP: Add support to non-coherent DMA
 2022-11-03  3:20 UTC  (10+ messages)
` [RFC PATCH v3 2/2] soc: renesas: Add L2 cache management for RZ/Five SoC

[PATCH v3 0/8] Add OPTPROBES feature on RISCV
 2022-11-03  1:23 UTC  (6+ messages)
` [PATCH 1/8] riscv/kprobe: Prepare the skeleton to implement RISCV OPTPROBES feature

[RFC PATCH v2 0/8] Generic IPI sending tracepoint
 2022-11-02 18:33 UTC  (9+ messages)
` [RFC PATCH v2 1/8] DO-NOT-MERGE: tracing: Add __cpumask to denote a trace event field that is a cpumask_t
` [RFC PATCH v2 2/8] trace: Add trace_ipi_send_cpumask()
` [RFC PATCH v2 3/8] sched, smp: Trace IPIs sent via send_call_function_single_ipi()
` [RFC PATCH v2 4/8] smp: Trace IPIs sent via arch_send_call_function_ipi_mask()
` [RFC PATCH v2 5/8] irq_work: Trace self-IPIs sent via arch_irq_work_raise()
` [RFC PATCH v2 6/8] treewide: Trace IPIs sent via smp_send_reschedule()
` [RFC PATCH v2 7/8] smp: reword smp call IPI comment
` [RFC PATCH v2 8/8] sched, smp: Trace smp callback causing an IPI

[PATCH] riscv: vdso: fix section overlapping under some conditions
 2022-11-02 17:28 UTC  (3+ messages)

[PATCH v2] riscv: vdso: fix section overlapping under some conditions
 2022-11-02 17:02 UTC 

[PATCH 0/6] RISC-V: stop selecting device drivers in Kconfig.socs
 2022-11-02 10:34 UTC  (4+ messages)

[PATCH] selftests/vDSO: Add riscv getcpu & gettimeofday test
 2022-11-02  9:01 UTC  (2+ messages)

[PATCH] RISC-V: KVM: use vma_lookup() instead of find_vma_intersection()
 2022-11-02  8:14 UTC  (2+ messages)

[PATCH 1/2] riscv: percpu:Add riscv percpu operations
 2022-10-27  1:05 UTC  (3+ messages)

[PATCH v2 4/4] PCI: Remove unnecessary <linux/of_irq.h> includes
 2022-10-31  8:30 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).