messages from 2025-10-08 07:31:44 to 2025-10-19 12:37:43 UTC [more...]
[PATCH v2 00/27 5.10.y] Backport minmax.h updates from v6.17-rc7
2025-10-19 12:37 UTC (62+ messages)
` [PATCH v2 01/27 5.10.y] overflow, tracing: Define the is_signed_type() macro once
` Patch "overflow, tracing: Define the is_signed_type() macro once" has been added to the 5.10-stable tree
` [PATCH v2 02/27 5.10.y] btrfs: remove duplicated in_range() macro
` Patch "btrfs: remove duplicated in_range() macro" has been added to the 5.10-stable tree
` [PATCH v2 03/27 5.10.y] minmax: sanity check constant bounds when clamping
` Patch "minmax: sanity check constant bounds when clamping" has been added to the 5.10-stable tree
` [PATCH v2 04/27 5.10.y] minmax: clamp more efficiently by avoiding extra comparison
` Patch "minmax: clamp more efficiently by avoiding extra comparison" has been added to the 5.10-stable tree
` [PATCH v2 05/27 5.10.y] minmax: add in_range() macro
` Patch "minmax: add in_range() macro" has been added to the 5.10-stable tree
` [PATCH v2 06/27 5.10.y] minmax: Introduce {min,max}_array()
` Patch "minmax: Introduce {min,max}_array()" has been added to the 5.10-stable tree
` [PATCH v2 07/27 5.10.y] minmax: deduplicate __unconst_integer_typeof()
` Patch "minmax: deduplicate __unconst_integer_typeof()" has been added to the 5.10-stable tree
` [PATCH v2 08/27 5.10.y] minmax: fix header inclusions
` Patch "minmax: fix header inclusions" has been added to the 5.10-stable tree
` [PATCH v2 09/27 5.10.y] minmax: allow min()/max()/clamp() if the arguments have the same signedness
` Patch "minmax: allow min()/max()/clamp() if the arguments have the same signedness." has been added to the 5.10-stable tree
` [PATCH v2 10/27 5.10.y] minmax: fix indentation of __cmp_once() and __clamp_once()
` Patch "minmax: fix indentation of __cmp_once() and __clamp_once()" has been added to the 5.10-stable tree
` [PATCH v2 11/27 5.10.y] minmax: allow comparisons of 'int' against 'unsigned char/short'
` Patch "minmax: allow comparisons of 'int' against 'unsigned char/short'" has been added to the 5.10-stable tree
` [PATCH v2 12/27 5.10.y] minmax: relax check to allow comparison between unsigned arguments and signed constants
` Patch "minmax: relax check to allow comparison between unsigned arguments and signed constants" has been added to the 5.10-stable tree
` [PATCH v2 13/27 5.10.y] minmax: avoid overly complicated constant expressions in VM code
` Patch "minmax: avoid overly complicated constant expressions in VM code" has been added to the 5.10-stable tree
` [PATCH v2 14/27 5.10.y] minmax: add a few more MIN_T/MAX_T users
` Patch "minmax: add a few more MIN_T/MAX_T users" has been added to the 5.10-stable tree
` [PATCH v2 15/27 5.10.y] minmax: simplify and clarify min_t()/max_t() implementation
` Patch "minmax: simplify and clarify min_t()/max_t() implementation" has been added to the 5.10-stable tree
` [PATCH v2 16/27 5.10.y] minmax: make generic MIN() and MAX() macros available everywhere
` Patch "minmax: make generic MIN() and MAX() macros available everywhere" has been added to the 5.10-stable tree
` [PATCH v2 17/27 5.10.y] minmax: don't use max() in situations that want a C constant expression
` Patch "minmax: don't use max() in situations that want a C constant expression" has been added to the 5.10-stable tree
` [PATCH v2 18/27 5.10.y] minmax: simplify min()/max()/clamp() implementation
` Patch "minmax: simplify min()/max()/clamp() implementation" has been added to the 5.10-stable tree
` [PATCH v2 19/27 5.10.y] minmax: improve macro expansion and type checking
` Patch "minmax: improve macro expansion and type checking" has been added to the 5.10-stable tree
` [PATCH v2 20/27 5.10.y] minmax: fix up min3() and max3() too
` Patch "minmax: fix up min3() and max3() too" has been added to the 5.10-stable tree
` [PATCH v2 21/27 5.10.y] minmax.h: add whitespace around operators and after commas
` Patch "minmax.h: add whitespace around operators and after commas" has been added to the 5.10-stable tree
` [PATCH v2 22/27 5.10.y] minmax.h: update some comments
` Patch "minmax.h: update some comments" has been added to the 5.10-stable tree
` [PATCH v2 23/27 5.10.y] minmax.h: reduce the #define expansion of min(), max() and clamp()
` Patch "minmax.h: reduce the #define expansion of min(), max() and clamp()" has been added to the 5.10-stable tree
` [PATCH v2 24/27 5.10.y] minmax.h: use BUILD_BUG_ON_MSG() for the lo < hi test in clamp()
` Patch "minmax.h: use BUILD_BUG_ON_MSG() for the lo < hi test in clamp()" has been added to the 5.10-stable tree
` [PATCH v2 25/27 5.10.y] minmax.h: move all the clamp() definitions after the min/max() ones
` Patch "minmax.h: move all the clamp() definitions after the min/max() ones" has been added to the 5.10-stable tree
` [PATCH v2 26/27 5.10.y] minmax.h: simplify the variants of clamp()
` Patch "minmax.h: simplify the variants of clamp()" has been added to the 5.10-stable tree
` [PATCH v2 27/27 5.10.y] minmax.h: remove some #defines that are only expanded once
` Patch "minmax.h: remove some #defines that are only expanded once" has been added to the 5.10-stable tree
[PATCH v2] staging: nvec: remove NVEC_PS2_DEBUG and dead debug macro
2025-10-19 9:50 UTC
[PATCH v2] staging: nvec: remove NVEC_PS2_DEBUG and dead debug macro
2025-10-19 9:26 UTC (2+ messages)
[PATCH] staging: nvec: remove NVEC_PS2_DEBUG and dead debug macro
2025-10-18 10:01 UTC
[PATCH v3 00/19 5.15.y] Backport minmax.h updates from v6.17-rc7
2025-10-17 8:16 UTC (38+ messages)
` [PATCH v3 01/19 5.15.y] minmax: add in_range() macro
` [PATCH v3 02/19 5.15.y] minmax: Introduce {min,max}_array()
` Patch "minmax: Introduce {min,max}_array()" has been added to the 5.15-stable tree
` [PATCH v3 03/19 5.15.y] minmax: deduplicate __unconst_integer_typeof()
` Patch "minmax: deduplicate __unconst_integer_typeof()" has been added to the 5.15-stable tree
` [PATCH v3 04/19 5.15.y] minmax: fix indentation of __cmp_once() and __clamp_once()
` Patch "minmax: fix indentation of __cmp_once() and __clamp_once()" has been added to the 5.15-stable tree
` [PATCH v3 05/19 5.15.y] minmax: avoid overly complicated constant expressions in VM code
` Patch "minmax: avoid overly complicated constant expressions in VM code" has been added to the 5.15-stable tree
` [PATCH v3 06/19 5.15.y] minmax: add a few more MIN_T/MAX_T users
` Patch "minmax: add a few more MIN_T/MAX_T users" has been added to the 5.15-stable tree
` [PATCH v3 07/19 5.15.y] minmax: simplify and clarify min_t()/max_t() implementation
` Patch "minmax: simplify and clarify min_t()/max_t() implementation" has been added to the 5.15-stable tree
` [PATCH v3 08/19 5.15.y] minmax: make generic MIN() and MAX() macros available everywhere
` Patch "minmax: make generic MIN() and MAX() macros available everywhere" has been added to the 5.15-stable tree
` [PATCH v3 09/19 5.15.y] minmax: don't use max() in situations that want a C constant expression
` Patch "minmax: don't use max() in situations that want a C constant expression" has been added to the 5.15-stable tree
` [PATCH v3 10/19 5.15.y] minmax: simplify min()/max()/clamp() implementation
` Patch "minmax: simplify min()/max()/clamp() implementation" has been added to the 5.15-stable tree
` [PATCH v3 11/19 5.15.y] minmax: improve macro expansion and type checking
` Patch "minmax: improve macro expansion and type checking" has been added to the 5.15-stable tree
` [PATCH v3 12/19 5.15.y] minmax: fix up min3() and max3() too
` Patch "minmax: fix up min3() and max3() too" has been added to the 5.15-stable tree
` [PATCH v3 13/19 5.15.y] minmax.h: add whitespace around operators and after commas
` Patch "minmax.h: add whitespace around operators and after commas" has been added to the 5.15-stable tree
` [PATCH v3 14/19 5.15.y] minmax.h: update some comments
` Patch "minmax.h: update some comments" has been added to the 5.15-stable tree
` [PATCH v3 15/19 5.15.y] minmax.h: reduce the #define expansion of min(), max() and clamp()
` Patch "minmax.h: reduce the #define expansion of min(), max() and clamp()" has been added to the 5.15-stable tree
` [PATCH v3 16/19 5.15.y] minmax.h: use BUILD_BUG_ON_MSG() for the lo < hi test in clamp()
` Patch "minmax.h: use BUILD_BUG_ON_MSG() for the lo < hi test in clamp()" has been added to the 5.15-stable tree
` [PATCH v3 17/19 5.15.y] minmax.h: move all the clamp() definitions after the min/max() ones
` Patch "minmax.h: move all the clamp() definitions after the min/max() ones" has been added to the 5.15-stable tree
` [PATCH v3 18/19 5.15.y] minmax.h: simplify the variants of clamp()
` Patch "minmax.h: simplify the variants of clamp()" has been added to the 5.15-stable tree
` [PATCH v3 19/19 5.15.y] minmax.h: remove some #defines that are only expanded once
` Patch "minmax.h: remove some #defines that are only expanded once" has been added to the 5.15-stable tree
[PATCH 00/32] media: Use %pe format specifier
2025-10-17 5:18 UTC (48+ messages)
` [PATCH 01/32] Input: cyttsp5 - "
` [PATCH 02/32] media: dvbdev: "
` [PATCH 03/32] media: mn88443x: "
` [PATCH 04/32] media: adv7842: "
` [PATCH 05/32] media: ar0521: "
` [PATCH 06/32] media: ccs: "
` [PATCH 07/32] media: i2c: ds90ub913: "
` [PATCH 08/32] media: i2c: ds90ub953: "
` [PATCH 09/32] media: i2c: imx274: "
` [PATCH 10/32] media: i2c: imx335: "
` [PATCH 11/32] media: i2c: imx412: "
` [PATCH 12/32] media: i2c: max9286: "
` [PATCH 13/32] media: i2c: max96717: "
` [PATCH 14/32] media: i2c: mt9m111: "
` [PATCH 15/32] media: i2c: mt9v111: "
` [PATCH 16/32] media: i2c: ov5675: "
` [PATCH 17/32] media: i2c: ov5693: "
` [PATCH 18/32] media: i2c: ov9282: "
` [PATCH 19/32] media: rj54n1cb0c: "
` [PATCH 20/32] media: i2c: st-mipid02: "
` [PATCH 21/32] media: ipu-bridge: "
` [PATCH 22/32] media: ipu3-cio2: "
` [PATCH 23/32] media: ipu6: isys: "
` [PATCH 24/32] media: mediatek: vcodec: "
` [PATCH 25/32] media: imx8mq-mipi-csi2: "
` [PATCH 26/32] media: platform: rzg2l-cru: "
` [PATCH 27/32] media: renesas: vsp1: "
` [PATCH 28/32] media: rkisp1: "
` [PATCH 29/32] media: samsung: exynos4-is: "
` [PATCH 30/32] media: ti: cal "
` [PATCH 31/32] media: staging: ipu3-imgu: "
` [PATCH 32/32] media: staging/ipu7: "
[PATCH] staging: nvec: remove NVEC_PS2_DEBUG and dead debug macro
2025-10-16 17:53 UTC (2+ messages)
[PATCH v2] media: v4l2-mem2mem: Don't copy frame flags in v4l2_m2m_buf_copy_metadata()
2025-10-15 10:38 UTC (3+ messages)
[PATCH] media: v4l2-mem2mem: Don't copy frame flags for frame-based devices
2025-10-15 8:02 UTC (4+ messages)
[PATCH] staging: greybus: documentation: replace strncpy() with strscpy_pad()
2025-10-14 23:53 UTC (7+ messages)
[PATCH] staging: gpib/pc2: convert explanatory comments to /* ... */ style
2025-10-14 20:07 UTC
[PATCH] staging: gpib: pc2: convert // comments to /* */ style
2025-10-14 18:55 UTC (2+ messages)
[PATCH v4 00/24] tegra-video: add CSI support for Tegra20 and Tegra30
2025-10-14 12:03 UTC (26+ messages)
` [PATCH v4 01/24] pinctrl: tegra20: register csus_mux clock
` [PATCH v4 02/24] clk: tegra: set CSUS as vi_sensor's gate for Tegra20, Tegra30 and Tegra114
` [PATCH v4 10/24] gpu: host1x: convert MIPI to use operation function pointers
` [PATCH v4 11/24] dt-bindings: display: tegra: document Tegra132 MIPI calibration device
` [PATCH v4 17/24] staging: media: tegra-video: tegra20: adjust format align calculations
` [PATCH v4 18/24] staging: media: tegra-video: tegra20: set VI HW revision
` [PATCH v4 19/24] staging: media: tegra-video: tegra20: increase maximum VI clock frequency
` [PATCH v4 20/24] staging: media: tegra-video: tegra20: expand format support with RAW8/10 and YUV422/YUV420p 1X16
` [PATCH v4 21/24] staging: media: tegra-video: tegra20: adjust luma buffer stride
` [PATCH v4 22/24] dt-bindings: display: tegra: document Tegra20 and Tegra30 CSI
` [PATCH v4 23/24] ARM: tegra: add CSI nodes for Tegra20 and Tegra30
` [PATCH v4 24/24] staging: media: tegra-video: add CSI support "
staging: gpib: convert comments from // to /* */
2025-10-13 22:45 UTC
[PATCH] staging: rtl8723bs: remove todo/note and duplicated EFUSE_CTRL macro
2025-10-13 8:39 UTC (2+ messages)
[PATCH 0/2] Remove ad9832.h and ad9834.h header files in drivers/staging/iio/frequency
2025-10-12 14:17 UTC (3+ messages)
` [PATCH 1/2] staging: iio: ad9834: remove empty ad9834.h file
[PATCH] staging: rtl8723bs: Rename camel case functions
2025-10-09 13:52 UTC
[PATCH] staging: rtl8723bs: fix block comment style to match kernel coding guidline
2025-10-08 10:38 UTC (2+ messages)
[PATCH] staging: vc04_services: mmal: fix typo in comment
2025-10-08 10:35 UTC (2+ messages)
[PATCH] staging: vc04_services: mmal-vchiq: fix typo in comment
2025-10-08 10:34 UTC (2+ 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).