use clamp_t in UNAME26 fix

The min/max call needed to have explicit types on some architectures
(e.g. mn10300). Use clamp_t instead to avoid the warning:

kernel/sys.c: In function 'override_release':
kernel/sys.c:1287:10: warning: comparison of distinct pointer types lacks a cast [enabled by default]

Reported-by: Fengguang Wu <fengguang.wu@intel.com>
Signed-off-by: Kees Cook <keescook@chromium.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by Kees Cook and committed by Linus Torvalds 31fd84b9 8c1bee68

+1 -1
+1 -1
kernel/sys.c
··· 1284 rest++; 1285 } 1286 v = ((LINUX_VERSION_CODE >> 8) & 0xff) + 40; 1287 - copy = min(sizeof(buf), max_t(size_t, 1, len)); 1288 copy = scnprintf(buf, copy, "2.6.%u%s", v, rest); 1289 ret = copy_to_user(release, buf, copy + 1); 1290 }
··· 1284 rest++; 1285 } 1286 v = ((LINUX_VERSION_CODE >> 8) & 0xff) + 40; 1287 + copy = clamp_t(size_t, len, 1, sizeof(buf)); 1288 copy = scnprintf(buf, copy, "2.6.%u%s", v, rest); 1289 ret = copy_to_user(release, buf, copy + 1); 1290 }