]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
minmax: make generic MIN() and MAX() macros available everywhere
authorLinus Torvalds <torvalds@linux-foundation.org>
Wed, 8 Oct 2025 15:29:33 +0000 (15:29 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 19 Oct 2025 14:21:52 +0000 (16:21 +0200)
[ Upstream commit 1a251f52cfdc417c84411a056bc142cbd77baef4 ]

This just standardizes the use of MIN() and MAX() macros, with the very
traditional semantics.  The goal is to use these for C constant
expressions and for top-level / static initializers, and so be able to
simplify the min()/max() macros.

These macro names were used by various kernel code - they are very
traditional, after all - and all such users have been fixed up, with a
few different approaches:

 - trivial duplicated macro definitions have been removed

   Note that 'trivial' here means that it's obviously kernel code that
   already included all the major kernel headers, and thus gets the new
   generic MIN/MAX macros automatically.

 - non-trivial duplicated macro definitions are guarded with #ifndef

   This is the "yes, they define their own versions, but no, the include
   situation is not entirely obvious, and maybe they don't get the
   generic version automatically" case.

 - strange use case #1

   A couple of drivers decided that the way they want to describe their
   versioning is with

#define MAJ 1
#define MIN 2
#define DRV_VERSION __stringify(MAJ) "." __stringify(MIN)

   which adds zero value and I just did my Alexander the Great
   impersonation, and rewrote that pointless Gordian knot as

#define DRV_VERSION "1.2"

   instead.

 - strange use case #2

   A couple of drivers thought that it's a good idea to have a random
   'MIN' or 'MAX' define for a value or index into a table, rather than
   the traditional macro that takes arguments.

   These values were re-written as C enum's instead. The new
   function-line macros only expand when followed by an open
   parenthesis, and thus don't clash with enum use.

Happily, there weren't really all that many of these cases, and a lot of
users already had the pattern of using '#ifndef' guarding (or in one
case just using '#undef MIN') before defining their own private version
that does the same thing. I left such cases alone.

Cc: David Laight <David.Laight@aculab.com>
Cc: Lorenzo Stoakes <lorenzo.stoakes@oracle.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Eliav Farber <farbere@amazon.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21 files changed:
arch/um/drivers/mconsole_user.c
drivers/edac/skx_common.h
drivers/gpu/drm/amd/amdgpu/amdgpu.h
drivers/gpu/drm/amd/display/modules/hdcp/hdcp_ddc.c
drivers/gpu/drm/amd/pm/powerplay/hwmgr/ppevvmath.h
drivers/gpu/drm/amd/pm/swsmu/smu11/sienna_cichlid_ppt.c
drivers/gpu/drm/radeon/evergreen_cs.c
drivers/hwmon/adt7475.c
drivers/media/dvb-frontends/stv0367_priv.h
drivers/net/fjes/fjes_main.c
drivers/nfc/pn544/i2c.c
drivers/platform/x86/sony-laptop.c
drivers/scsi/isci/init.c
drivers/staging/media/atomisp/pci/hive_isp_css_include/math_support.h
include/linux/minmax.h
kernel/trace/preemptirq_delay_test.c
lib/btree.c
lib/decompress_unlzma.c
lib/zstd/zstd_internal.h
mm/zsmalloc.c
tools/testing/selftests/vm/mremap_test.c

index e24298a734befd9023f534080bb23680b1f99c7d..a04cd13c6315a2af5f28ad83724d63004e322335 100644 (file)
@@ -71,7 +71,9 @@ static struct mconsole_command *mconsole_parse(struct mc_request *req)
        return NULL;
 }
 
+#ifndef MIN
 #define MIN(a,b) ((a)<(b) ? (a):(b))
+#endif
 
 #define STRINGX(x) #x
 #define STRING(x) STRINGX(x)
index 13f761930b4f86f3b9473f9eaf9de4390fea47e9..1a78f18cf7fe175f9577881e6b265436152a3518 100644 (file)
@@ -44,7 +44,6 @@
 #define I10NM_NUM_CHANNELS     MAX(I10NM_NUM_DDR_CHANNELS, I10NM_NUM_HBM_CHANNELS)
 #define I10NM_NUM_DIMMS                MAX(I10NM_NUM_DDR_DIMMS, I10NM_NUM_HBM_DIMMS)
 
