linux-sparse.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2025-09-18 14:06:06 to 2025-10-03 13:01:47 UTC [more...]

[PATCH v2 00/19 5.15.y] Backport minmax.h updates from v6.17-rc7
 2025-10-03 12:59 UTC  (3+ messages)
` [PATCH v2 01/19 5.15.y] minmax: add in_range() macro
` [PATCH v2 02/19 5.15.y] minmax: Introduce {min,max}_array()

[PATCH v4 00/11 6.1.y] Backport minmax.h updates from v6.17-rc7
 2025-10-03 12:15 UTC  (12+ messages)
` [PATCH v4 01/11 6.1.y] minmax: don't use max() in situations that want a C constant expression
` [PATCH v4 02/11 6.1.y] minmax: simplify min()/max()/clamp() implementation
` [PATCH v4 03/11 6.1.y] minmax: improve macro expansion and type checking
` [PATCH v4 04/11 6.1.y] minmax: fix up min3() and max3() too
` [PATCH v4 05/11 6.1.y] minmax.h: add whitespace around operators and after commas
` [PATCH v4 06/11 6.1.y] minmax.h: update some comments
` [PATCH v4 07/11 6.1.y] minmax.h: reduce the #define expansion of min(), max() and clamp()
` [PATCH v4 08/11 6.1.y] minmax.h: use BUILD_BUG_ON_MSG() for the lo < hi test in clamp()
` [PATCH v4 09/11 6.1.y] minmax.h: move all the clamp() definitions after the min/max() ones
` [PATCH v4 10/11 6.1.y] minmax.h: simplify the variants of clamp()
` [PATCH v4 11/11 6.1.y] minmax.h: remove some #defines that are only expanded once

[PATCH 00/19 5.15.y] Backport minmax.h updates from v6.17-rc7
 2025-10-02 20:47 UTC  (20+ messages)
` [PATCH 01/19 5.15.y] minmax: add in_range() macro
` [PATCH 02/19 5.15.y] minmax: Introduce {min,max}_array()
` [PATCH 03/19 5.15.y] minmax: deduplicate __unconst_integer_typeof()
` [PATCH 04/19 5.15.y] minmax: fix indentation of __cmp_once() and __clamp_once()
` [PATCH 05/19 5.15.y] minmax: avoid overly complicated constant expressions in VM code
` [PATCH 06/19 5.15.y] minmax: make generic MIN() and MAX() macros available everywhere
` [PATCH 07/19 5.15.y] minmax: add a few more MIN_T/MAX_T users
` [PATCH 08/19 5.15.y] minmax: simplify and clarify min_t()/max_t() implementation
` [PATCH 09/19 5.15.y] minmax: simplify min()/max()/clamp() implementation
` [PATCH 10/19 5.15.y] minmax: don't use max() in situations that want a C constant expression
` [PATCH 11/19 5.15.y] minmax: improve macro expansion and type checking
` [PATCH 12/19 5.15.y] minmax: fix up min3() and max3() too
` [PATCH 13/19 5.15.y] minmax.h: add whitespace around operators and after commas
` [PATCH 14/19 5.15.y] minmax.h: update some comments
` [PATCH 15/19 5.15.y] minmax.h: reduce the #define expansion of min(), max() and clamp()
` [PATCH 16/19 5.15.y] minmax.h: use BUILD_BUG_ON_MSG() for the lo < hi test in clamp()
` [PATCH 17/19 5.15.y] minmax.h: move all the clamp() definitions after the min/max() ones
` [PATCH 18/19 5.15.y] minmax.h: simplify the variants of clamp()
` [PATCH 19/19 5.15.y] minmax.h: remove some #defines that are only expanded once

[PATCH v3 00/11 6.1.y] Backport minmax.h updates from v6.17-rc7
 2025-10-02 18:00 UTC  (12+ messages)
