conditionally define U32_MAX

The symbol U32_MAX is defined in several spots.  Change these
definitions to be conditional.  This is in preparation for the next
patch, which centralizes the definition in <linux/kernel.h>.

Signed-off-by: Alex Elder <elder@linaro.org>
Cc: Sage Weil <sage@inktank.com>
Cc: David Miller <davem@davemloft.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Alex Elder
2014-01-23 15:53:59 -08:00
committed by Linus Torvalds
parent a6ce7114ee
commit 77719536dc
3 changed files with 6 additions and 0 deletions

View File

@@ -1958,7 +1958,9 @@ struct treepath var = {.path_length = ILLEGAL_PATH_ELEMENT_OFFSET, .reada = 0,}
#define MAX_US_INT 0xffff
// reiserfs version 2 has max offset 60 bits. Version 1 - 32 bit offset
#ifndef U32_MAX
#define U32_MAX (~(__u32)0)
#endif /* !U32_MAX */
static inline loff_t max_reiserfs_offset(struct inode *inode)
{