-#define MAX(a, b)      ((a) > (b) ? (a) : (b))
 #define NUM_IMC                MAX(SKX_NUM_IMC, I10NM_NUM_IMC)
 #define NUM_CHANNELS   MAX(SKX_NUM_CHANNELS, I10NM_NUM_CHANNELS)
 #define NUM_DIMMS      MAX(SKX_NUM_DIMMS, I10NM_NUM_DIMMS)
index dbef22f56482e94949a579e1a466a66eea00fa1f..1ee8663fd866ee35a83e9e2d7d39ef383572893b 100644 (file)
@@ -1277,7 +1277,9 @@ int emu_soc_asic_init(struct amdgpu_device *adev);
 
 #define amdgpu_inc_vram_lost(adev) atomic_inc(&((adev)->vram_lost_counter));
 
+#ifndef MIN
 #define MIN(X, Y) ((X) < (Y) ? (X) : (Y))
+#endif
 
 /* Common functions */
 bool amdgpu_device_has_job_running(struct amdgpu_device *adev);
index 1b2df97226a3f2b72a3b37e061aeb6f082e2e8f2..40286e8dd4e1ab699fa86780586a0f21b5b8949e 100644 (file)
@@ -25,7 +25,9 @@
 
 #include "hdcp.h"
 
+#ifndef MIN
 #define MIN(a, b) ((a) < (b) ? (a) : (b))
+#endif
 #define HDCP_I2C_ADDR 0x3a     /* 0x74 >> 1*/
 #define KSV_READ_SIZE 0xf      /* 0x6803b - 0x6802c */
 #define HDCP_MAX_AUX_TRANSACTION_SIZE 16
index dac29fe6cfc6fbbba6637eea0584e412ae5dbc6d..abbdb773199652c7b149979e3a3eac015412efd7 100644 (file)
  */
 #include <asm/div64.h>
 
-#define SHIFT_AMOUNT 16 /* We multiply all original integers with 2^SHIFT_AMOUNT to get the fInt representation */
+enum ppevvmath_constants {
+       /* We multiply all original integers with 2^SHIFT_AMOUNT to get the fInt representation */
+       SHIFT_AMOUNT    = 16,
 
-#define PRECISION 5 /* Change this value to change the number of decimal places in the final output - 5 is a good default */
+       /* Change this value to change the number of decimal places in the final output - 5 is a good default */
+       PRECISION       =  5,
 
-#define SHIFTED_2 (2 << SHIFT_AMOUNT)
-#define MAX (1 << (SHIFT_AMOUNT - 1)) - 1 /* 32767 - Might change in the future */
+       SHIFTED_2       = (2 << SHIFT_AMOUNT),
+
+       /* 32767 - Might change in the future */
+       MAX             = (1 << (SHIFT_AMOUNT - 1)) - 1,
+};
 
 /* -------------------------------------------------------------------------------
  * NEW TYPE - fINT
index d4fde146bd4c9b9d14c38983d817809be0dc389b..95894c25881a8d0589c5f4e37d877dac45900957 100644 (file)
@@ -1964,7 +1964,9 @@ static void sienna_cichlid_get_override_pcie_settings(struct smu_context *smu,
        }
 }
 
+#ifndef MAX
 #define MAX(a, b)      ((a) > (b) ? (a) : (b))
+#endif
 
 static int sienna_cichlid_update_pcie_parameters(struct smu_context *smu,
                                         uint32_t pcie_gen_cap,
index 820c2c3641d388a66dc2b6be258c9f64b16173fc..1311f10fad660c2b14d79ed45e8c25f7c2027e03 100644 (file)
 #include "evergreen_reg_safe.h"
 #include "cayman_reg_safe.h"
 
+#ifndef MIN
 #define MAX(a,b)                   (((a)>(b))?(a):(b))
 #define MIN(a,b)                   (((a)<(b))?(a):(b))
+#endif
 
 #define REG_SAFE_BM_SIZE ARRAY_SIZE(evergreen_reg_safe_bm)
 
index b4c0f01f52c4fff09f56ae8ce31e9588541f9c50..1e0678eb007797c837b3ddab74004c1aa1aa7f4b 100644 (file)
 #include <linux/util_macros.h>
 
 /* Indexes for the sysfs hooks */
