linux/drivers/scsi/isci
Linus Torvalds 1a251f52cf minmax: make generic MIN() and MAX() macros available everywhere
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>
2024-07-28 15:49:18 -07:00
..
host.c scsi: isci: Fix spelling mistake "doesnt" -> "doesn't" 2022-03-29 23:46:23 -04:00
host.h scsi: libsas: Delete struct scsi_core 2023-08-21 17:50:58 -04:00
init.c minmax: make generic MIN() and MAX() macros available everywhere 2024-07-28 15:49:18 -07:00
isci.h
Makefile
phy.c scsi: libsas: Delete enum sas_phy_type 2023-08-21 17:50:57 -04:00
phy.h
port_config.c
port.c
port.h
probe_roms.c
probe_roms.h
registers.h
remote_device.c
remote_device.h
remote_node_context.c
remote_node_context.h
remote_node_table.c
remote_node_table.h
request.c scsi: isci: Fix an error code problem in isci_io_request_build() 2024-01-17 14:43:41 -05:00
request.h scsi: isci: Remove redundant check in isci_task_request_build() 2023-12-05 21:13:15 -05:00
sas.h
scu_completion_codes.h
scu_event_codes.h
scu_remote_node_context.h
scu_task_context.h scsi: isci: Fix comment typo 2023-06-28 21:45:27 -04:00
task.c scsi: isci: Remove redundant check in isci_task_request_build() 2023-12-05 21:13:15 -05:00
task.h scsi: libsas: Delete lldd_clear_aca callback 2022-02-19 15:59:34 -05:00
unsolicited_frame_control.c
unsolicited_frame_control.h