messages from 2024-10-01 14:30:52 to 2024-10-01 16:20:01 UTC [more...]
[PATCH v1 0/6] s390/uv: Retrieve Secrets Ultravisor Call support
2024-10-01 16:19 UTC (7+ messages)
` [PATCH v1 2/6] s390/uv: Retrieve UV secrets support
` [PATCH v1 3/6] s390/uvdevice: Add Retrieve Secret IOCTL
` [PATCH v1 5/6] s390/uvdevice: Add List Secrets Ext IOCTL
[PATCH v9 0/5] Tracepoints and static branch in Rust
2024-10-01 16:20 UTC (4+ messages)
` [PATCH v9 4/5] jump_label: adjust inline asm to be consistent
[PATCH 0/4] Add support for the GE HealthCare PMC ADC
2024-10-01 16:18 UTC (3+ messages)
` [PATCH 2/4] dt-bindings: iio: adc: Add "
[net-next 0/2] ena: Link IRQs, queues, and NAPI instances
2024-10-01 16:18 UTC (8+ messages)
` [net-next 1/2] ena: Link IRQs to "
` [net-next 2/2] ena: Link queues to NAPIs
[PATCH v8 00/12] fs: multigrain timestamp redux
2024-10-01 16:17 UTC (3+ messages)
` [PATCH v8 01/12] timekeeping: add interfaces for handling timestamps with a floor value
[PATCH 00/33] riscv control-flow integrity for usermode
2024-10-01 16:15 UTC (35+ 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
[PATCH v2] btrfs: Correct typos in multiple comments across various files
2024-10-01 16:12 UTC (2+ messages)
[PATCH v3 00/27] Enable FRED with KVM VMX
2024-10-01 16:12 UTC (3+ messages)
` [PATCH v3 06/27] x86/cea: Export per CPU variable cea_exception_stacks
[PATCH v8 00/29] Generic `Allocator` support for Rust
2024-10-01 16:11 UTC (33+ messages)
` [PATCH v8 01/29] rust: alloc: add `Allocator` trait
` [PATCH v8 02/29] rust: alloc: separate `aligned_size` from `krealloc_aligned`
` [PATCH v8 03/29] rust: alloc: rename `KernelAllocator` to `Kmalloc`
` [PATCH v8 04/29] rust: alloc: implement `ReallocFunc`
` [PATCH v8 05/29] rust: alloc: make `allocator` module public
` [PATCH v8 06/29] rust: alloc: implement `Allocator` for `Kmalloc`
` [PATCH v8 07/29] rust: alloc: add module `allocator_test`
` [PATCH v8 08/29] rust: alloc: implement `Vmalloc` allocator
` [PATCH v8 09/29] rust: alloc: implement `KVmalloc` allocator
` [PATCH v8 10/29] rust: alloc: add __GFP_NOWARN to `Flags`
` [PATCH v8 11/29] rust: alloc: implement kernel `Box`
` [PATCH v8 12/29] rust: treewide: switch to our kernel `Box` type
` [PATCH v8 13/29] rust: alloc: remove extension of std's `Box`
` [PATCH v8 14/29] rust: alloc: add `Box` to prelude
` [PATCH v8 15/29] rust: alloc: introduce `ArrayLayout`
` [PATCH v8 16/29] rust: alloc: implement kernel `Vec` type
` [PATCH v8 17/29] rust: alloc: implement `IntoIterator` for `Vec`
` [PATCH v8 18/29] rust: alloc: implement `collect` for `IntoIter`
` [PATCH v8 19/29] rust: treewide: switch to the kernel `Vec` type
` [PATCH v8 20/29] rust: alloc: remove `VecExt` extension
` [PATCH v8 21/29] rust: alloc: add `Vec` to prelude
` [PATCH v8 22/29] rust: error: use `core::alloc::LayoutError`
` [PATCH v8 23/29] rust: error: check for config `test` in `Error::name`
` [PATCH v8 24/29] rust: alloc: implement `contains` for `Flags`
` [PATCH v8 25/29] rust: alloc: implement `Cmalloc` in module allocator_test
` [PATCH v8 26/29] rust: str: test: replace `alloc::format`
` [PATCH v8 27/29] rust: alloc: update module comment of alloc.rs
` [PATCH v8 28/29] kbuild: rust: remove the `alloc` crate and `GlobalAlloc`
` [PATCH v8 29/29] MAINTAINERS: add entry for the Rust `alloc` module
[PATCH RFC 0/7] x86/microcode: Support for Intel Staging Feature
2024-10-01 16:10 UTC (8+ messages)
` [PATCH RFC 1/7] x86/microcode/intel: Remove unnecessary cache writeback and invalidation
` [PATCH RFC 2/7] x86/microcode: Introduce staging option to reduce late-loading latency
` [PATCH RFC 3/7] x86/msr-index: Define MSR index and bit for the microcode staging feature
` [PATCH RFC 4/7] x86/microcode/intel: Prepare for microcode staging
` [PATCH RFC 5/7] x86/microcode/intel_staging: Implement staging logic
` [PATCH RFC 6/7] x86/microcode/intel_staging: Support mailbox data transfer
` [PATCH RFC 7/7] x86/microcode/intel: Enable staging when available
[PATCH v2 0/3] X1E Dell XPS 9345 support
2024-10-01 16:09 UTC (6+ messages)
` [PATCH v2 3/3] arm64: dts: qcom: Add support for X1-based Dell XPS 13 9345
[PATCH v6 0/7] Add support for the LAN966x PCI device using a DT overlay
2024-10-01 16:06 UTC (4+ messages)
` [PATCH v6 1/7] dt-bindings: reset: microchip,rst: Allow to replace cpu-syscon by an additional reg item
[PATCH] pci/doe: add a 1 second retry window to pci_doe
2024-10-01 16:04 UTC (6+ messages)
[PATCH v5 0/6] I3C: master: svc: collect all patches to improve hotjoin stability
2024-10-01 16:02 UTC (7+ messages)
` [PATCH v5 1/6] i3c: master: svc: use repeat start when IBI WIN happens
` [PATCH v5 2/6] i3c: master: svc: manually emit NACK/ACK for hotjoin
` [PATCH v5 3/6] i3c: master: svc: need check IBIWON for dynamtica address assign
` [PATCH v5 4/6] i3c: master: svc: use spin_lock_irqsave at svc_i3c_master_ibi_work()
` [PATCH v5 5/6] i3c: master: svc: wait for Manual ACK/NACK Done before next step
` [PATCH v5 6/6] i3c: master: svc: fix possible assignment of the same address to two devices
[PATCHSET 0/8] perf tools: Do not set attr.exclude_guest by default (v4)
2024-10-01 16:03 UTC (3+ messages)
` [PATCH 6/8] perf tools: Move x86__is_amd_cpu() to util/env.c
[PATCH v1 0/3] Refactor Landlock access mask management
2024-10-01 14:12 UTC (2+ messages)
` [PATCH v1 1/3] landlock: Refactor filesystem "
[PATCH v2 0/4] acpi/ghes, cper, cxl: Trace FW-First CXL Protocol Errors
2024-10-01 15:52 UTC (7+ messages)
` [PATCH v2 2/4] cxl/pci: Define a common function get_cxl_devstate()
` [PATCH v2 3/4] acpi/ghes, efi/cper: Recognize and process CXL Protocol Errors
` [PATCH v2 4/4] acpi/ghes, cxl/pci: Trace FW-First "
[syzbot] [bluetooth?] possible deadlock in rfcomm_sk_state_change
2024-10-01 15:52 UTC
[PATCH v2 0/3] reset: Requesting pre-deasserted, auto-reasserting reset controls via devres
2024-10-01 15:50 UTC (3+ messages)
[PATCH v6 0/7] block atomic writes for xfs
2024-10-01 15:48 UTC (10+ messages)
` [PATCH v6 3/7] fs: iomap: Atomic write support
` [PATCH v6 6/7] xfs: Validate atomic writes
[PATCH v1] printk: Improve memory usage logging during boot
2024-10-01 15:48 UTC (4+ messages)
[PATCH v12 00/17] EDAC: Scrub: introduce generic EDAC RAS control feature driver + CXL/ACPI-RAS2 drivers
2024-10-01 15:47 UTC (3+ messages)
` [PATCH v12 13/17] ACPI:RAS2: Add ACPI RAS2 driver
[PATCH v2] printk: Improve memory usage logging during boot
2024-10-01 15:46 UTC (2+ messages)
[PATCH] btrfs: Remove unused page_to_{inode,fs_info} macros
2024-10-01 15:46 UTC (2+ messages)
[PATCH] [RFC] rust: add PidNamespace wrapper
2024-10-01 15:45 UTC (5+ messages)
` [PATCH v2] rust: add PidNamespace
[PATCH net-next 7/8] net: smsc91xx: move down struct members
2024-10-01 15:44 UTC (2+ messages)
[PATCH] docs: dev-tools: Add documentation for the device focused kselftests
2024-10-01 15:43 UTC
[PATCH] btrfs: remove redundant stop_loop variable in scrub_stripe()
2024-10-01 15:42 UTC (2+ messages)
[PATCH] HID: simplify code in fetch_item()
2024-10-01 15:42 UTC
[net-next v2 0/2] gve: Link IRQs, queues, and NAPI instances
2024-10-01 15:38 UTC (5+ messages)
` [net-next v2 1/2] gve: Map IRQs to "
` [net-next v2 2/2] gve: Map NAPI instances to queues
[PATCH v5 0/5] Add PSCI v1.3 SYSTEM_OFF2 support for hibernation
2024-10-01 15:35 UTC (7+ messages)
` [PATCH v5 2/5] KVM: arm64: Add PSCI v1.3 SYSTEM_OFF2 function "
` [PATCH v5 3/5] KVM: arm64: Add support for PSCI v1.2 and v1.3
` [PATCH v5 4/5] KVM: selftests: Add test for PSCI SYSTEM_OFF2
[PATCH v3] add group restriction bitmap
2024-10-01 15:28 UTC (7+ messages)
[PATCH net-next 0/9] net: lantiq_etop: some cleanups
2024-10-01 15:33 UTC (3+ messages)
` [PATCH net-next 7/9] net: lantiq_etop: remove struct resource
[PATCH] compiler-gcc.h: Disable __retain on gcc-11
2024-10-01 15:32 UTC (4+ messages)
[PATCH 0/1] tty: Handle HAS_IOPORT dependencies
2024-10-01 15:31 UTC (5+ messages)
` [PATCH 1/1] tty: serial: handle "
[PATCH v2 0/4] Cosmetic Work for ARM/Microchip (AT91)
2024-10-01 15:31 UTC (6+ messages)
` [PATCH v2 1/4] ARM: dts: microchip: Rename the eeprom nodename
` [PATCH v2 2/4] ARM: dts: microchip: Rename the pmic node
` [PATCH v2 3/4] ARM: dts: microchip: Rename LED sub nodes name
` [PATCH v2 4/4] ARM: dts: microchip: aks-cdu: Add label for LED sub nodes
[PATCH v2] Bluetooth: btrtl: Decrease HCI_OP_RESET timeout from 10 s to 2 s
2024-10-01 15:29 UTC (2+ messages)
[RFC PATCH v2] Simply enable one to write code like:
2024-10-01 15:29 UTC (4+ messages)
[PATCH v8 1/3] regulator: dt-bindings: mt6323: Convert to DT schema
2024-10-01 15:26 UTC (2+ messages)
[PATCH] mips: bmips: bcm6358/6368: define required brcm,bmips-cbr-reg
2024-10-01 15:23 UTC
[PATCH 1/1] riscv: efi: Set NX compat flag in PE/COFF header
2024-10-01 15:24 UTC (3+ messages)
[PATCH] cxl/core/port: defer probe when memdev fails to find correct port
2024-10-01 15:20 UTC (4+ messages)
[PATCH v2] Bluetooth: btusb: Add USB HW IDs for MT7920/MT7925
2024-10-01 15:20 UTC (2+ messages)
[PATCH V1 RESEND] Bluetooth: btusb: Add RTL8852BE device 0489:e123 to device tables
2024-10-01 15:20 UTC (2+ messages)
[PATCH v1] bluetooth: Fix typos in the comments
2024-10-01 15:20 UTC (2+ messages)
[PATCH v4 0/8] TDX host: metadata reading tweaks, bug fix and info dump
2024-10-01 15:19 UTC (9+ messages)
` [PATCH v4 3/8] x86/virt/tdx: Prepare to support reading other global metadata fields
[WIP RFC v2 01/35] WIP: rust/drm: Add fourcc bindings
2024-10-01 15:18 UTC (3+ messages)
[PATCH v2 0/6] Enable Mali GPU on MediaTek Genio 700 EVK
2024-10-01 15:18 UTC (5+ messages)
` [PATCH v2 3/6] nvmem: mtk-efuse: Enable postprocess for mt8188 GPU speed binning
[PATCH] KVM: selftests: Fix build on architectures other than x86_64
2024-10-01 15:16 UTC (2+ messages)
[PATCH v2] init: Don't proxy `console=` to earlycon
2024-10-01 15:14 UTC (4+ messages)
[PATCH v3 1/2] exec: fix up /proc/pid/comm in the execveat(AT_EMPTY_PATH) case
2024-10-01 15:14 UTC (3+ messages)
` [PATCH v3 2/2] selftests/exec: add a test to enforce execveat()'s comm
[PATCH RFT v9 4/8] fork: Add shadow stack support to clone3()
2024-10-01 15:12 UTC (11+ messages)
[PATCH] usb: dwc3: core: Fix system suspend on TI AM62 platforms
2024-10-01 15:12 UTC
[PATCH net] net: ethernet: marvell: octeontx2: nic: Add error pointer check in otx2_ethtool.c
2024-10-01 15:11 UTC (11+ messages)
[PATCH] arm64: dts: qcom: qcs6490-rb3gen2: Add PCIe nodes
2024-10-01 15:08 UTC (12+ messages)
[PATCH v1 00/12] Microchip OTPC driver on SAM9X60 exposing UIDxR as additional nvmem device
2024-10-01 15:04 UTC (6+ messages)
` [PATCH v1 09/12] clk: at91: sam9x60: Allow enabling main_rc_osc through DT
linux-next: build warning after merge of the vfs-brauner tree
2024-10-01 15:05 UTC (2+ messages)
[syzbot] [mm?] [ext4?] INFO: rcu detected stall in ext4_release_file (2)
2024-10-01 15:05 UTC (2+ messages)
` [syzbot] [ext4?] [mm?] "
[PATCH 0/2] A couple of KVM dead functions
2024-10-01 15:03 UTC (2+ messages)
linux-next: build warning after merge of Linus' tree
2024-10-01 15:02 UTC (2+ messages)
[PATCH v12 0/3] PCI: vmd: Enable PCI PM's L1 substates of remapped PCIe Root Port and NVMe
2024-10-01 15:00 UTC (3+ messages)
` [PATCH v12 3/3] PCI/ASPM: Make pci_save_aspm_l1ss_state save both child and parent's L1SS configuration
linux-next: build warning after merge of the vfs-brauner tree
2024-10-01 15:00 UTC (3+ messages)
[PATCH v2] arm64: dts: rockchip: Add power button for puma-haikou
2024-10-01 14:58 UTC (2+ messages)
[syzbot] possible deadlock in rfcomm_sk_state_change
2024-10-01 14:58 UTC (2+ messages)
` [syzbot] Re: [PATCH v1] Bluetooth: RFCOMM: FIX "
[PATCH 00/10] (no cover subject)
2024-10-01 14:58 UTC (9+ messages)
[PATCH v3] rust: add PidNamespace
2024-10-01 14:54 UTC
[PATCH v5 00/17] powerpc: Core ftrace rework, support for ftrace direct and bpf trampolines
2024-10-01 14:53 UTC (7+ messages)
` [PATCH v5 17/17] powerpc64/bpf: Add support for "
[PATCH 01/18] ptrace: export ptrace_may_access
2024-10-01 14:42 UTC
[PATCH] mmc: core: Only set maximum DMA segment size if DMA is supported
2024-10-01 14:51 UTC (2+ messages)
[PATCH v15 00/19] drm/etnaviv: Add driver wrapper for vivante GPUs attached on PCI(e) device
2024-10-01 14:51 UTC (5+ messages)
` [PATCH v15 16/19] drm/etnaviv: Call etnaviv_gem_obj_add() in ernaviv_gem_new_private()
` [PATCH v15 18/19] drm/etnaviv: Allow userspace specify the domain of etnaviv GEM buffer object
[RFT RFC PATCH 0/8] cpufreq: cpuidle: Remove iowait behaviour
2024-10-01 14:46 UTC (6+ messages)
` [RFC PATCH 6/8] cpufreq: intel_pstate: Remove iowait boost
[PATCH 00/47] KVM: arm64: Enable FGU (Fine Grained Undefined) for FEAT_FGT2 registers
2024-10-01 14:46 UTC (3+ messages)
` [PATCH 47/47] KVM: arm64: nv: Add trap forwarding for FEAT_FGT2 described registers
[RFC net-next 0/1] idpf: Don't hardcode napi_struct size
2024-10-01 14:44 UTC (8+ messages)
` [RFC net-next 1/1] idpf: Don't hard code "
[PATCH v2 00/14] hrtimer Rust API
2024-10-01 14:42 UTC (3+ messages)
[PATCH 0/3] Support auto counter reload
2024-10-01 14:41 UTC (4+ messages)
` [PATCH 3/3] perf/x86/intel: "
[PATCH] selftest: hid: add missing run-hid-tools-tests.sh
2024-10-01 14:40 UTC (5+ messages)
[PATCH net v2] ip6mr: Fix lockdep and sparse RCU warnings
2024-10-01 14:39 UTC (6+ messages)
[PATCH v13 00/12] Initial Marvell PXA1908 support
2024-10-01 14:37 UTC (13+ messages)
` [PATCH v13 01/12] clk: mmp: Switch to use struct u32_fract instead of custom one
` [PATCH v13 02/12] dt-bindings: pinctrl: pinctrl-single: add marvell,pxa1908-padconf compatible
` [PATCH v13 03/12] pinctrl: single: "
` [PATCH v13 04/12] dt-bindings: clock: Add Marvell PXA1908 clock bindings
` [PATCH v13 05/12] clk: mmp: Add Marvell PXA1908 APBC driver
` [PATCH v13 06/12] clk: mmp: Add Marvell PXA1908 APBCP driver
` [PATCH v13 07/12] clk: mmp: Add Marvell PXA1908 APMU driver
` [PATCH v13 08/12] clk: mmp: Add Marvell PXA1908 MPMU driver
` [PATCH v13 09/12] dt-bindings: marvell: Document PXA1908 SoC and samsung,coreprimevelte
` [PATCH v13 10/12] arm64: Kconfig.platforms: Add config for Marvell PXA1908 platform
` [PATCH v13 11/12] arm64: dts: Add DTS for Marvell PXA1908 and samsung,coreprimevelte
` [PATCH v13 12/12] MAINTAINERS: add myself as Marvell PXA1908 maintainer
[PATCH 6.10 00/58] 6.10.12-rc1 review
2024-10-01 14:38 UTC (3+ messages)
[PATCH net-next v2] net: phy: microchip_t1: Interrupt support for lan887x
2024-10-01 14:44 UTC
[PATCH v11 00/20] Add Secure TSC support for SNP guests
2024-10-01 14:36 UTC (14+ messages)
` [PATCH v11 19/20] x86/kvmclock: Skip kvmclock when Secure TSC is available
[PATCH v4 3/5] string: add strends() helper to check if a string ends with a suffix
2024-10-01 14:33 UTC (2+ messages)
[RFC PATCH 0/3] introduce PIDFD_SELF
2024-10-01 14:31 UTC (9+ messages)
[PATCH HID v3 0/9] HID: bpf: add a new hook to control hid-generic
2024-10-01 14:30 UTC (2+ messages)
` [PATCH HID v3 9/9] selftests/hid: add test for assigning a given device to hid-generic
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox