public inbox for linux-riscv@lists.infradead.org
 help / color / mirror / Atom feed
 messages from 2024-10-01 11:51:32 to 2024-10-04 05:14:01 UTC [more...]

[PATCH 0/2] Add initial support for Canaan Kendryte K230 reset controller
 2024-10-04  5:12 UTC  (4+ messages)
` [PATCH 2/2] reset: canaan: Add reset driver for Kendryte K230

[PATCH 00/33] riscv control-flow integrity for usermode
 2024-10-04  1:20 UTC  (42+ messages)
` [PATCH 01/33] mm: Introduce ARCH_HAS_USER_SHADOW_STACK
` [PATCH 02/33] mm: helper `is_shadow_stack_vma` to check shadow stack vma
` [PATCH 03/33] riscv: Enable cbo.zero only when all harts support Zicboz
` [PATCH 04/33] riscv: Add support for per-thread envcfg CSR values
` [PATCH 05/33] riscv: Call riscv_user_isa_enable() only on the boot hart
` [PATCH 06/33] riscv/Kconfig: enable HAVE_EXIT_THREAD for riscv
` [PATCH 07/33] riscv: zicfilp / zicfiss in dt-bindings (extensions.yaml)
` [PATCH 08/33] riscv: zicfiss / zicfilp enumeration
` [PATCH 09/33] riscv: zicfiss / zicfilp extension csr and bit definitions
` [PATCH 10/33] riscv: usercfi state for task and save/restore of CSR_SSP on trap entry/exit
` [PATCH 11/33] riscv/mm : ensure PROT_WRITE leads to VM_READ | VM_WRITE
` [PATCH 12/33] riscv mm: manufacture shadow stack pte
` [PATCH 13/33] riscv mmu: teach pte_mkwrite to manufacture shadow stack PTEs
` [PATCH 14/33] riscv mmu: write protect and shadow stack
` [PATCH 15/33] riscv/mm: Implement map_shadow_stack() syscall
` [PATCH 16/33] riscv/shstk: If needed allocate a new shadow stack on clone
` [PATCH 17/33] prctl: arch-agnostic prctl for shadow stack
` [PATCH 18/33] prctl: arch-agnostic prctl for indirect branch tracking
` [PATCH 19/33] riscv: Implements arch agnostic shadow stack prctls
` [PATCH 20/33] riscv: Implements arch agnostic indirect branch tracking prctls
` [PATCH 21/33] riscv/traps: Introduce software check exception
` [PATCH 22/33] riscv: signal: abstract header saving for setup_sigcontext
` [PATCH 23/33] riscv signal: save and restore of shadow stack for signal
` [PATCH 24/33] riscv/kernel: update __show_regs to print shadow stack register
` [PATCH 25/33] riscv/ptrace: riscv cfi status and state via ptrace and in core files
` [PATCH 26/33] riscv/hwprobe: zicfilp / zicfiss enumeration in hwprobe
` [PATCH 27/33] riscv: Add Firmware Feature SBI extensions definitions
` [PATCH 28/33] riscv: enable kernel access to shadow stack memory via FWFT sbi call
` [PATCH 29/33] riscv: kernel command line option to opt out of user cfi
` [PATCH 30/33] riscv: create a config for shadow stack and landing pad instr support
` [PATCH 31/33] riscv: Documentation for landing pad / indirect branch tracking
` [PATCH 32/33] riscv: Documentation for shadow stack on riscv
` [PATCH 33/33] kselftest/riscv: kselftest for user mode cfi

[REGRESSION][BISECTED] Cannot boot Lichee Pi 4A with FORTIFY_SOURCE enabled
 2024-10-03 21:21 UTC  (12+ messages)

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

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

[PATCH v1] mmc: sdhci: Prevent stale command and data interrupt handling
 2024-10-03 16:10 UTC 

[PATCH -fixes] riscv: Fix kernel stack size when KASAN is enabled
 2024-10-03 14:40 UTC  (2+ messages)

[RESEND PATCH] mm: Move set_pxd_safe() helpers from generic to platform
 2024-10-03 14:09 UTC  (2+ messages)

[PATCH] pinctrl: fix Null pointer dereference
 2024-10-03 14:08 UTC  (3+ messages)

[PATCH LOCAL/RFC] riscv: defconfig: Add rzfive_defconfig
 2024-10-03 12:35 UTC 

[RFC v1 0/5] Add some validation for vector, vector crypto and fp stuff
 2024-10-03 11:36 UTC  (16+ messages)
` [RFC v1 1/5] RISC-V: add vector crypto extension validation checks
` [RFC v1 2/5] RISC-V: add f & d "
` [RFC v1 3/5] dt-bindings: riscv: d requires f
` [RFC v1 4/5] dt-bindings: riscv: add vector sub-extension dependencies
` [RFC v1 5/5] dt-bindings: riscv: document vector crypto requirements

[PATCH v1 00/11] Redo PolarFire SoC's mailbox/clock devicestrees and related code
 2024-10-03 11:33 UTC  (20+ messages)
` [PATCH v1 01/11] dt-bindings: mailbox: mpfs: fix reg properties
` [PATCH v1 02/11] mailbox: mpfs: support new, syscon based, devicetree configuration
` [PATCH v1 03/11] dt-bindings: mfd: syscon document the non simple-mfd syscon on PolarFire SoC
` [PATCH v1 04/11] dt-bindings: soc: microchip: document the two simple-mfd syscons "
` [PATCH v1 05/11] soc: microchip: add mfd drivers for two syscon regions "
` [PATCH v1 06/11] reset: mpfs: add non-auxiliary bus probing
` [PATCH v1 07/11] dt-bindings: clk: microchip: mpfs: remove first reg region
` [PATCH v1 08/11] clk: move meson clk-regmap implementation to common code
` [PATCH v1 09/11] clk: microchip: mpfs: use regmap clock types
` [PATCH v1 10/11] riscv: dts: microchip: fix mailbox description
` [PATCH v1 11/11] riscv: dts: microchip: convert clock and reset to use syscon

