Linux-kselftest Archive mirror
 help / color / mirror / Atom feed
 messages from 2024-03-27 16:38:36 to 2024-03-30 17:37:48 UTC [more...]

[PATCH 0/3] selftests/mm: mremap_test: Optimizations and style fixes
 2024-03-30 17:35 UTC  (4+ messages)
` [PATCH 1/3] selftests/mm: mremap_test: Optimize using pre-filled random array and memcpy
` [PATCH 2/3] selftests/mm: mremap_test: Optimize execution time from minutes to seconds using chunkwise memcmp
` [PATCH 3/3] selftests/mm: mremap_test: Use sscanf to parse /proc/self/maps

[PATCH bpf-next v2 0/9] bpf: make tracing program support multi-link
 2024-03-30 12:27 UTC  (18+ messages)
` [PATCH bpf-next v2 1/9] bpf: tracing: add support to record and check the accessed args
    ` [External] "

[PATCH v3] selftests: x86: skip the tests if prerequisites aren't fulfilled
 2024-03-30 11:08 UTC  (5+ messages)

[RFC PATCH bpf-next 0/3] bpf: freeze a task cgroup from bpf
 2024-03-29 23:04 UTC  (16+ messages)
  ` [RFC PATCH bpf-next 1/3] cgroup: add cgroup_freeze_no_kn() to freeze a "
  ` [RFC PATCH bpf-next 2/3] bpf: add bpf_task_freeze_cgroup() to freeze the cgroup of a task
  ` [RFC PATCH bpf-next 3/3] selftests/bpf: add selftest for bpf_task_freeze_cgroup

[GIT PULL] KUnit fixes update for Linux 6.9-rc2
 2024-03-29 22:58 UTC  (2+ messages)

[GIT PULL] Kselftest fixes update for Linux 6.9-rc2
 2024-03-29 22:58 UTC  (2+ messages)

[PATCH v1 bpf-next 0/8] selftests/bpf: Add sockaddr tests for kernel networking
 2024-03-29 22:09 UTC  (10+ messages)
` [PATCH v1 bpf-next 1/8] selftests/bpf: Introduce sock_addr_testmod
` [PATCH v1 bpf-next 2/8] selftests/bpf: Add module load helpers
` [PATCH v1 bpf-next 3/8] selftests/bpf: Factor out cmp_addr
` [PATCH v1 bpf-next 4/8] selftests/bpf: Add recv_msg_from_client to network helpers
` [PATCH v1 bpf-next 5/8] selftests/bpf: Factor out load_path and defines from test_sock_addr
` [PATCH v1 bpf-next 6/8] selftests/bpf: Add setup/cleanup subcommands
` [PATCH v1 bpf-next 7/8] selftests/bpf: Add sock_addr_kern prog_test
` [PATCH v1 bpf-next 8/8] selftests/bpf: Fix bind program for big endian systems

[PATCH] selftests/mm: import strings.h for ffsl
 2024-03-29 20:33 UTC  (3+ messages)

[PATCH] selftests: cgroup: skip test_cgcore_lesser_ns_open when cgroup2 mounted without nsdelegate
 2024-03-29 20:20 UTC  (2+ messages)

[PATCH v2 00/25] Enable FRED with KVM VMX
 2024-03-29 20:18 UTC  (3+ messages)
