toracat / rpms / kernel

Forked from rpms/kernel 5 years ago
Clone

Blame SOURCES/centos-linux-3.10-reiserfs-fix-redefine-error.patch

b312fc
centosplus patch
b312fc
b312fc
Building reiserfs.ko under EL7.1 produces error:
b312fc
b312fc
In file included from fs/reiserfs/bitmap.c:7:0:
b312fc
fs/reiserfs/reiserfs.h:1957:0: error: "U32_MAX" redefined [-Werror]
b312fc
 #define U32_MAX (~(__u32)0)
b312fc
b312fc
Solution:
b312fc
b312fc
In EL7.1 kernels (>= 210), U32_MAX is defined in include/linux/kernel.h
b312fc
This define now needs to be deleted from reiserfs.h
b312fc
b312fc
Applied-by: Akemi Yagi <toracat@centos.org>
b312fc
b312fc
--- a/fs/reiserfs/reiserfs.h	2014-11-24 14:38:58.000000000 -0800
b312fc
+++ b/fs/reiserfs/reiserfs.h	2015-01-12 15:34:40.187297040 -0800
b312fc
@@ -1954,7 +1954,6 @@ struct treepath var = {.path_length = IL
b312fc
 #define MAX_US_INT 0xffff
b312fc
 
b312fc
 // reiserfs version 2 has max offset 60 bits. Version 1 - 32 bit offset
b312fc
-#define U32_MAX (~(__u32)0)
b312fc
 
b312fc
 static inline loff_t max_reiserfs_offset(struct inode *inode)
b312fc
 {