[PATCH v3 0/3] Add the dwmac driver support for T-HEAD TH1520 SoC
 2024-10-03 10:42 UTC  (9+ messages)
` [PATCH v3 1/3] dt-bindings: net: Add T-HEAD dwmac support
` [PATCH v3 2/3] net: stmmac: Add glue layer for T-HEAD TH1520 SoC

[PATCH v2] irqchip/sifive-plic: Unmask interrupt in plic_irq_enable()
 2024-10-03  8:41 UTC 

Proszę o kontakt
 2024-10-03  8:15 UTC 

[PATCH v3 0/8] pinctrl: Add T-Head TH1520 SoC pin controllers
 2024-10-03  2:43 UTC  (8+ messages)
` [PATCH v3 2/8] pinctrl: Add driver for the T-Head TH1520 SoC

[PATCH] pinctrl: fix Null pointer dereference
 2024-10-03  1:52 UTC 

[PATCH] mmc: core: Only set maximum DMA segment size if DMA is supported
 2024-10-02 23:36 UTC  (3+ messages)

[PATCH v10 00/14] riscv: Add support for xtheadvector
 2024-10-02 16:59 UTC  (9+ messages)
` [PATCH v10 01/14] dt-bindings: riscv: Add xtheadvector ISA extension description
` [PATCH v10 02/14] dt-bindings: cpus: add a thead vlen register length property
` [PATCH v10 05/14] riscv: vector: Use vlenb from DT for thead
` [PATCH v10 10/14] riscv: hwprobe: Add thead vendor extension probing

Page sizes supported by RISC-V
 2024-10-02 15:25 UTC  (2+ messages)

[PATCH] irqchip/sifive-plic: Unmask interrupt in plic_irq_enable()
 2024-10-02 14:00 UTC  (2+ messages)

[linux][PATCH v2 00/20] Add support for Microchip PIC64GX Curiosity Kit
 2024-10-02 10:40 UTC  (3+ messages)
` [linux][PATCH v2 10/20] dt-bindings: i2c: microchip: corei2c: Add PIC64GX as compatible with driver

[PATCH RFC v2 0/3] Introduce support for T-head TH1520 Mailbox
 2024-10-02  9:24 UTC  (4+ messages)
  ` [PATCH RFC v2 2/3] dt-bindings: mailbox: Add thead,th1520-mailbox bindings

[PATCH v2 0/7] i2c: designware: Group all DesignWare drivers under a single option
 2024-10-02  8:45 UTC  (3+ messages)

[PATCH v1] i2c: microchip-core: actually use repeated sends
 2024-10-02  8:42 UTC  (4+ messages)

[PATCH v2 0/3] Support SSTC while PM operations
 2024-10-02  1:57 UTC  (4+ messages)
` [PATCH v2 1/3] riscv: Add csr_read/write_hi_lo support

[PATCH v9 0/5] Tracepoints and static branch in Rust
 2024-10-01 22:28 UTC  (14+ messages)
` [PATCH v9 1/5] rust: add generic static_key_false
` [PATCH v9 2/5] rust: add tracepoint support
` [PATCH v9 3/5] rust: samples: add tracepoint to Rust sample
` [PATCH v9 4/5] jump_label: adjust inline asm to be consistent
` [PATCH v9 5/5] rust: add arch_static_branch

RFC: extern illegal instruction trap and trap RDCYCLE
 2024-10-01 21:07 UTC  (8+ messages)

[PATCH v1] RISC-V: disallow gcc + rust builds
 2024-10-01 19:27 UTC  (4+ messages)

[PATCH 1/1] riscv: efi: Set NX compat flag in PE/COFF header
 2024-10-01 15:24 UTC  (3+ messages)

[syzbot] [riscv?] kernel panic: corrupted stack end in handle_page_fault (2)
 2024-10-01 14:02 UTC  (2+ messages)

[syzbot] [riscv?] riscv/fixes test error: kernel panic: Kernel stack overflow
 2024-10-01 14:00 UTC  (2+ messages)

[PATCH v8 0/5] Tracepoints and static branch in Rust
 2024-10-01 13:32 UTC  (3+ messages)

[PATCH] irqchip/sifive-plic: Fix error codes
 2024-10-01 11:54 UTC  (2+ messages)

[PATCH v2 0/3] Add initial support for Canaan Kendryte K230 pinctrl
 2024-10-01 12:32 UTC  (3+ messages)

[GIT PULL] RISC-V soc driver fixes for v6.11-rc6
 2024-10-01 11:35 UTC  (2+ messages)

[PATCH] RISC-V: KVM: Don't zero-out PMU snapshot area before freeing data
 2024-10-01 11:35 UTC  (2+ messages)

[PATCH] riscv: make riscv_isa_vendor_ext_andes[] static
 2024-10-01 11:35 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