messages from 2024-12-07 21:46:41 to 2025-09-21 17:28:47 UTC [more...]
[PATCH 00/27 5.10.y] Backport minmax.h updates from v6.17-rc6
2025-09-21 17:28 UTC (31+ messages)
` [PATCH 01/27 5.10.y] overflow, tracing: Define the is_signed_type() macro once
` [PATCH 02/27 5.10.y] minmax: sanity check constant bounds when clamping
` [PATCH 03/27 5.10.y] minmax: clamp more efficiently by avoiding extra comparison
` [PATCH 04/27 5.10.y] minmax: add in_range() macro
` [PATCH 05/27 5.10.y] minmax: Introduce {min,max}_array()
` [PATCH 06/27 5.10.y] minmax: deduplicate __unconst_integer_typeof()
` [PATCH 07/27 5.10.y] minmax: fix header inclusions
` [PATCH 08/27 5.10.y] minmax: allow min()/max()/clamp() if the arguments have the same signedness
` [PATCH 09/27 5.10.y] minmax: fix indentation of __cmp_once() and __clamp_once()
` [PATCH 10/27 5.10.y] minmax: allow comparisons of 'int' against 'unsigned char/short'
` [PATCH 11/27 5.10.y] minmax: relax check to allow comparison between unsigned arguments and signed constants
` [PATCH 12/27 5.10.y] minmax: avoid overly complicated constant expressions in VM code
` [PATCH 13/27 5.10.y] minmax: add a few more MIN_T/MAX_T users
` [PATCH 14/27 5.10.y] minmax: simplify and clarify min_t()/max_t() implementation
` [PATCH 15/27 5.10.y] minmax: make generic MIN() and MAX() macros available everywhere
` [PATCH 16/27 5.10.y] lib: zstd: drop local MIN/MAX macros in favor of generic ones
` [PATCH 17/27 5.10.y] minmax: don't use max() in situations that want a C constant expression
` [PATCH 18/27 5.10.y] minmax: simplify min()/max()/clamp() implementation
` [PATCH 19/27 5.10.y] minmax: improve macro expansion and type checking
` [PATCH 20/27 5.10.y] minmax: fix up min3() and max3() too
` [PATCH 21/27 5.10.y] minmax.h: add whitespace around operators and after commas
` [PATCH 22/27 5.10.y] minmax.h: update some comments
` [PATCH 23/27 5.10.y] minmax.h: reduce the #define expansion of min(), max() and clamp()
` [PATCH 24/27 5.10.y] minmax.h: use BUILD_BUG_ON_MSG() for the lo < hi test in clamp()
` [PATCH 25/27 5.10.y] minmax.h: move all the clamp() definitions after the min/max() ones
` [PATCH 26/27 5.10.y] minmax.h: simplify the variants of clamp()
` [PATCH 27/27 5.10.y] minmax.h: remove some #defines that are only expanded once
[PATCH] Warn about "unsigned value that used to be signed against zero"
2025-09-21 15:16 UTC (2+ messages)
[PATCH v3 00/35] Compiler-Based Capability- and Locking-Analysis
2025-09-20 12:44 UTC (57+ messages)
` [PATCH v3 01/35] compiler_types: Move lock checking attributes to compiler-capability-analysis.h
` [PATCH v3 02/35] compiler-capability-analysis: Add infrastructure for Clang's capability analysis
` [PATCH v3 03/35] compiler-capability-analysis: Add test stub
` [PATCH v3 04/35] Documentation: Add documentation for Compiler-Based Capability Analysis
` [PATCH v3 05/35] checkpatch: Warn about capability_unsafe() without comment
` [PATCH v3 06/35] cleanup: Basic compatibility with capability analysis
` [PATCH v3 07/35] lockdep: Annotate lockdep assertions for "
` [PATCH v3 08/35] locking/rwlock, spinlock: Support Clang's "
` [PATCH v3 09/35] compiler-capability-analysis: Change __cond_acquires to take return value
` [PATCH v3 10/35] locking/mutex: Support Clang's capability analysis
` [PATCH v3 11/35] locking/seqlock: "
` [PATCH v3 12/35] bit_spinlock: Include missing <asm/processor.h>
` [PATCH v3 13/35] bit_spinlock: Support Clang's capability analysis
` [PATCH v3 14/35] rcu: "
` [PATCH v3 15/35] srcu: "
` [PATCH v3 16/35] kref: Add capability-analysis annotations
` [PATCH v3 17/35] locking/rwsem: Support Clang's capability analysis
` [PATCH v3 18/35] locking/local_lock: Include missing headers
` [PATCH v3 19/35] locking/local_lock: Support Clang's capability analysis
` [PATCH v3 20/35] locking/ww_mutex: "
` [PATCH v3 21/35] debugfs: Make debugfs_cancellation a capability struct
` [PATCH v3 22/35] compiler-capability-analysis: Remove Sparse support
` [PATCH v3 23/35] compiler-capability-analysis: Remove __cond_lock() function-like helper
` [PATCH v3 24/35] compiler-capability-analysis: Introduce header suppressions
` [PATCH v3 25/35] compiler: Let data_race() imply disabled capability analysis
` [PATCH v3 26/35] MAINTAINERS: Add entry for Capability Analysis
` [PATCH v3 27/35] kfence: Enable capability analysis
` [PATCH v3 28/35] kcov: "
` [PATCH v3 29/35] kcsan: "
` [PATCH v3 30/35] stackdepot: "
` [PATCH v3 31/35] rhashtable: "
` [PATCH v3 32/35] printk: Move locking annotation to printk.c
` [PATCH v3 33/35] security/tomoyo: Enable capability analysis
` [PATCH v3 34/35] crypto: "
` [PATCH v3 35/35] sched: Enable capability analysis for core.c and fair.c
` [syzbot ci] Re: Compiler-Based Capability- and Locking-Analysis
[PATCH 0/7 5.10.y] Cherry pick of minmax.h commits from 5.15.y
2025-09-19 10:41 UTC (9+ messages)
` [PATCH 1/7 5.10.y] tracing: Define the is_signed_type() macro once
` [PATCH 2/7 5.10.y] minmax: sanity check constant bounds when clamping
` [PATCH 3/7 5.10.y] minmax: clamp more efficiently by avoiding extra comparison
` [PATCH 4/7 5.10.y] minmax: fix header inclusions
Outsourced welding teams
2025-09-19 7:55 UTC
Sparse maintainership
2025-09-18 18:28 UTC (4+ messages)
[PATCH 5/7 5.10.y] minmax: allow min()/max()/clamp() if the arguments have the same signedness
2025-09-17 8:00 UTC (2+ messages)
[PATCH 7/7 5.10.y] minmax: relax check to allow comparison between unsigned arguments and signed constants
2025-09-16 21:32 UTC
[PATCH 6/7 5.10.y] minmax: allow comparisons of 'int' against 'unsigned char/short'
2025-09-16 21:31 UTC
[PATCH v3 0/4 5.10.y] overflow: Allow mixed type arguments in overflow macros
2025-09-13 11:44 UTC (6+ messages)
` [PATCH v3 1/4 5.10.y] overflow: Correct check_shl_overflow() comment
` [PATCH v3 2/4 5.10.y] compiler.h: drop fallback overflow checkers
` [PATCH v3 3/4 5.10.y] overflow: Allow mixed type arguments
` [PATCH v3 4/4 5.10.y] tracing: Define the is_signed_type() macro once
Project status
2025-09-13 5:07 UTC
[PATCH v2 0/4 5.10.y] overflow: Allow mixed type arguments in overflow macros
2025-09-12 18:56 UTC (8+ messages)
` [PATCH v2 1/4 5.10.y] overflow: Correct check_shl_overflow() comment
` [PATCH v2 2/4 5.10.y] compiler.h: drop fallback overflow checkers
` [PATCH v2 3/4 5.10.y] overflow: Allow mixed type arguments
` [PATCH v2 4/4 5.10.y] tracing: Define the is_signed_type() macro once
[PATCH 0/4 5.10.y] overflow: Allow mixed type arguments in overflow macros
2025-09-12 15:32 UTC (7+ messages)
` [PATCH 1/4 5.10.y] overflow: Correct check_shl_overflow() comment
` [PATCH 2/4 5.10.y] compiler.h: drop fallback overflow checkers
` [PATCH 3/4 5.10.y] overflow: Allow mixed type arguments
` [PATCH 4/4 5.10.y] tracing: Define the is_signed_type() macro once
[PATCH v2 0/7] Replace "__auto_type" with "auto"
2025-07-22 16:40 UTC (13+ messages)
` [PATCH v2 1/7] compiler_types.h: add "auto" as a macro for "__auto_type"
` [PATCH v2 2/7] include/linux: change "__auto_type" to "auto"
` [PATCH v2 3/7] fs/proc: replace "__auto_type" with "const auto"
` [PATCH v2.1 "
` [PATCH v2 4/7] arch/nios2: replace "__auto_type" and adjacent equivalent with "auto"
` [PATCH v2 5/7] arch/x86: replace "__auto_type" "
` [PATCH v2 6/7] selftests/bpf: "
` [PATCH v2 7/7] tools/virtio: "
[PATCH 0/7] Replace "__auto_type" with "auto"
2025-07-19 14:26 UTC (15+ messages)
` [PATCH 1/7] compiler_types.h: add "auto" as a macro for "__auto_type"
` [PATCH 2/7] include/linux: change "__auto_type" to "auto"
` [PATCH 3/7] fs/proc: replace "__auto_type" with "auto"
` [PATCH 4/7] arch/nios: "
` [PATCH 5/7] arch/x86: "
` [PATCH 6/7] selftests/bpf: "
` [PATCH 7/7] tools/virtio: "
High-speed, Bulk, Multi-threaded, Built-in Proxies ..
2025-07-11 14:20 UTC
[BUG] Alignment of structure members does not always propagate
2025-07-03 11:19 UTC
High-speed, Bulk, Multi-threaded, Built-in Proxies ..
2025-06-09 1:09 UTC
[PATCH v11 0/6] platform/x86: Add Lenovo WMI Gaming Series Drivers
2025-05-31 6:14 UTC
Automated Bulk email sending software: http protocol,Fully Automated, High-speed, Bulk, Multi-threaded, Built-in Proxies. . .2
2025-05-29 6:12 UTC
[PATCH] kbuild: Switch from -Wvla to -Wvla-larger-than=0
2025-04-21 16:43 UTC (2+ messages)
[PATCH v2] build_bug.h: more user friendly error messages in BUILD_BUG_ON_ZERO()
2025-04-14 21:55 UTC (8+ messages)
Issue with Setting Up Sparse
2025-03-12 15:11 UTC (2+ messages)
[PATCH net-next v2] af_unix: Fix undefined 'other' error
2025-02-18 13:37 UTC (5+ messages)
[RFC 0/2] refcount: attempt to avoid imbalance warnings
2025-02-08 2:52 UTC (3+ messages)
[geert-m68k:master 2/2] lib/muldi3.c:53:28: sparse: sparse: asm output is not an lvalue
2025-01-08 18:10 UTC (4+ messages)
[PATCH v4 0/2] add const_true() to simplify GENMASK_INPUT_CHECK()
2024-12-31 4:58 UTC (5+ messages)
` [PATCH v4 1/2] compiler.h: add const_true()
[RFC PATCH 00/28] x86: Rely on toolchain for relocatable code
2024-12-19 12:02 UTC (5+ messages)
` [RFC PATCH 02/28] Documentation: Bump minimum GCC version to 8.1
[PATCH 00/10] compiler.h: refactor __is_constexpr() into is_const{,_true,_false}()
2024-12-09 12:32 UTC (41+ messages)
` [PATCH 02/10] compiler.h: add is_const() as a replacement of __is_constexpr()
` [PATCH 05/10] minmax: simplify __clamp_once() by using is_const_false()
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).