` [PATCH v2 25/25] KVM: selftests: Add fred exception tests

[PATCH v1 0/3] Add a test case for KVM_X86_DISABLE_EXIT
 2024-03-29 20:13 UTC  (6+ messages)
` [PATCH v1 2/3] KVM: selftests: Change __vm_create() to create a vm without in-kernel APIC
` [PATCH v1 3/3] KVM: selftests: Add a test case for KVM_X86_DISABLE_EXITS_HLT

[PATCH v3 00/30] NT synchronization primitive driver
 2024-03-29 20:07 UTC  (32+ messages)
` [PATCH v3 01/30] ntsync: Introduce the ntsync driver and character device
` [PATCH v3 02/30] ntsync: Introduce NTSYNC_IOC_CREATE_SEM
` [PATCH v3 03/30] ntsync: Introduce NTSYNC_IOC_SEM_POST
` [PATCH v3 04/30] ntsync: Introduce NTSYNC_IOC_WAIT_ANY
` [PATCH v3 05/30] ntsync: Introduce NTSYNC_IOC_WAIT_ALL
` [PATCH v3 06/30] ntsync: Introduce NTSYNC_IOC_CREATE_MUTEX
` [PATCH v3 07/30] ntsync: Introduce NTSYNC_IOC_MUTEX_UNLOCK
` [PATCH v3 08/30] ntsync: Introduce NTSYNC_IOC_MUTEX_KILL
` [PATCH v3 09/30] ntsync: Introduce NTSYNC_IOC_CREATE_EVENT
` [PATCH v3 10/30] ntsync: Introduce NTSYNC_IOC_EVENT_SET
` [PATCH v3 11/30] ntsync: Introduce NTSYNC_IOC_EVENT_RESET
` [PATCH v3 12/30] ntsync: Introduce NTSYNC_IOC_EVENT_PULSE
` [PATCH v3 13/30] ntsync: Introduce NTSYNC_IOC_SEM_READ
` [PATCH v3 14/30] ntsync: Introduce NTSYNC_IOC_MUTEX_READ
` [PATCH v3 15/30] ntsync: Introduce NTSYNC_IOC_EVENT_READ
` [PATCH v3 16/30] ntsync: Introduce alertable waits
` [PATCH v3 17/30] selftests: ntsync: Add some tests for semaphore state
` [PATCH v3 18/30] selftests: ntsync: Add some tests for mutex state
` [PATCH v3 19/30] selftests: ntsync: Add some tests for NTSYNC_IOC_WAIT_ANY
` [PATCH v3 20/30] selftests: ntsync: Add some tests for NTSYNC_IOC_WAIT_ALL
` [PATCH v3 21/30] selftests: ntsync: Add some tests for wakeup signaling with WINESYNC_IOC_WAIT_ANY
` [PATCH v3 22/30] selftests: ntsync: Add some tests for wakeup signaling with WINESYNC_IOC_WAIT_ALL
` [PATCH v3 23/30] selftests: ntsync: Add some tests for manual-reset event state
` [PATCH v3 24/30] selftests: ntsync: Add some tests for auto-reset "
` [PATCH v3 25/30] selftests: ntsync: Add some tests for wakeup signaling with events
` [PATCH v3 26/30] selftests: ntsync: Add tests for alertable waits
` [PATCH v3 27/30] selftests: ntsync: Add some tests for wakeup signaling via alerts
` [PATCH v3 28/30] selftests: ntsync: Add a stress test for contended waits
` [PATCH v3 29/30] maintainers: Add an entry for ntsync
` [PATCH v3 30/30] docs: ntsync: Add documentation for the ntsync uAPI

[PATCH v2 00/27] riscv control-flow integrity for usermode
 2024-03-29 20:02 UTC  (34+ messages)
` [PATCH v2 01/27] riscv: envcfg save and restore on task switching
` [PATCH v2 02/27] riscv: define default value for envcfg
` [PATCH v2 03/27] riscv/Kconfig: enable HAVE_EXIT_THREAD for riscv
` [PATCH v2 04/27] riscv: zicfiss/zicfilp enumeration
` [PATCH v2 05/27] riscv: zicfiss/zicfilp extension csr and bit definitions
` [PATCH v2 06/27] riscv: usercfi state for task and save/restore of CSR_SSP on trap entry/exit
` [PATCH v2 07/27] mm: Define VM_SHADOW_STACK for RISC-V
` [PATCH v2 08/27] mm: abstract shadow stack vma behind `arch_is_shadow_stack`
` [PATCH v2 09/27] riscv/mm : ensure PROT_WRITE leads to VM_READ | VM_WRITE
` [PATCH v2 10/27] riscv mm: manufacture shadow stack pte
` [PATCH v2 11/27] riscv mmu: teach pte_mkwrite to manufacture shadow stack PTEs
` [PATCH v2 12/27] riscv mmu: write protect and shadow stack
` [PATCH v2 13/27] riscv/mm: Implement map_shadow_stack() syscall
` [PATCH v2 14/27] riscv/shstk: If needed allocate a new shadow stack on clone
` [PATCH v2 15/27] prctl: arch-agnostic prctl for shadow stack
` [PATCH v2 16/27] prctl: arch-agnostic prtcl for indirect branch tracking
` [PATCH v2 17/27] riscv: Implements arch agnostic shadow stack prctls
` [PATCH v2 18/27] riscv: Implements arch argnostic indirect branch tracking prctls
` [PATCH v2 19/27] riscv/kernel: update __show_regs to print shadow stack register
` [PATCH v2 20/27] riscv/traps: Introduce software check exception
` [PATCH v2 21/27] riscv sigcontext: adding cfi state field in sigcontext
` [PATCH v2 22/27] riscv signal: Save and restore of shadow stack for signal
` [PATCH v2 23/27] riscv/ptrace: riscv cfi status and state via ptrace and in core files
` [PATCH v2 24/27] riscv: create a config for shadow stack and landing pad instr support
` [PATCH v2 25/27] riscv: Documentation for landing pad / indirect branch tracking
` [PATCH v2 26/27] riscv: Documentation for shadow stack on riscv
` [PATCH v2 27/27] kselftest/riscv: kselftest for user mode cfi