-
-#define INPUT          0
-#define MIN            1
-#define MAX            2
-#define CONTROL                3
-#define OFFSET         3
-#define AUTOMIN                4
-#define THERM          5
-#define HYSTERSIS      6
-
+enum adt_sysfs_id {
+       INPUT           = 0,
+       MIN             = 1,
+       MAX             = 2,
+       CONTROL         = 3,
+       OFFSET          = 3,    // Dup
+       AUTOMIN         = 4,
+       THERM           = 5,
+       HYSTERSIS       = 6,
 /*
  * These are unique identifiers for the sysfs functions - unlike the
  * numbers above, these are not also indexes into an array
  */
+       ALARM           = 9,
+       FAULT           = 10,
+};
 
-#define ALARM          9
-#define FAULT          10
 
 /* 7475 Common Registers */
 
index 617f605947b2c47e74d95eb3392d61d82ab9619b..7f056d1cce8228d97ce503905b3c673afdf153f8 100644 (file)
 #endif
 
 /* MACRO definitions */
+#ifndef MIN
 #define MAX(X, Y) ((X) >= (Y) ? (X) : (Y))
 #define MIN(X, Y) ((X) <= (Y) ? (X) : (Y))
+#endif
+
 #define INRANGE(X, Y, Z) \
        ((((X) <= (Y)) && ((Y) <= (Z))) || \
        (((Z) <= (Y)) && ((Y) <= (X))) ? 1 : 0)
index 1d1808afd5295e308da9fb9434f44da2e3c3abef..792c22ba5b006e7f4a0fb75f10452ffce10f2655 100644 (file)
@@ -14,9 +14,7 @@
 #include "fjes.h"
 #include "fjes_trace.h"
 
-#define MAJ 1
-#define MIN 2
-#define DRV_VERSION __stringify(MAJ) "." __stringify(MIN)
+#define DRV_VERSION "1.2"
 #define DRV_NAME       "fjes"
 char fjes_driver_name[] = DRV_NAME;
 char fjes_driver_version[] = DRV_VERSION;
