From: Paul E. McKenney Date: Wed, 3 May 2017 17:36:36 +0000 (-0700) Subject: rcu: Remove UINT_CMP_GE() and UINT_CMP_LT() X-Git-Tag: v4.13-rc1~209^2^2~35 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=c4cbf9f736f5bd0a53a5ea401d86376c86bf905e;p=karo-tx-linux.git rcu: Remove UINT_CMP_GE() and UINT_CMP_LT() The UINT_CMP_GE() and UINT_CMP_LT() macros are not used, so this commit removes them. Reported-by: Ingo Molnar Signed-off-by: Paul E. McKenney --- diff --git a/include/linux/rcupdate.h b/include/linux/rcupdate.h index 7557499d8e70..fa3f921e5874 100644 --- a/include/linux/rcupdate.h +++ b/include/linux/rcupdate.h @@ -46,8 +46,6 @@ #include #include -#define UINT_CMP_GE(a, b) (UINT_MAX / 2 >= (a) - (b)) -#define UINT_CMP_LT(a, b) (UINT_MAX / 2 < (a) - (b)) #define ULONG_CMP_GE(a, b) (ULONG_MAX / 2 >= (a) - (b)) #define ULONG_CMP_LT(a, b) (ULONG_MAX / 2 < (a) - (b)) #define ulong2long(a) (*(long *)(&(a)))