[PATCH v3] kselftest/clone3: Make test names for set_tid test stable
 2024-03-29 19:55 UTC  (5+ messages)

[PATCH v3] selftests/mm: Fix ARM related issue with fork after pthread_create
 2024-03-29 19:54 UTC  (3+ messages)

[RFC PATCH v3 0/8] mm: workingset reporting
 2024-03-29 19:43 UTC  (13+ messages)
` [RFC PATCH v3 1/8] mm: multi-gen LRU: ignore non-leaf pmd_young for force_scan=true
` [RFC PATCH v3 2/8] mm: aggregate working set information into histograms
` [RFC PATCH v3 3/8] mm: use refresh interval to rate-limit workingset report aggregation
` [RFC PATCH v3 4/8] mm: report workingset during memory pressure driven scanning
` [RFC PATCH v3 5/8] mm: extend working set reporting to memcgs
` [RFC PATCH v3 6/8] mm: add per-memcg reaccess histogram
` [RFC PATCH v3 7/8] mm: add kernel aging thread for workingset reporting
` [RFC PATCH v3 8/8] mm: test system-wide "

[PATCH net] selftests: reuseaddr_conflict: add missing new line at the end of the output
 2024-03-29 19:35 UTC  (2+ messages)

[PATCH v2] selftests/mm: include strings.h for ffsl
 2024-03-29 18:58 UTC 

[PATCH v2 00/14] Add support for suppressing warning backtraces
 2024-03-29 15:40 UTC  (6+ messages)
` [PATCH v2 12/14] sh: "

pidfd_setns_test.c:428:nsfd_incremental_setns:Too many users - Failed to setns to time namespace of 31577 via nsfd 45
 2024-03-29 13:42 UTC 

[PATCH net 0/2] mptcp: fix fallback MIB counter and wrong var in selftests
 2024-03-29 12:08 UTC  (3+ messages)
` [PATCH net 1/2] mptcp: don't account accept() of non-MPC client as fallback to TCP
` [PATCH net 2/2] selftests: mptcp: join: fix dev in check_endpoint

[PATCH] selftests: default to host arch for LLVM builds
 2024-03-29 10:49 UTC 

[PATCH RFC 00/11] riscv: support Sdtrig extension hcontext/scontext CSRs
 2024-03-29 10:31 UTC  (14+ messages)
` [PATCH RFC 01/11] dt-bindings: riscv: Add Sdtrig ISA extension
` [PATCH RFC 02/11] dt-bindings: riscv: Add Sdtrig optional CSRs existence on DT
` [PATCH RFC 03/11] riscv: Add ISA extension parsing for Sdtrig
` [PATCH RFC 04/11] riscv: Add Sdtrig CSRs definition, Smstateen bit to access Sdtrig CSRs
` [PATCH RFC 05/11] riscv: cpufeature: Add Sdtrig optional CSRs checks
` [PATCH RFC 06/11] riscv: suspend: add Smstateen CSRs save/restore
` [PATCH RFC 07/11] riscv: Add task switch support for scontext CSR
` [PATCH RFC 08/11] riscv: KVM: Add Sdtrig Extension Support for Guest/VM
` [PATCH RFC 09/11] riscv: KVM: Add scontext to ONE_REG
` [PATCH RFC 10/11] riscv: KVM: Add hcontext support
` [PATCH RFC 11/11] KVM: riscv: selftests: Add Sdtrig Extension to get-reg-list test

