messages from 2025-07-30 00:38:03 to 2025-08-07 20:16:10 UTC [more...]
[PATCH] perf: use standard syscall tracepoint structs for augmentation
2025-08-07 20:16 UTC (3+ messages)
[PATCH v5 0/2] perf/s390: Regression: Move uid filtering to BPF filters
2025-08-07 16:20 UTC (4+ messages)
` [PATCH v5 1/2] libbpf: Add the ability to suppress perf event enablement
` [PATCH v5 2/2] perf bpf-filter: Enable events manually
linux-6.16/tools/perf/util/tool_pmu.c:242: Pointless test ?
2025-08-07 5:24 UTC (3+ messages)
[PATCH v4 0/2] perf/s390: Regression: Move uid filtering to BPF filters
2025-08-07 5:02 UTC (7+ messages)
` [PATCH v4 1/2] libbpf: Add the ability to suppress perf event enablement
` [PATCH v4 2/2] perf bpf-filter: Enable events manually
[PATCH 0/5] Perf kvm commands bug fix
2025-08-07 3:08 UTC (15+ messages)
` [PATCH 1/5] perf tools kvm: Add missed memory allocation check and free
` [PATCH 2/5] perf tools kvm: Fix the potential out of range memory access issue
` [PATCH 3/5] perf tools: Add helper x86__is_intel_cpu()
` [PATCH 4/5] perf tools kvm: Use "cycles" to sample guest for "kvm record" on Intel
` [PATCH 5/5] perf tools kvm: Use "cycles" to sample guest for "kvm top" "
[PATCH] perf: use __builtin_preserve_field_info for GCC compatibility
2025-08-07 0:27 UTC (5+ messages)
[PATCH v5 00/44] KVM: x86: Add support for mediated vPMUs
2025-08-06 19:57 UTC (45+ messages)
` [PATCH v5 01/44] perf: Skip pmu_ctx based on event_type
` [PATCH v5 02/44] perf: Add generic exclude_guest support
` [PATCH v5 03/44] perf: Move security_perf_event_free() call to __free_event()
` [PATCH v5 04/44] perf: Add APIs to create/release mediated guest vPMUs
` [PATCH v5 05/44] perf: Clean up perf ctx time
` [PATCH v5 06/44] perf: Add a EVENT_GUEST flag
` [PATCH v5 07/44] perf: Add APIs to load/put guest mediated PMU context
` [PATCH v5 08/44] perf: core/x86: Register a new vector for handling mediated guest PMIs
` [PATCH v5 09/44] perf/x86: Switch LVTPC to/from mediated PMI vector on guest load/put context
` [PATCH v5 10/44] perf/x86/core: Do not set bit width for unavailable counters
` [PATCH v5 11/44] perf/x86/core: Plumb mediated PMU capability from x86_pmu to x86_pmu_cap
` [PATCH v5 12/44] perf/x86/intel: Support PERF_PMU_CAP_MEDIATED_VPMU
` [PATCH v5 13/44] perf/x86/amd: Support PERF_PMU_CAP_MEDIATED_VPMU for AMD host
` [PATCH v5 14/44] KVM: VMX: Setup canonical VMCS config prior to kvm_x86_vendor_init()
` [PATCH v5 15/44] KVM: SVM: Check pmu->version, not enable_pmu, when getting PMC MSRs
` [PATCH v5 16/44] KVM: Add a simplified wrapper for registering perf callbacks
` [PATCH v5 17/44] KVM: x86/pmu: Snapshot host (i.e. perf's) reported PMU capabilities
` [PATCH v5 18/44] KVM: x86/pmu: Start stubbing in mediated PMU support
` [PATCH v5 19/44] KVM: x86/pmu: Implement Intel mediated PMU requirements and constraints
` [PATCH v5 20/44] KVM: x86/pmu: Implement AMD mediated PMU requirements
` [PATCH v5 21/44] KVM: x86/pmu: Register PMI handler for mediated vPMU
` [PATCH v5 22/44] KVM: x86: Rename vmx_vmentry/vmexit_ctrl() helpers
` [PATCH v5 23/44] KVM: x86/pmu: Move PMU_CAP_{FW_WRITES,LBR_FMT} into msr-index.h header
` [PATCH v5 24/44] KVM: x86: Rework KVM_REQ_MSR_FILTER_CHANGED into a generic RECALC_INTERCEPTS
` [PATCH v5 25/44] KVM: x86: Use KVM_REQ_RECALC_INTERCEPTS to react to CPUID updates
` [PATCH v5 26/44] KVM: VMX: Add helpers to toggle/change a bit in VMCS execution controls
` [PATCH v5 27/44] KVM: x86/pmu: Disable RDPMC interception for compatible mediated vPMU
` [PATCH v5 28/44] KVM: x86/pmu: Load/save GLOBAL_CTRL via entry/exit fields for mediated PMU
` [PATCH v5 29/44] KVM: x86/pmu: Use BIT_ULL() instead of open coded equivalents
` [PATCH v5 30/44] KVM: x86/pmu: Move initialization of valid PMCs bitmask to common x86
` [PATCH v5 31/44] KVM: x86/pmu: Restrict GLOBAL_{CTRL,STATUS}, fixed PMCs, and PEBS to PMU v2+
` [PATCH v5 32/44] KVM: x86/pmu: Disable interception of select PMU MSRs for mediated vPMUs
` [PATCH v5 33/44] KVM: x86/pmu: Bypass perf checks when emulating mediated PMU counter accesses
` [PATCH v5 34/44] KVM: x86/pmu: Introduce eventsel_hw to prepare for pmu event filtering
` [PATCH v5 35/44] KVM: x86/pmu: Reprogram mediated PMU event selectors on event filter updates
` [PATCH v5 36/44] KVM: x86/pmu: Always stuff GuestOnly=1,HostOnly=0 for mediated PMCs on AMD
` [PATCH v5 37/44] KVM: x86/pmu: Load/put mediated PMU context when entering/exiting guest
` [PATCH v5 38/44] KVM: x86/pmu: Disallow emulation in the fastpath if mediated PMCs are active
` [PATCH v5 39/44] KVM: x86/pmu: Handle emulated instruction for mediated vPMU
` [PATCH v5 40/44] KVM: nVMX: Add macros to simplify nested MSR interception setting
` [PATCH v5 41/44] KVM: nVMX: Disable PMU MSR interception as appropriate while running L2
` [PATCH v5 42/44] KVM: nSVM: "
` [PATCH v5 43/44] KVM: x86/pmu: Expose enable_mediated_pmu parameter to user space
` [PATCH v5 44/44] KVM: x86/pmu: Elide WRMSRs when loading guest PMCs if values already match
[PATCH V4 00/16] perf: Fix the throttle logic for group
2025-08-06 17:05 UTC (5+ messages)
` [PATCH V4 07/16] s390/perf: Remove driver-specific throttle support
[PATCH v3 0/2] perf/s390: Regression: Move uid filtering to BPF filters
2025-08-06 11:29 UTC (9+ messages)
` [PATCH v3 1/2] libbpf: Add the ability to suppress perf event enablement
` [PATCH v3 2/2] perf bpf-filter: Enable events manually
[PATCH v9 00/16] New perf ilist app
2025-08-06 3:15 UTC (9+ messages)
` [PATCH v9 04/16] perf tp_pmu: Factor existing tracepoint logic to new file
` [PATCH v9 10/16] perf python: Add function returning dictionary of all events on a PMU
` [PATCH v9 11/16] perf ilist: Add new python ilist command
[PATCH 0/8] riscv: add initial support for hardware breakpoints
2025-08-05 19:39 UTC (9+ messages)
` [PATCH 1/8] riscv: Add insn.c, consolidate instruction decoding
` [PATCH 2/8] riscv: Add SBI debug trigger extension and function ids
` [PATCH 3/8] riscv: insn: Add get_insn_nofault
` [PATCH 4/8] riscv: Introduce support for hardware break/watchpoints
` [PATCH 5/8] riscv: hw_breakpoint: Use icount for single stepping
` [PATCH 6/8] riscv: ptrace: Add hw breakpoint support
` [PATCH 7/8] riscv: ptrace: Add hw breakpoint regset
` [PATCH 8/8] selftests: riscv: Add test for hardware breakpoints
[PATCH v3 0/6] perf auxtrace: Support AUX pause and resume with BPF
2025-08-05 19:16 UTC (4+ messages)
[PATCH] perf build: Allow using compiler wrappers with CLANG
2025-08-05 12:09 UTC
[PATCH] uprobes: Remove redundant __GFP_NOWARN
2025-08-05 11:33 UTC (2+ messages)
[PATCH v6 0/3] Add support for long task name
2025-08-05 11:13 UTC (7+ messages)
` [PATCH v6 2/3] treewide: Switch memcpy() users of 'task->comm' to a more safer implementation
[PATCH] perf/docu: Update header documentation on BPF_PROG_INFO
2025-08-05 9:03 UTC
[syzbot] [perf?] KASAN: slab-use-after-free Read in __task_pid_nr_ns
2025-08-05 8:58 UTC
[PATCH] perf: pmu: Fix IS_ERR() vs NULL check bug in perf_pmu__init
2025-08-05 6:32 UTC
[PATCH v1 00/11] Implement support for IBS virtualization
2025-08-05 1:10 UTC (7+ messages)
` [PATCH v1 04/11] KVM: x86: Add emulation support for Extented LVT registers
[PATCH v4 00/38] Mediated vPMU 4.0 for x86
2025-08-05 0:54 UTC (9+ messages)
` [PATCH v4 20/38] KVM: x86/pmu: Check if mediated vPMU can intercept rdpmc
[PATCH 0/3] perf: arm_spe: Add support for SPE VM interface
2025-08-04 21:49 UTC (14+ messages)
` [PATCH 2/3] perf: arm_spe: Disable buffer before writing to PMBPTR_EL1 or PMBSR_EL1
[PATCH] perf test: Added .gitignore to shell base_report
2025-08-04 17:41 UTC
[perf test] Question on TODO in test_basic.sh for showcpuutilization
2025-08-04 17:12 UTC
[PATCH v2 00/10] Introduce structure for shell tests
2025-08-04 14:39 UTC (6+ messages)
` [PATCH v3 0/7] "
` [PATCH v3 3/7] perf test: Provide setup for the shell test suite
[PATCH v1 0/7] perf bench: Add qspinlock benchmark
2025-08-04 14:28 UTC (15+ messages)
` [PATCH v1 1/7] tools: Import cmpxchg and xchg functions
` [PATCH v1 3/7] tools: Partial import of prefetch.h
` [PATCH v1 4/7] tools: Implement userspace per-cpu
` [PATCH v1 6/7] perf bench: Add 'bench sync qspinlock' subcommand
` [PATCH v1 7/7] perf bench sync: Add latency histogram functionality
[PATCH] perf auxtrace: Avoid redundant NULL check in auxtrace_mmap_params__set_idx()
2025-08-04 12:08 UTC (2+ messages)
[PATCH] perf: riscv: skip empty batches in counter start
2025-08-04 4:54 UTC (2+ messages)
[GIT PULL] perf-tools updates for v6.17
2025-08-02 0:40 UTC (2+ messages)
[PATCH v2 1/1] perf test: Ensure lock contention using pipe mode
2025-08-01 17:24 UTC (6+ messages)
[PATCH 1/1 v6.17] perf python: Stop using deprecated PyUnicode_AsString()
2025-08-01 17:24 UTC (2+ messages)
[PATCH] perf record: Cache build-ID of hit DSOs only
2025-08-01 17:24 UTC (5+ messages)
[PATCH] perf tools c2c: Add annotation support to perf c2c report
2025-08-01 7:51 UTC
[PATCH v5 00/20] Introduce STM32 DDR PMU for STM32MP platforms
2025-07-31 13:54 UTC (16+ messages)
` [PATCH v5 02/20] dt-bindings: stm32: stm32mp25: add `#access-controller-cells` property
` [PATCH v5 05/20] dt-bindings: memory: factorise LPDDR props into SDRAM props
` [PATCH v5 06/20] dt-bindings: memory: introduce DDR4
` [PATCH v5 07/20] dt-bindings: memory: factorise LPDDR channel binding into SDRAM channel
` [PATCH v5 08/20] dt-binding: memory: add DDR4 channel compatible
` [PATCH v5 09/20] dt-bindings: memory: SDRAM channel: standardise node name
` [PATCH v5 12/20] dt-bindings: perf: stm32: introduce DDRPERFM dt-bindings
[PATCH v4 00/15] perf arm-spe: Support new events in FEAT_SPEv1p4
2025-07-31 13:25 UTC (16+ messages)
` [PATCH v4 01/15] perf: arm_spe: Support FEAT_SPEv1p4 filters
` [PATCH v4 02/15] perf: arm_spe: Expose event filter
` [PATCH v4 03/15] perf arm_spe: Correct setting remote access
` [PATCH v4 04/15] perf arm_spe: Correct memory level for "
` [PATCH v4 05/15] perf arm_spe: Use full type for data_src
` [PATCH v4 06/15] perf arm_spe: Directly propagate raw event
` [PATCH v4 07/15] perf arm_spe: Decode event types for new features
` [PATCH v4 08/15] perf arm_spe: Add "event_filter" entry in meta data
` [PATCH v4 09/15] perf arm_spe: Refine memory level filling
` [PATCH v4 10/15] perf arm_spe: Separate setting of memory levels for loads and stores
` [PATCH v4 11/15] perf arm_spe: Fill memory levels for FEAT_SPEv1p4
` [PATCH v4 12/15] perf arm_spe: Improve CPU number retrieving in per-thread mode
` [PATCH v4 13/15] perf arm_spe: Refactor arm_spe__get_metadata_by_cpu()
` [PATCH v4 14/15] perf arm_spe: Set HITM flag
` [PATCH v4 15/15] perf arm_spe: Allow parsing both data source and events
[PATCH v1 0/5] perf bench: Add rcu to the 'bench sync' collection
2025-07-31 13:26 UTC (6+ messages)
` [PATCH v1 1/5] perf bench: Add RCU benchmark using rcuscale kernel module
` [PATCH v1 2/5] perf bench: Implement subprocess execution for 'sync rcu'
` [PATCH v1 3/5] perf bench: Add 'range' mode to "
` [PATCH v1 4/5] perf bench: Add 'ratio' "
` [PATCH v1 5/5] perf bench: Add documentation for 'sync rcu' suite
[PATCH RESEND v3 5/6] perf record: Support AUX pause and resume with BPF
2025-07-31 10:57 UTC (4+ messages)
[PATCH] perf/x86/intel/uncore: remove dead check
2025-07-31 9:58 UTC
[PATCH v2] perf/s390: Regression: Move uid filtering to BPF filters
2025-07-31 9:31 UTC (3+ messages)
[PATCH bpf] libbpf: eBPF fails on events with auxiliary data
2025-07-31 7:41 UTC (3+ messages)
[linux-next:master] [perf stat] faebee18d7: perf-sanity-tests.perf_stat_CSV_output_linter.fail
2025-07-31 7:12 UTC
[PATCH v2 1/2] perf topdown: Use attribute to see an event is a topdown metic or slots
2025-07-30 18:14 UTC (4+ messages)
[PATCH v5 13/20] perf: stm32: introduce DDRPERFM driver
2025-07-30 14:43 UTC (2+ messages)
[perf] fuzzer triggers BUG: KASAN: wild-memory-access in x86_pmu_stop
2025-07-30 13:53 UTC
[GIT PULL] Performance events updates for v6.17
2025-07-30 3:39 UTC (2+ messages)
[PATCH 0/6] KVM: Export KVM-internal symbols for sub-modules only
2025-07-30 2:14 UTC (3+ messages)
` [PATCH 6/6] x86: Restrict KVM-induced symbol exports to KVM modules where obvious/possible
[perf] fuzzer triggers "BUG: kernel NULL pointer dereference"
2025-07-30 1:54 UTC (6+ messages)
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;
as well as URLs for NNTP newsgroup(s).