aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/linux/f2fs_fs.h
diff options
context:
space:
mode:
authorSheng Yong <shengyong1@huawei.com>2016-01-28 11:40:26 +0000
committerJaegeuk Kim <jaegeuk@kernel.org>2016-02-22 16:07:23 -0800
commit479c8bc40c51535bf496440aa1d6af26e4ff9362 (patch)
tree42e71a83f9b6e8771c6bbdefffacb55107e21418 /include/linux/f2fs_fs.h
parentf2fs: speed up handling holes in fiemap (diff)
downloadwireguard-linux-479c8bc40c51535bf496440aa1d6af26e4ff9362.tar.xz
wireguard-linux-479c8bc40c51535bf496440aa1d6af26e4ff9362.zip
f2fs: fix endianness of on-disk summary_footer
Signed-off-by: Sheng Yong <shengyong1@huawei.com> Reviewed-by: Chao Yu <chao2.yu@samsung.com> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'include/linux/f2fs_fs.h')
-rw-r--r--include/linux/f2fs_fs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/f2fs_fs.h b/include/linux/f2fs_fs.h
index 44ae822e154f..ac8040278f69 100644
--- a/include/linux/f2fs_fs.h
+++ b/include/linux/f2fs_fs.h
@@ -345,7 +345,7 @@ struct f2fs_summary {
struct summary_footer {
unsigned char entry_type; /* SUM_TYPE_XXX */
- __u32 check_sum; /* summary checksum */
+ __le32 check_sum; /* summary checksum */
} __packed;
#define SUM_JOURNAL_SIZE (F2FS_BLKSIZE - SUM_FOOTER_SIZE -\