staging: lustre: remove custom MIN/MAX and min_t operations
authorJeremiah Mahler <jmmahler@gmail.com>
Fri, 26 Dec 2014 00:04:46 +0000 (16:04 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 17 Jan 2015 23:49:22 +0000 (15:49 -0800)
Remove all custom MIN/MAX and min_t operations since they are
no longer needed.

Signed-off-by: Jeremiah Mahler <jmmahler@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/lustre/include/linux/libcfs/libcfs_private.h
drivers/staging/lustre/lustre/osc/osc_internal.h

index 2817112c06333ff3ebca26c47cf663c4665e2d1c..3d86fb5b548192678f675cf6c7a7ab98101bfe88 100644 (file)
@@ -458,14 +458,6 @@ struct libcfs_device_userstate {
        struct page   *ldu_memhog_root_page;
 };
 
-/* what used to be in portals_lib.h */
-#ifndef MIN
-# define MIN(a, b) (((a) < (b)) ? (a) : (b))
-#endif
-#ifndef MAX
-# define MAX(a, b) (((a) > (b)) ? (a) : (b))
-#endif
-
 #define MKSTR(ptr) ((ptr)) ? (ptr) : ""
 
 static inline int cfs_size_round4(int val)
index d788dac93cd0d844ed580b8199a786bcd1555275..af96c7bc7764d763791f03de2b4c48d148d17110 100644 (file)
@@ -160,11 +160,6 @@ static inline unsigned long rpcs_in_flight(struct client_obd *cli)
        return cli->cl_r_in_flight + cli->cl_w_in_flight;
 }
 
-#ifndef min_t
-#define min_t(type, x, y) \
-       ({ type __x = (x); type __y = (y); __x < __y ? __x: __y; })
-#endif
-
 struct osc_device {
        struct cl_device    od_cl;
        struct obd_export  *od_exp;