You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
529 B
11 lines
529 B
diff -up f2fs-tools-1.4.0/include/f2fs_fs.h.orig f2fs-tools-1.4.0/include/f2fs_fs.h |
|
--- f2fs-tools-1.4.0/include/f2fs_fs.h.orig 2015-01-03 09:45:23.000000000 +0100 |
|
+++ f2fs-tools-1.4.0/include/f2fs_fs.h 2015-01-03 09:45:20.000000000 +0100 |
|
@@ -34,6 +34,7 @@ typedef unsigned long pgoff_t; |
|
#define cpu_to_le32(x) ((__u32)(x)) |
|
#define cpu_to_le64(x) ((__u64)(x)) |
|
#elif __BYTE_ORDER == __BIG_ENDIAN |
|
+#include <byteswap.h> |
|
#define le16_to_cpu(x) bswap_16(x) |
|
#define le32_to_cpu(x) bswap_32(x) |
|
#define le64_to_cpu(x) bswap_64(x)
|
|
|