public inbox for linux-trace-kernel@vger.kernel.org
 help / color / mirror / Atom feed
 messages from 2026-03-13 04:18:59 to 2026-03-15 12:20:35 UTC [more...]

[PATCH v6 00/17] bootconfig: fixes, cleanups, and modernization
 2026-03-15 12:20 UTC  (13+ messages)
` [PATCH v6 01/17] lib/bootconfig: add missing __init annotations to static helpers
` [PATCH v6 02/17] lib/bootconfig: fix typos, kerneldoc, and inconsistent if/else bracing
` [PATCH v6 03/17] lib/bootconfig: narrow flag parameter type from uint32_t to uint16_t
` [PATCH v6 04/17] lib/bootconfig: fix off-by-one in xbc_verify_tree() next node check
` [PATCH v6 05/17] lib/bootconfig: increment xbc_node_num after node init succeeds
` [PATCH v6 06/17] lib/bootconfig: drop redundant memset of xbc_nodes
` [PATCH v6 07/17] bootconfig: constify xbc_calc_checksum() data parameter
` [PATCH v6 08/17] lib/bootconfig: replace linux/kernel.h with specific includes
` [PATCH v6 10/17] lib/bootconfig: check xbc_init_node() return in override path
` [PATCH v6 11/17] tools/bootconfig: fix fd leak in load_xbc_file() on fstat failure
` [PATCH v6 12/17] lib/bootconfig: fix signed comparison in xbc_node_get_data()
` [PATCH v6 13/17] lib/bootconfig: use size_t for strlen result in xbc_node_match_prefix()

[PATCH v4 00/17] bootconfig: fixes, cleanups, and modernization
 2026-03-15  8:30 UTC  (27+ messages)
