Home | History | Annotate | Download | only in cxgb
History log of /src/sys/dev/pci/cxgb/cxgb_t3_hw.c
RevisionDateAuthorComments
 1.9  29-Aug-2024  andvar s/Perfoms/Performs/ in comment.
 1.8  23-May-2024  andvar s/separare/separate/ and s/separete/separate/ in comments.
 1.7  10-Dec-2021  andvar s/occured/occurred/ in comments, log messages and man pages.
 1.6  10-Nov-2021  msaitoh s/endianess/endianness/
 1.5  02-Aug-2021  andvar fix various typos in comments and log messages.
 1.4  29-Sep-2020  msaitoh s/occurence/occurrence/
 1.3  03-Sep-2018  riastradh Rename min/max -> uimin/uimax for better honesty.

These functions are defined on unsigned int. The generic name
min/max should not silently truncate to 32 bits on 64-bit systems.
This is purely a name change -- no functional change intended.

HOWEVER! Some subsystems have

#define min(a, b) ((a) < (b) ? (a) : (b))
#define max(a, b) ((a) > (b) ? (a) : (b))

even though our standard name for that is MIN/MAX. Although these
may invite multiple evaluation bugs, these do _not_ cause integer
truncation.

To avoid `fixing' these cases, I first changed the name in libkern,
and then compile-tested every file where min/max occurred in order to
confirm that it failed -- and thus confirm that nothing shadowed
min/max -- before changing it.

I have left a handful of bootloaders that are too annoying to
compile-test, and some dead code:

cobalt ews4800mips hp300 hppa ia64 luna68k vax
acorn32/if_ie.c (not included in any kernels)
macppc/if_gm.c (superseded by gem(4))

It should be easy to fix the fallout once identified -- this way of
doing things fails safe, and the goal here, after all, is to _avoid_
silent integer truncations, not introduce them.

Maybe one day we can reintroduce min/max as type-generic things that
never silently truncate. But we should avoid doing that for a while,
so that existing code has a chance to be detected by the compiler for
conversion to uimin/uimax without changing the semantics until we can
properly audit it all. (Who knows, maybe in some cases integer
truncation is actually intended!)
 1.2  08-Feb-2018  dholland branches: 1.2.2; 1.2.4;
Typos.
 1.1  21-Mar-2010  jklos branches: 1.1.2; 1.1.4; 1.1.6;
Reorganizing all Chelsio 10 gig files into separate directory.
 1.1.6.2  11-Aug-2010  yamt sync with head.
 1.1.6.1  21-Mar-2010  yamt file cxgb_t3_hw.c was added on branch yamt-nfs-mp on 2010-08-11 22:54:06 +0000
 1.1.4.2  30-May-2010  rmind sync with head
 1.1.4.1  21-Mar-2010  rmind file cxgb_t3_hw.c was added on branch rmind-uvmplock on 2010-05-30 05:17:40 +0000
 1.1.2.2  30-Apr-2010  uebayasi Sync with HEAD.
 1.1.2.1  21-Mar-2010  uebayasi file cxgb_t3_hw.c was added on branch uebayasi-xip on 2010-04-30 14:43:45 +0000
 1.2.4.1  10-Jun-2019  christos Sync with HEAD
 1.2.2.1  06-Sep-2018  pgoyette Sync with HEAD

Resolve a couple of conflicts (result of the uimin/uimax changes)

RSS XML Feed