Home | History | Annotate | Download | only in s3c2xx0
History log of /src/sys/arch/arm/s3c2xx0/s3c2440_dma.c
RevisionDateAuthorComments
 1.5  20-Nov-2020  thorpej malloc(9) -> kmem(9)
 1.4  10-Nov-2019  chs branches: 1.4.8;
in many device attach paths, allocate memory with M_WAITOK instead of M_NOWAIT
and remove code to handle failures that can no longer happen.
 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  12-Nov-2012  skrll branches: 1.2.36; 1.2.38;
C99 types
 1.1  30-Jan-2012  nisimura branches: 1.1.4; 1.1.6; 1.1.10;

Add FriendlyARM Mini2440 support.
- new code for Samsung S3C2440 SoC.
- update for other S3C2xx0.
This port was done by Paul Fleischer.
 1.1.10.1  20-Nov-2012  tls Resync to 2012-11-19 00:00:00 UTC
 1.1.6.3  16-Jan-2013  yamt sync with (a bit old) head
 1.1.6.2  17-Apr-2012  yamt sync with head
 1.1.6.1  30-Jan-2012  yamt file s3c2440_dma.c was added on branch yamt-pagecache on 2012-04-17 00:06:06 +0000
 1.1.4.2  18-Feb-2012  mrg merge to -current.
 1.1.4.1  30-Jan-2012  mrg file s3c2440_dma.c was added on branch jmcneill-usbmp on 2012-02-18 07:31:30 +0000
 1.2.38.2  13-Apr-2020  martin Mostly merge changes from HEAD upto 20200411
 1.2.38.1  10-Jun-2019  christos Sync with HEAD
 1.2.36.1  06-Sep-2018  pgoyette Sync with HEAD

Resolve a couple of conflicts (result of the uimin/uimax changes)
 1.4.8.1  14-Dec-2020  thorpej Sync w/ HEAD.

RSS XML Feed