` [PATCH v4 01/17] lib/bootconfig: add missing __init annotations to static helpers
` [PATCH v4 02/17] lib/bootconfig: fix typo "initiized" in xbc_root_node() kerneldoc
` [PATCH v4 03/17] lib/bootconfig: fix typo "uder" in xbc_node_find_next_leaf()
` [PATCH v4 04/17] lib/bootconfig: add blank line before xbc_get_info() kerneldoc
` [PATCH v4 05/17] lib/bootconfig: fix inconsistent if/else bracing
` [PATCH v4 06/17] lib/bootconfig: narrow flag parameter type from uint32_t to uint16_t
` [PATCH v4 07/17] lib/bootconfig: fix inconsistent if/else bracing in __xbc_add_key()
` [PATCH v4 08/17] lib/bootconfig: fix off-by-one in xbc_verify_tree() next node check
` [PATCH v4 09/17] lib/bootconfig: increment xbc_node_num after node init succeeds
` [PATCH v4 10/17] lib/bootconfig: drop redundant memset of xbc_nodes
` [PATCH v4 11/17] bootconfig: use __packed macro for struct xbc_node
` [PATCH v4 12/17] bootconfig: constify xbc_calc_checksum() data parameter
` [PATCH v4 13/17] lib/bootconfig: replace linux/kernel.h with specific includes
` [PATCH v4 14/17] bootconfig: add __packed definition to tools/bootconfig shim header
` [PATCH v4 15/17] lib/bootconfig: validate child node index in xbc_verify_tree()
` [PATCH v4 16/17] lib/bootconfig: check xbc_init_node() return in override path
` [PATCH v4 17/17] tools/bootconfig: fix fd leak in load_xbc_file() on fstat failure

[PATCH net-next v2 00/14] tcp: preserve receive-window accounting across ratio drift
 2026-03-15  1:19 UTC  (18+ messages)
` [PATCH net-next v2 01/14] tcp: factor receive-memory accounting helpers
` [PATCH net-next v2 02/14] tcp: snapshot advertise-time scaling for rcv_wnd
` [PATCH net-next v2 03/14] tcp: refresh rcv_wnd snapshots at TCP write sites
` [PATCH net-next v2 04/14] tcp: snapshot the maximum advertised receive window
` [PATCH net-next v2 05/14] tcp: grow rcvbuf to back scaled-window quantization slack
` [PATCH net-next v2 06/14] tcp: regrow rcvbuf when scaling_ratio drops after advertisement
` [PATCH net-next v2 07/14] tcp: honor the maximum advertised window after live retraction
` [PATCH net-next v2 08/14] tcp: extend TCP_REPAIR_WINDOW for live and max-window snapshots
` [PATCH net-next v2 09/14] mptcp: refresh TCP receive-window snapshots on subflows
` [PATCH net-next v2 10/14] tcp: expose rmem and backlog in tcp and mptcp rcvbuf_grow tracepoints
` [PATCH net-next v2 11/14] selftests: tcp_ao: cover legacy, v1, and retracted repair windows
` [PATCH net-next v2 12/14] tun/selftests: add RX truesize injection for TCP window tests
` [PATCH net-next v2 13/14] netdevsim: add peer RX truesize support for selftests
` [PATCH net-next v2 14/14] netdevsim: release pinned PSP ext on drop paths

[PATCH v5 00/23] bootconfig: fixes, cleanups, and modernization
 2026-03-14 23:31 UTC  (24+ messages)
` [PATCH v5 01/23] lib/bootconfig: add missing __init annotations to static helpers
` [PATCH v5 02/23] lib/bootconfig: fix typo "initiized" in xbc_root_node() kerneldoc
` [PATCH v5 03/23] lib/bootconfig: fix typo "uder" in xbc_node_find_next_leaf()
` [PATCH v5 04/23] lib/bootconfig: add blank line before xbc_get_info() kerneldoc
` [PATCH v5 05/23] lib/bootconfig: fix inconsistent if/else bracing
` [PATCH v5 06/23] lib/bootconfig: narrow flag parameter type from uint32_t to uint16_t
` [PATCH v5 07/23] lib/bootconfig: fix inconsistent if/else bracing in __xbc_add_key()
` [PATCH v5 08/23] lib/bootconfig: fix off-by-one in xbc_verify_tree() next node check
` [PATCH v5 09/23] lib/bootconfig: increment xbc_node_num after node init succeeds
` [PATCH v5 10/23] lib/bootconfig: drop redundant memset of xbc_nodes
` [PATCH v5 11/23] bootconfig: use __packed macro for struct xbc_node
` [PATCH v5 12/23] bootconfig: constify xbc_calc_checksum() data parameter
` [PATCH v5 13/23] lib/bootconfig: replace linux/kernel.h with specific includes
` [PATCH v5 14/23] bootconfig: add __packed definition to tools/bootconfig shim header
` [PATCH v5 15/23] lib/bootconfig: validate child node index in xbc_verify_tree()
` [PATCH v5 16/23] lib/bootconfig: check xbc_init_node() return in override path
` [PATCH v5 17/23] tools/bootconfig: fix fd leak in load_xbc_file() on fstat failure
` [PATCH v5 18/23] lib/bootconfig: fix signed comparison in xbc_node_get_data()
` [PATCH v5 19/23] lib/bootconfig: use size_t for strlen result in xbc_node_match_prefix()
` [PATCH v5 20/23] lib/bootconfig: narrow offset type in xbc_init_node()
` [PATCH v5 21/23] lib/bootconfig: use size_t for key length tracking in xbc_verify_tree()
` [PATCH v5 22/23] lib/bootconfig: fix sign-compare in xbc_node_compose_key_after()
` [PATCH v5 23/23] lib/bootconfig: change xbc_node_index() return type to uint16_t

[PATCH v3 00/17] bootconfig: fixes, cleanups, and modernization
 2026-03-14 22:34 UTC  (18+ messages)