[linus:master] [selftests/harness] 0710a1a73f: kernel-selftests.pidfd.pidfd_setns_test.fail
 2024-03-29  2:42 UTC 

[PATCH net-next 00/14] selftests: Fixes for kernel CI
 2024-03-29  1:11 UTC  (2+ messages)

[PATCH v6 0/5] KVM: arm64: Support for 2023 dpISA extensions
 2024-03-29  0:13 UTC  (6+ messages)
` [PATCH v6 1/5] KVM: arm64: Share all userspace hardened thread data with the hypervisor
` [PATCH v6 2/5] KVM: arm64: Add newly allocated ID registers to register descriptions
` [PATCH v6 3/5] KVM: arm64: Support FEAT_FPMR for guests
` [PATCH v6 4/5] KVM: arm64: selftests: Document feature registers added in 2023 extensions
` [PATCH v6 5/5] KVM: arm64: selftests: Teach get-reg-list about FPMR

kunit alltests runs broken in mainline
 2024-03-28 22:11 UTC  (6+ messages)

[RFC PATCH net-next v7 00/14] Device Memory TCP
 2024-03-28 20:38 UTC  (5+ messages)
` [RFC PATCH net-next v7 04/14] netdev: support binding dma-buf to netdevice

[PATCH v5 0/3] selftests/resctrl: Simplify test cleanup functions
 2024-03-28 20:28 UTC  (5+ messages)

[PATCH v2 1/3] selftests: x86: test_vsyscall: reorder code to reduce #ifdef blocks
 2024-03-28 18:39 UTC  (4+ messages)
` [PATCH v2 2/3] selftests: x86: test_vsyscall: conform test to TAP format output
` [PATCH v2 3/3] selftests: x86: test_mremap_vdso: "

[PATCH] Documentation: kunit: Clarify test filter format
 2024-03-28 18:27 UTC  (2+ messages)

[PATCH 0/2] Fix selftests/mm build without requiring "make headers"
 2024-03-28 17:28 UTC  (5+ messages)
` [PATCH 1/2] selftests: break the dependency upon local header files
` [PATCH 2/2] selftests/mm: fix additional build errors for selftests

[BUG] seltests/iommu: runaway ./iommufd consuming 99% CPU after a failed assert()
 2024-03-28 13:54 UTC  (12+ messages)

[RFC PATCH net-next v6 00/15] Device Memory TCP
 2024-03-28  7:31 UTC  (7+ messages)
` [RFC PATCH net-next v6 02/15] net: page_pool: create hooks for custom page providers

[PATCH] kunit: configs: Enable CONFIG_DAMON_DBGFS_DEPRECATED for --alltests
 2024-03-27 23:32 UTC  (2+ messages)

[PATCH] selftests: iommu: add config needed for iommufd_fail_nth
 2024-03-27 20:13 UTC  (13+ messages)

[PATCH bpf-next v5 0/6] sleepable bpf_timer (was: allow HID-BPF to do device IOs)
 2024-03-27 17:02 UTC  (4+ messages)
` [PATCH bpf-next v5 1/6] bpf/helpers: introduce sleepable bpf_timers


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 read-only IMAP folder(s) and NNTP newsgroup(s).