index 37d26f01986b4099d9133f47c5e514659ac60260..fd7026206f58eec74365b6bb4fabf30667b13f22 100644 (file)
@@ -126,8 +126,6 @@ struct pn544_i2c_fw_secure_blob {
 #define PN544_FW_CMD_RESULT_COMMAND_REJECTED 0xE0
 #define PN544_FW_CMD_RESULT_CHUNK_ERROR 0xE6
 
-#define MIN(X, Y) ((X) < (Y) ? (X) : (Y))
-
 #define PN544_FW_WRITE_BUFFER_MAX_LEN 0x9f7
 #define PN544_FW_I2C_MAX_PAYLOAD PN544_HCI_I2C_LLC_MAX_SIZE
 #define PN544_FW_I2C_WRITE_FRAME_HEADER_LEN 8
index 336dee9485d4b8d62aff9fc24dd948ffdd97fda7..3c27d6b66bb42e1ec73ca2092e527567383f1cf3 100644 (file)
@@ -757,7 +757,6 @@ static union acpi_object *__call_snc_method(acpi_handle handle, char *method,
        return result;
 }
 
-#define MIN(a, b)      (a > b ? b : a)
 static int sony_nc_buffer_call(acpi_handle handle, char *name, u64 *value,
                void *buffer, size_t buflen)
 {
index bd73f6925a9dca8dde339f79e3baae3c80f6dfbb..73144b2966ba5a4ac5370f42683a68c643b9f92a 100644 (file)
 #include "task.h"
 #include "probe_roms.h"
 
-#define MAJ 1
-#define MIN 2
-#define BUILD 0
-#define DRV_VERSION __stringify(MAJ) "." __stringify(MIN) "." \
-       __stringify(BUILD)
+#define DRV_VERSION "1.2.0"
 
 MODULE_VERSION(DRV_VERSION);
 
index a444ec14ff9d5b3c960a10e06bf8c649dee6d5f7..1c17a87a85720c17a68890e0758ccf52e2b5a2ea 100644 (file)
 /* A => B */
 #define IMPLIES(a, b)        (!(a) || (b))
 
-/* for preprocessor and array sizing use MIN and MAX
-   otherwise use min and max */
-#define MAX(a, b)            (((a) > (b)) ? (a) : (b))
-#define MIN(a, b)            (((a) < (b)) ? (a) : (b))
-
 #define ROUND_DIV(a, b)      (((b) != 0) ? ((a) + ((b) >> 1)) / (b) : 0)
 #define CEIL_DIV(a, b)       (((b) != 0) ? ((a) + (b) - 1) / (b) : 0)
 #define CEIL_MUL(a, b)       (CEIL_DIV(a, b) * (b))
index 9c2848abc80496de84a23e2805163550ecd84599..fc384714da4509ea0605adf8da2c6df6adfdee94 100644 (file)
@@ -277,6 +277,8 @@ static inline bool in_range32(u32 val, u32 start, u32 len)
  * Use these carefully: no type checking, and uses the arguments
  * multiple times. Use for obvious constants only.
  */
+#define MIN(a,b) __cmp(min,a,b)
+#define MAX(a,b) __cmp(max,a,b)
 #define MIN_T(type,a,b) __cmp(min,(type)(a),(type)(b))
 #define MAX_T(type,a,b) __cmp(max,(type)(a),(type)(b))
 
index 8af92dbe98f07bdf7ba15d903eab1cc78c364a0b..acb0c971a4082ad050c4362cd651b4bbbb8538b0 100644 (file)
@@ -34,8 +34,6 @@ MODULE_PARM_DESC(cpu_affinity, "Cpu num test is running on");
 
 static struct completion done;
 
-#define MIN(x, y) ((x) < (y) ? (x) : (y))
-
 static void busy_wait(ulong time)
 {
        u64 start, end;
index b4cf08a5c267891a30f88c85fcb43c9e0a47b0e9..b12f99d4c45c3f46d3d69713a0f52c693384a66d 100644 (file)
@@ -43,7 +43,6 @@
 #include <linux/slab.h>
 #include <linux/module.h>
 
-#define MAX(a, b) ((a) > (b) ? (a) : (b))
 #define NODESIZE MAX(L1_CACHE_BYTES, 128)
 
 struct btree_geo {
index 20a858031f12b7600f906a90584d73aa21e2311e..9d34d35908daa89c74bf4e53864b49e4434e18c5 100644 (file)
@@ -37,7 +37,9 @@
 
 #include <linux/decompress/mm.h>
 
+#ifndef MIN
 #define        MIN(a, b) (((a) < (b)) ? (a) : (b))
+#endif
 
 static long long INIT read_int(unsigned char *ptr, int size)
 {
index dac753397f868d736005da8857f9961f5d2080e4..927ed4e8c11cd95d1ec30eadf3d2b4e9d0aea0dc 100644 (file)
@@ -36,8 +36,6 @@
 /*-*************************************
 *  shared macros
 ***************************************/
-#define MIN(a, b) ((a) < (b) ? (a) : (b))
-#define MAX(a, b) ((a) > (b) ? (a) : (b))
 #define CHECK_F(f)                       \
        {                                \
                size_t const errcod = f; \
index 79f389d620c94bb9e65b6b508571a4d20ebbdcc4..fd01f6922874bc03c848a55034e435beb2c488d3 100644 (file)
 #define ISOLATED_BITS  3
 #define MAGIC_VAL_BITS 8
 
-#define MAX(a, b) ((a) >= (b) ? (a) : (b))
 /* ZS_MIN_ALLOC_SIZE must be multiple of ZS_ALIGN */
 #define ZS_MIN_ALLOC_SIZE \
        MAX(32, (ZS_MAX_PAGES_PER_ZSPAGE << PAGE_SHIFT >> OBJ_INDEX_BITS))
index 58775dab3cc6c5c99c92dffdd84deb5f3a8d8cd3..92fb74865f26cf4e22afb94dec80426bf786abd2 100644 (file)
@@ -22,7 +22,9 @@
 #define VALIDATION_DEFAULT_THRESHOLD 4 /* 4MB */
 #define VALIDATION_NO_THRESHOLD 0      /* Verify the entire region */
 
+#ifndef MIN
 #define MIN(X, Y) ((X) < (Y) ? (X) : (Y))
+#endif
 
 struct config {
        unsigned long long src_alignment;