` [PATCH v3 01/17] lib/bootconfig: add missing __init annotations to static helpers
` [PATCH v3 02/17] lib/bootconfig: fix typo "initiized" in xbc_root_node() kerneldoc
` [PATCH v3 03/17] lib/bootconfig: fix typo "uder" in xbc_node_find_next_leaf()
` [PATCH v3 04/17] lib/bootconfig: add blank line before xbc_get_info() kerneldoc
` [PATCH v3 05/17] lib/bootconfig: fix inconsistent if/else bracing
` [PATCH v3 06/17] lib/bootconfig: narrow flag parameter type from uint32_t to uint16_t
` [PATCH v3 07/17] lib/bootconfig: fix inconsistent if/else bracing in __xbc_add_key()
` [PATCH v3 08/17] lib/bootconfig: fix off-by-one in xbc_verify_tree() next node check
` [PATCH v3 09/17] lib/bootconfig: increment xbc_node_num after node init succeeds
` [PATCH v3 10/17] lib/bootconfig: drop redundant memset of xbc_nodes
` [PATCH v3 11/17] bootconfig: use __packed macro for struct xbc_node
` [PATCH v3 12/17] bootconfig: constify xbc_calc_checksum() data parameter
` [PATCH v3 13/17] lib/bootconfig: replace linux/kernel.h with specific includes
` [PATCH v3 14/17] bootconfig: add __packed definition to tools/bootconfig shim header
` [PATCH v3 15/17] lib/bootconfig: validate child node index in xbc_verify_tree()
` [PATCH v3 16/17] lib/bootconfig: check xbc_init_node() return in override path
` [PATCH v3 17/17] tools/bootconfig: fix fd leak in load_xbc_file() on fstat failure

[PATCH v2 00/14] bootconfig: fixes, cleanups, and modernization
 2026-03-14 21:55 UTC  (15+ messages)
` [PATCH 01/14] lib/bootconfig: add missing __init annotations to static helpers
` [PATCH 02/14] lib/bootconfig: fix typo "initiized" in xbc_root_node() kerneldoc
` [PATCH 03/14] lib/bootconfig: fix typo "uder" in xbc_node_find_next_leaf()
` [PATCH 04/14] lib/bootconfig: add blank line before xbc_get_info() kerneldoc
` [PATCH 05/14] lib/bootconfig: fix inconsistent if/else bracing
` [PATCH 06/14] lib/bootconfig: narrow flag parameter type from uint32_t to uint16_t
` [PATCH 07/14] lib/bootconfig: fix inconsistent if/else bracing in __xbc_add_key()
` [PATCH 08/14] lib/bootconfig: fix off-by-one in xbc_verify_tree() next node check
` [PATCH 09/14] lib/bootconfig: increment xbc_node_num after node init succeeds
` [PATCH 10/14] lib/bootconfig: drop redundant memset of xbc_nodes
` [PATCH 11/14] bootconfig: use __packed macro for struct xbc_node
` [PATCH 12/14] bootconfig: constify xbc_calc_checksum() data parameter
` [PATCH 13/14] lib/bootconfig: replace linux/kernel.h with specific includes
` [PATCH 14/14] bootconfig: add __packed definition to tools/bootconfig shim header

[PATCH 00/15] bootconfig: fixes, cleanups, and modernization
 2026-03-14 21:45 UTC  (16+ messages)
` [PATCH 01/15] lib/bootconfig: add missing __init annotations to static helpers
` [PATCH 02/15] lib/bootconfig: fix typo "initiized" in xbc_root_node() kerneldoc
` [PATCH 03/15] lib/bootconfig: fix typo "uder" in xbc_node_find_next_leaf()
` [PATCH 04/15] lib/bootconfig: add blank line before xbc_get_info() kerneldoc
` [PATCH 05/15] lib/bootconfig: fix inconsistent if/else bracing
` [PATCH 06/15] lib/bootconfig: narrow flag parameter type from uint32_t to uint16_t
` [PATCH 07/15] lib/bootconfig: fix inconsistent if/else bracing in __xbc_add_key()
` [PATCH 08/15] lib/bootconfig: fix off-by-one in xbc_verify_tree() next node check
` [PATCH 09/15] lib/bootconfig: increment xbc_node_num after node init succeeds
` [PATCH 10/15] lib/bootconfig: drop redundant memset of xbc_nodes
` [PATCH 11/15] bootconfig: use __packed macro for struct xbc_node
` [PATCH 12/15] bootconfig: constify xbc_calc_checksum() data parameter
` [PATCH 13/15] lib/bootconfig: replace linux/kernel.h with specific includes
` [PATCH 14/15] bootconfig: add __packed definition to tools/bootconfig shim header
` [PATCH 15/15] lib/bootconfig: return empty string instead of NULL from xbc_node_get_data()