` [PATCH v3 01/11 6.1.y] minmax: simplify min()/max()/clamp() implementation
` [PATCH v3 02/11 6.1.y] minmax: don't use max() in situations that want a C constant expression
` [PATCH v3 03/11 6.1.y] minmax: improve macro expansion and type checking
` [PATCH v3 04/11 6.1.y] minmax: fix up min3() and max3() too
` [PATCH v3 05/11 6.1.y] minmax.h: add whitespace around operators and after commas
` [PATCH v3 06/11 6.1.y] minmax.h: update some comments
` [PATCH v3 07/11 6.1.y] minmax.h: reduce the #define expansion of min(), max() and clamp()
` [PATCH v3 08/11 6.1.y] minmax.h: use BUILD_BUG_ON_MSG() for the lo < hi test in clamp()
` [PATCH v3 09/11 6.1.y] minmax.h: move all the clamp() definitions after the min/max() ones
` [PATCH v3 10/11 6.1.y] minmax.h: simplify the variants of clamp()
` [PATCH v3 11/11 6.1.y] minmax.h: remove some #defines that are only expanded once

[PATCH 00/19 v6.1.y] Backport minmax.h updates from v6.17-rc7
 2025-09-29 18:39 UTC  (25+ messages)
` [PATCH 01/19 v6.1.y] minmax: add in_range() macro
` [PATCH 02/19 v6.1.y] minmax: Introduce {min,max}_array()
` [PATCH 03/19 v6.1.y] minmax: deduplicate __unconst_integer_typeof()
` [PATCH 04/19 v6.1.y] minmax: fix indentation of __cmp_once() and __clamp_once()
` [PATCH 05/19 v6.1.y] minmax: avoid overly complicated constant expressions in VM code
` [PATCH 06/19 v6.1.y] minmax: simplify and clarify min_t()/max_t() implementation
` [PATCH 07/19 v6.1.y] minmax: make generic MIN() and MAX() macros available everywhere
` [PATCH 08/19 v6.1.y] minmax: add a few more MIN_T/MAX_T users
` [PATCH 09/19 v6.1.y] minmax: simplify min()/max()/clamp() implementation
` [PATCH 10/19 v6.1.y] minmax: don't use max() in situations that want a C constant expression
` [PATCH 11/19 v6.1.y] minmax: improve macro expansion and type checking
` [PATCH 12/19 v6.1.y] minmax: fix up min3() and max3() too
` [PATCH 13/19 v6.1.y] minmax.h: add whitespace around operators and after commas
` [PATCH 14/19 v6.1.y] minmax.h: update some comments
` [PATCH 15/19 v6.1.y] minmax.h: reduce the #define expansion of min(), max() and clamp()
` [PATCH 16/19 v6.1.y] minmax.h: use BUILD_BUG_ON_MSG() for the lo < hi test in clamp()
` [PATCH 17/19 v6.1.y] minmax.h: move all the clamp() definitions after the min/max() ones
` [PATCH 18/19 v6.1.y] minmax.h: simplify the variants of clamp()
` [PATCH 19/19 v6.1.y] minmax.h: remove some #defines that are only expanded once

[PATCH] doc: update the instructions for mailing list subscription
 2025-09-29  6:17 UTC  (2+ messages)

Sparse merge window is open
 2025-09-28  4:45 UTC 

Project status
 2025-09-25 16:37 UTC  (3+ messages)

[PATCH] fix: Skip if symbol have no op when handle_qualifiers
 2025-09-25 14:29 UTC  (2+ messages)

[PATCH] Warn about "unsigned value that used to be signed against zero"
 2025-09-24 17:47 UTC  (14+ messages)
      ` [PATCH] vadidation: add used-to-be-signed unit tests

[PATCH v3 00/35] Compiler-Based Capability- and Locking-Analysis
 2025-09-23 19:49 UTC  (50+ messages)
` [PATCH v3 02/35] compiler-capability-analysis: Add infrastructure for Clang's capability analysis
` [PATCH v3 05/35] checkpatch: Warn about capability_unsafe() without comment
` [PATCH v3 14/35] rcu: Support Clang's capability analysis
` [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 00/27 5.10.y] Backport minmax.h updates from v6.17-rc6
 2025-09-22 13:10 UTC  (36+ 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 00/15 v6.6.y] Backport minmax.h updates from v6.17-rc7
 2025-09-22 10:32 UTC  (16+ messages)
` [PATCH 01/15 6.6.y] minmax: avoid overly complicated constant expressions in VM code
` [PATCH 02/15 6.6.y] minmax: simplify and clarify min_t()/max_t() implementation
` [PATCH 03/15 6.6.y] minmax: add a few more MIN_T/MAX_T users
` [PATCH 04/15 6.6.y] minmax: make generic MIN() and MAX() macros available everywhere
` [PATCH 05/15 6.6.y] minmax: simplify min()/max()/clamp() implementation
` [PATCH 06/15 6.6.y] minmax: don't use max() in situations that want a C constant expression
` [PATCH 07/15 6.6.y] minmax: improve macro expansion and type checking
` [PATCH 08/15 6.6.y] minmax: fix up min3() and max3() too
` [PATCH 09/15 6.6.y] minmax.h: add whitespace around operators and after commas
` [PATCH 10/15 6.6.y] minmax.h: update some comments
` [PATCH 11/15 6.6.y] minmax.h: reduce the #define expansion of min(), max() and clamp()
` [PATCH 12/15 6.6.y] minmax.h: use BUILD_BUG_ON_MSG() for the lo < hi test in clamp()
` [PATCH 13/15 6.6.y] minmax.h: move all the clamp() definitions after the min/max() ones
` [PATCH 14/15 6.6.y] minmax.h: simplify the variants of clamp()
` [PATCH 15/15 6.6.y] minmax.h: remove some #defines that are only expanded once

Sparse maintainership
 2025-09-21 20:24 UTC  (5+ messages)

[PATCH 0/7 5.10.y] Cherry pick of minmax.h commits from 5.15.y
 2025-09-21 17:30 UTC  (7+ messages)
` [PATCH 1/7 5.10.y] tracing: Define the is_signed_type() macro once

Outsourced welding teams
 2025-09-19  7:55 UTC 


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).