Skip to content

Commit 7aed4d5

Browse files
committed
Merge tag 'erofs-for-5.14-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs
Pull erofs updates from Gao Xiang: "No noticable change available for this cycle. Just a bugfix related to sb chksum feature, two minor cleanups and Chao's email address update: - fix wrong error code overwritten due to sb checksum feature - two minor cleanups - update Chao's email address" * tag 'erofs-for-5.14-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs: MAINTAINERS: erofs: update my email address erofs: clean up file headers & footers erofs: remove the occupied parameter from z_erofs_pagevec_enqueue() erofs: fix error return code in erofs_read_superblock()
2 parents a58e203 + 8215d5b commit 7aed4d5

19 files changed

+4
-42
lines changed

MAINTAINERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6786,7 +6786,7 @@ F: include/video/s1d13xxxfb.h
67866786

67876787
EROFS FILE SYSTEM
67886788
M: Gao Xiang <[email protected]>
6789-
M: Chao Yu <[email protected]>
6789+
M: Chao Yu <[email protected]>
67906790
67916791
S: Maintained
67926792
T: git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git

fs/erofs/Kconfig

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,3 @@ config EROFS_FS_ZIP
7575
Enable fixed-sized output compression for EROFS.
7676

7777
If you don't want to enable compression feature, say N.
78-

fs/erofs/compress.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
/*
33
* Copyright (C) 2019 HUAWEI, Inc.
44
* https://www.huawei.com/
5-
* Created by Gao Xiang <[email protected]>
65
*/
76
#ifndef __EROFS_FS_COMPRESS_H
87
#define __EROFS_FS_COMPRESS_H
@@ -85,4 +84,3 @@ int z_erofs_decompress(struct z_erofs_decompress_req *rq,
8584
struct list_head *pagepool);
8685

8786
#endif
88-

fs/erofs/data.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
/*
33
* Copyright (C) 2017-2018 HUAWEI, Inc.
44
* https://www.huawei.com/
5-
* Created by Gao Xiang <[email protected]>
65
*/
76
#include "internal.h"
87
#include <linux/prefetch.h>
@@ -315,4 +314,3 @@ const struct address_space_operations erofs_raw_access_aops = {
315314
.readahead = erofs_raw_access_readahead,
316315
.bmap = erofs_bmap,
317316
};
318-

fs/erofs/decompressor.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
/*
33
* Copyright (C) 2019 HUAWEI, Inc.
44
* https://www.huawei.com/
5-
* Created by Gao Xiang <[email protected]>
65
*/
76
#include "compress.h"
87
#include <linux/module.h>
@@ -407,4 +406,3 @@ int z_erofs_decompress(struct z_erofs_decompress_req *rq,
407406
return z_erofs_shifted_transform(rq, pagepool);
408407
return z_erofs_decompress_generic(rq, pagepool);
409408
}
410-

fs/erofs/dir.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
/*
33
* Copyright (C) 2017-2018 HUAWEI, Inc.
44
* https://www.huawei.com/
5-
* Created by Gao Xiang <[email protected]>
65
*/
76
#include "internal.h"
87

@@ -139,4 +138,3 @@ const struct file_operations erofs_dir_fops = {
139138
.read = generic_read_dir,
140139
.iterate_shared = erofs_readdir,
141140
};
142-

fs/erofs/erofs_fs.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
*
55
* Copyright (C) 2017-2018 HUAWEI, Inc.
66
* https://www.huawei.com/
7-
* Created by Gao Xiang <[email protected]>
87
*/
98
#ifndef __EROFS_FS_H
109
#define __EROFS_FS_H
@@ -348,4 +347,3 @@ static inline void erofs_check_ondisk_layout_definitions(void)
348347
}
349348

350349
#endif
351-

fs/erofs/inode.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
/*
33
* Copyright (C) 2017-2018 HUAWEI, Inc.
44
* https://www.huawei.com/
5-
* Created by Gao Xiang <[email protected]>
65
*/
76
#include "xattr.h"
87

@@ -374,4 +373,3 @@ const struct inode_operations erofs_fast_symlink_iops = {
374373
.listxattr = erofs_listxattr,
375374
.get_acl = erofs_get_acl,
376375
};
377-

fs/erofs/internal.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
/*
33
* Copyright (C) 2017-2018 HUAWEI, Inc.
44
* https://www.huawei.com/
5-
* Created by Gao Xiang <[email protected]>
65
*/
76
#ifndef __EROFS_INTERNAL_H
87
#define __EROFS_INTERNAL_H
@@ -469,4 +468,3 @@ static inline int z_erofs_load_lz4_config(struct super_block *sb,
469468
#define EFSCORRUPTED EUCLEAN /* Filesystem is corrupted */
470469

471470
#endif /* __EROFS_INTERNAL_H */
472-

fs/erofs/namei.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
/*
33
* Copyright (C) 2017-2018 HUAWEI, Inc.
44
* https://www.huawei.com/
5-
* Created by Gao Xiang <[email protected]>
65
*/
76
#include "xattr.h"
87

@@ -247,4 +246,3 @@ const struct inode_operations erofs_dir_iops = {
247246
.listxattr = erofs_listxattr,
248247
.get_acl = erofs_get_acl,
249248
};
250-

0 commit comments

Comments
 (0)