[PATCH net-next v4 00/13] devlink: introduce shared devlink instance for PFs on same chip
 2026-03-14 20:20 UTC  (2+ messages)

[PATCH v2 0/2] bootconfig: Add EBNF definition and more tests
 2026-03-14 10:10 UTC  (3+ messages)
` [PATCH v2 1/2] Documentation: bootconfig: Add EBNF definiton of bootconfig
` [PATCH v2 2/2] bootconfig: Add more test samples

[PATCH 0/2] bootconfig: Add EBNF definition and more tests
 2026-03-14  9:34 UTC  (4+ messages)
` [PATCH 1/2] Documentation: bootconfig: Add EBNF definiton of bootconfig
` [PATCH 2/2] bootconfig: Add more test samples

[PATCH 00/15] tracepoint: Avoid double static_branch evaluation at guarded call sites
 2026-03-14  0:24 UTC  (20+ messages)
` [PATCH 01/15] tracepoint: Add trace_invoke_##name() API
` [PATCH 06/15] cpufreq: Use trace_invoke_##name() at guarded tracepoint call sites
` [PATCH 15/15] btrfs: "

[PATCH 00/61] treewide: Use IS_ERR_OR_NULL over manual NULL check - refactor
 2026-03-13 19:22 UTC  (3+ messages)
` [PATCH 02/61] btrfs: Prefer IS_ERR_OR_NULL over manual NULL check

[PATCH v2] tracing: Generate undef symbols allowlist for simple_ring_buffer
 2026-03-13 16:37 UTC  (2+ messages)

[PATCH RFC v3 00/43] guest_memfd: In-place conversion support
 2026-03-13 15:45 UTC  (45+ messages)
