NetBSD/sys/compat/linux32/common
riastradh d1579b2d70 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!)
2018-09-03 16:29:22 +00:00
..
linux32_dirent.c Rename min/max -> uimin/uimax for better honesty. 2018-09-03 16:29:22 +00:00
linux32_errno.h
linux32_exec.c Allow syscall_establish() to install new syscalls when the existing 2018-08-10 21:44:58 +00:00
linux32_exec.h
linux32_exec_elf32.c
linux32_fcntl.c
linux32_ioctl.c
linux32_ioctl.h
linux32_ipc.h
linux32_ipccall.c
linux32_machdep.h
linux32_misc.c
linux32_mman.c
linux32_mod.c Finally (hopefully) return completely to the state where compat_linux is 2017-12-10 00:43:05 +00:00
linux32_resource.c
linux32_sched.c
linux32_sched.h
linux32_sem.h
linux32_shm.h
linux32_siginfo.h
linux32_signal.c ignore signal 64 for now (go uses it) 2018-01-07 21:16:00 +00:00
linux32_signal.h
linux32_socket.c Fix pserialize enter/exit pairs in linux_getifconf and linux32_getifconf 2018-05-10 01:32:24 +00:00
linux32_socketcall.c
linux32_socketcall.h
linux32_sockio.h
linux32_stat.c
linux32_sysctl.c
linux32_sysctl.h - Cleanup for dynamic sysctl: 2018-08-22 01:05:21 +00:00
linux32_sysinfo.c
linux32_termios.c
linux32_termios.h
linux32_time.c
linux32_types.h
linux32_uid16.c
linux32_unistd.c Refactor pipe1() and correct a bug in sys_pipe2() (SYS_pipe2) 2017-12-26 08:30:57 +00:00
linux32_utsname.c
linux32_wait.c