NetBSD/sys/nfs
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
..
Makefile
files.nfs Default NFS mounts to using TCP transport instead of UDP. 2018-05-17 02:34:31 +00:00
krpc.h
krpc_subr.c
nfs.h - Cleanup for dynamic sysctl: 2018-08-22 01:05:21 +00:00
nfs_bio.c
nfs_boot.c Default NFS mounts to using TCP transport instead of UDP. 2018-05-17 02:34:31 +00:00
nfs_bootdhcp.c
nfs_bootparam.c
nfs_bootstatic.c
nfs_clntsocket.c
nfs_clntsubs.c Rename min/max -> uimin/uimax for better honesty. 2018-09-03 16:29:22 +00:00
nfs_export.c
nfs_iod.c Rename min/max -> uimin/uimax for better honesty. 2018-09-03 16:29:22 +00:00
nfs_kq.c
nfs_node.c add a genfs method to allow a file system to limit the range of pages 2018-05-28 21:04:37 +00:00
nfs_serv.c Rename min/max -> uimin/uimax for better honesty. 2018-09-03 16:29:22 +00:00
nfs_socket.c Rename min/max -> uimin/uimax for better honesty. 2018-09-03 16:29:22 +00:00
nfs_srvcache.c
nfs_srvsocket.c
nfs_srvsubs.c
nfs_subs.c Rename min/max -> uimin/uimax for better honesty. 2018-09-03 16:29:22 +00:00
nfs_syscalls.c PR/53103: Timo Buhrmester: linux emulation of sendto(2) broken 2018-03-16 17:25:04 +00:00
nfs_var.h
nfs_vfsops.c Rename min/max -> uimin/uimax for better honesty. 2018-09-03 16:29:22 +00:00
nfs_vnops.c Rename min/max -> uimin/uimax for better honesty. 2018-09-03 16:29:22 +00:00
nfsdiskless.h
nfsm_subs.h
nfsmount.h
nfsnode.h
nfsproto.h
nfsrtt.h
nfsrvcache.h
rpcv2.h
xdr_subs.h