` [PATCH RFC v3 01/43] KVM: guest_memfd: Introduce per-gmem attributes, use to guard user mappings
` [PATCH RFC v3 02/43] KVM: Rename KVM_GENERIC_MEMORY_ATTRIBUTES to KVM_VM_MEMORY_ATTRIBUTES
` [PATCH RFC v3 03/43] KVM: Enumerate support for PRIVATE memory iff kvm_arch_has_private_mem is defined
` [PATCH RFC v3 04/43] KVM: Stub in ability to disable per-VM memory attribute tracking
` [PATCH RFC v3 05/43] KVM: guest_memfd: Wire up kvm_get_memory_attributes() to per-gmem attributes
` [PATCH RFC v3 06/43] KVM: guest_memfd: Update kvm_gmem_populate() to use gmem attributes
` [PATCH RFC v3 07/43] KVM: Introduce KVM_SET_MEMORY_ATTRIBUTES2
` [PATCH RFC v3 08/43] KVM: guest_memfd: Enable INIT_SHARED on guest_memfd for x86 Coco VMs
` [PATCH RFC v3 09/43] KVM: guest_memfd: Add support for KVM_SET_MEMORY_ATTRIBUTES2
` [PATCH RFC v3 10/43] KVM: guest_memfd: Handle lru_add fbatch refcounts during conversion safety check
` [PATCH RFC v3 11/43] KVM: Move KVM_VM_MEMORY_ATTRIBUTES config definition to x86
` [PATCH RFC v3 12/43] KVM: Let userspace disable per-VM mem attributes, enable per-gmem attributes
` [PATCH RFC v3 13/43] KVM: selftests: Create gmem fd before "regular" fd when adding memslot
` [PATCH RFC v3 14/43] KVM: selftests: Rename guest_memfd{,_offset} to gmem_{fd,offset}
` [PATCH RFC v3 15/43] KVM: selftests: Add support for mmap() on guest_memfd in core library
` [PATCH RFC v3 16/43] KVM: selftests: Add selftests global for guest memory attributes capability
` [PATCH RFC v3 17/43] KVM: selftests: Update framework to use KVM_SET_MEMORY_ATTRIBUTES2
` [PATCH RFC v3 18/43] KVM: selftests: Add helpers for calling ioctls on guest_memfd
` [PATCH RFC v3 19/43] KVM: selftests: Test using guest_memfd for guest private memory
` [PATCH RFC v3 20/43] KVM: selftests: Test basic single-page conversion flow
` [PATCH RFC v3 21/43] KVM: selftests: Test conversion flow when INIT_SHARED
` [PATCH RFC v3 22/43] KVM: selftests: Test indexing in guest_memfd
` [PATCH RFC v3 23/43] KVM: selftests: Test conversion before allocation
` [PATCH RFC v3 24/43] KVM: selftests: Convert with allocated folios in different layouts
` [PATCH RFC v3 25/43] KVM: selftests: Test precision of conversion
` [PATCH RFC v3 26/43] KVM: selftests: Test that truncation does not change shared/private status
` [PATCH RFC v3 27/43] KVM: selftests: Test that shared/private status is consistent across processes
` [PATCH RFC v3 28/43] KVM: selftests: Test conversion with elevated page refcount
` [PATCH RFC v3 29/43] KVM: selftests: Reset shared memory after hole-punching
` [PATCH RFC v3 30/43] KVM: selftests: Provide function to look up guest_memfd details from gpa
` [PATCH RFC v3 31/43] KVM: selftests: Provide common function to set memory attributes
` [PATCH RFC v3 32/43] KVM: selftests: Check fd/flags provided to mmap() when setting up memslot
` [PATCH RFC v3 33/43] KVM: selftests: Make TEST_EXPECT_SIGBUS thread-safe
` [PATCH RFC v3 34/43] KVM: selftests: Update private_mem_conversions_test to mmap() guest_memfd
` [PATCH RFC v3 35/43] KVM: selftests: Add script to exercise private_mem_conversions_test
` [PATCH RFC v3 36/43] KVM: selftests: Update pre-fault test to work with per-guest_memfd attributes
` [PATCH RFC v3 37/43] KVM: selftests: Update private memory exits test work with per-gmem attributes
` [PATCH RFC v3 38/43] KVM: guest_memfd: Introduce default handlers for content modes
` [PATCH RFC v3 39/43] KVM: guest_memfd: Apply content modes while setting memory attributes
` [PATCH RFC v3 40/43] KVM: x86: Add support for applying content modes
` [PATCH RFC v3 41/43] KVM: x86: Support content mode ZERO for TDX
` [PATCH RFC v3 42/43] KVM: selftests: Allow flags to be specified in set_memory_attributes functions
` [PATCH RFC v3 43/43] KVM: selftests: Update tests to use flag-enabled library functions

[PATCH v3 0/4] tracing/preemptirq: Optimize disabled tracepoint overhead
 2026-03-13 15:36 UTC  (6+ messages)
` [PATCH v3 1/4] tracing/preemptirq: Optimize preempt_disable/enable() "

[PATCH v7 00/15] rv: Add Hybrid Automata monitor type, per-object and deadline monitors
 2026-03-13 13:23 UTC  (5+ messages)
` [PATCH v7 05/15] Documentation/rv: Add documentation about hybrid automata

[PATCH] tracing: Generate undef symbols allowlist for simple_ring_buffer
 2026-03-13 10:23 UTC  (3+ messages)

[RFC PATCH v2 00/37] guest_memfd: In-place conversion support
 2026-03-13  8:32 UTC  (10+ messages)
` [RFC PATCH v2 09/37] KVM: guest_memfd: Add support for KVM_SET_MEMORY_ATTRIBUTES2

[PATCH v2 0/3] lib/bootconfig: three bug fixes
 2026-03-13  7:10 UTC  (3+ messages)
` [PATCH] bootconfig: Add bootconfig tests about braces


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox