]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
erofs: clean up file headers & footers
authorGao Xiang <hsiangkao@linux.alibaba.com>
Wed, 2 Jun 2021 16:06:34 +0000 (00:06 +0800)
committerGao Xiang <hsiangkao@linux.alibaba.com>
Mon, 7 Jun 2021 16:41:24 +0000 (00:41 +0800)
 - Remove my outdated misleading email address;

 - Get rid of all unnecessary trailing newline by accident.

Link: https://lore.kernel.org/r/20210602160634.10757-1-xiang@kernel.org
Reviewed-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Gao Xiang <hsiangkao@linux.alibaba.com>
18 files changed:
fs/erofs/Kconfig
fs/erofs/compress.h
fs/erofs/data.c
fs/erofs/decompressor.c
fs/erofs/dir.c
fs/erofs/erofs_fs.h
fs/erofs/inode.c
fs/erofs/internal.h
fs/erofs/namei.c
fs/erofs/super.c
fs/erofs/tagptr.h
fs/erofs/utils.c
fs/erofs/xattr.c
fs/erofs/xattr.h
fs/erofs/zdata.c
fs/erofs/zdata.h
fs/erofs/zmap.c
fs/erofs/zpvec.h

index 858b3339f381f2347977e414022030d979769f8e..906af0c1998c1a6c233d2d82d7657c41ce9c2877 100644 (file)
@@ -75,4 +75,3 @@ config EROFS_FS_ZIP
          Enable fixed-sized output compression for EROFS.
 
          If you don't want to enable compression feature, say N.
-
index aea129ddda74bff6673ef07b06fbfaf8c36f2ace..3701c72bacb2e0b33b3d9657f3c3f1f6ef68eaf9 100644 (file)
@@ -2,7 +2,6 @@
 /*
  * Copyright (C) 2019 HUAWEI, Inc.
  *             https://www.huawei.com/
- * Created by Gao Xiang <gaoxiang25@huawei.com>
  */
 #ifndef __EROFS_FS_COMPRESS_H
 #define __EROFS_FS_COMPRESS_H
@@ -85,4 +84,3 @@ int z_erofs_decompress(struct z_erofs_decompress_req *rq,
                       struct list_head *pagepool);
 
 #endif
-
index ebac756cb2a38eae0fe6450dc90b3aa4ddb2809d..3787a5fb0a42bb0e65014f1260f6e27e7f8f607b 100644 (file)
@@ -2,7 +2,6 @@
 /*
  * Copyright (C) 2017-2018 HUAWEI, Inc.
  *             https://www.huawei.com/
- * Created by Gao Xiang <gaoxiang25@huawei.com>
  */
 #include "internal.h"
 #include <linux/prefetch.h>
@@ -315,4 +314,3 @@ const struct address_space_operations erofs_raw_access_aops = {
        .readahead = erofs_raw_access_readahead,
        .bmap = erofs_bmap,
 };
-
index 88e33addf2298e21903dbab7b8621994479ffbe0..a5bc4b1b7813e9a2b82e119074ef81336c004adf 100644 (file)
@@ -2,7 +2,6 @@
 /*
  * Copyright (C) 2019 HUAWEI, Inc.
  *             https://www.huawei.com/
- * Created by Gao Xiang <gaoxiang25@huawei.com>
  */
 #include "compress.h"
 #include <linux/module.h>
@@ -407,4 +406,3 @@ int z_erofs_decompress(struct z_erofs_decompress_req *rq,
                return z_erofs_shifted_transform(rq, pagepool);
        return z_erofs_decompress_generic(rq, pagepool);
 }
-
index 2776bb832127d79d55c91da1b0a1a6fe4705a27e..eee9b0b31b639b17f35e63158abfa5b7cd72dcf8 100644 (file)
@@ -2,7 +2,6 @@
 /*
  * Copyright (C) 2017-2018 HUAWEI, Inc.
  *             https://www.huawei.com/
- * Created by Gao Xiang <gaoxiang25@huawei.com>
  */
 #include "internal.h"
 
@@ -139,4 +138,3 @@ const struct file_operations erofs_dir_fops = {
        .read           = generic_read_dir,
        .iterate_shared = erofs_readdir,
 };
-
index 8739d3adf51f1f9626fd357718cc0e8080877d33..0f8da74570b440706de8d47ed0792fde3515be8e 100644 (file)
@@ -4,7 +4,6 @@
  *
  * Copyright (C) 2017-2018 HUAWEI, Inc.
  *             https://www.huawei.com/
- * Created by Gao Xiang <gaoxiang25@huawei.com>
  */
 #ifndef __EROFS_FS_H
 #define __EROFS_FS_H
@@ -348,4 +347,3 @@ static inline void erofs_check_ondisk_layout_definitions(void)
 }
 
 #endif
-
index 7ed2d73916928445ac9f3d842f7f36f0574529ce..aa8a0d770ba34557459f2e68973da9abf9c9af26 100644 (file)
@@ -2,7 +2,6 @@
 /*
  * Copyright (C) 2017-2018 HUAWEI, Inc.
  *             https://www.huawei.com/
- * Created by Gao Xiang <gaoxiang25@huawei.com>
  */
 #include "xattr.h"
 
@@ -374,4 +373,3 @@ const struct inode_operations erofs_fast_symlink_iops = {
        .listxattr = erofs_listxattr,
        .get_acl = erofs_get_acl,
 };
-
index f92e3e32b9f484dcf70b0c7705bc7aad561622f2..543c2ff97d30f84f95b42d6029605487a9b87574 100644 (file)
@@ -2,7 +2,6 @@
 /*
  * Copyright (C) 2017-2018 HUAWEI, Inc.
  *             https://www.huawei.com/
- * Created by Gao Xiang <gaoxiang25@huawei.com>
  */
 #ifndef __EROFS_INTERNAL_H
 #define __EROFS_INTERNAL_H
@@ -469,4 +468,3 @@ static inline int z_erofs_load_lz4_config(struct super_block *sb,
 #define EFSCORRUPTED    EUCLEAN         /* Filesystem is corrupted */
 
 #endif /* __EROFS_INTERNAL_H */
-
index 3a81e1f7fc0671e883c921b92dbc670bdd319806..a8271ce5e13ffaec79fca8e446a26f359ac920e5 100644 (file)
@@ -2,7 +2,6 @@
 /*
  * Copyright (C) 2017-2018 HUAWEI, Inc.
  *             https://www.huawei.com/
- * Created by Gao Xiang <gaoxiang25@huawei.com>
  */
 #include "xattr.h"
 
@@ -247,4 +246,3 @@ const struct inode_operations erofs_dir_iops = {
        .listxattr = erofs_listxattr,
        .get_acl = erofs_get_acl,
 };
-
index 22991d22af5a2d92e6455a104763925b58256600..8fc6c04b54f4163832ef491d49c9478a7085715c 100644 (file)
@@ -2,7 +2,6 @@
 /*
  * Copyright (C) 2017-2018 HUAWEI, Inc.
  *             https://www.huawei.com/
- * Created by Gao Xiang <gaoxiang25@huawei.com>
  */
 #include <linux/module.h>
 #include <linux/buffer_head.h>
@@ -752,4 +751,3 @@ module_exit(erofs_module_exit);
 MODULE_DESCRIPTION("Enhanced ROM File System");
 MODULE_AUTHOR("Gao Xiang, Chao Yu, Miao Xie, CONSUMER BG, HUAWEI Inc.");
 MODULE_LICENSE("GPL");
-
index a72897c86744c057240a2ee6fc6461c5cbe19924..64ceb7270b5c1845ef2a85d18ccdc56755710277 100644 (file)
@@ -1,8 +1,6 @@
 /* SPDX-License-Identifier: GPL-2.0-only */
 /*
  * A tagged pointer implementation
- *
- * Copyright (C) 2018 Gao Xiang <gaoxiang25@huawei.com>
  */
 #ifndef __EROFS_FS_TAGPTR_H
 #define __EROFS_FS_TAGPTR_H
@@ -107,4 +105,3 @@ tagptr_init(o, cmpxchg(&ptptr->v, o.v, n.v)); })
 *ptptr; })
 
 #endif /* __EROFS_FS_TAGPTR_H */
-
index 6758c5b19f7cf8f05dec69b9e2e05edd453df535..bd86067a63f7fc5e2e2310294241e50cf8af8ab2 100644 (file)
@@ -2,7 +2,6 @@
 /*
  * Copyright (C) 2018 HUAWEI, Inc.
  *             https://www.huawei.com/
- * Created by Gao Xiang <gaoxiang25@huawei.com>
  */
 #include "internal.h"
 #include <linux/pagevec.h>
@@ -278,4 +277,3 @@ void erofs_exit_shrinker(void)
        unregister_shrinker(&erofs_shrinker_info);
 }
 #endif /* !CONFIG_EROFS_FS_ZIP */
-
index 47314a26767a844fb016b1b8ebe435c014f4a1ea..8dd54b420a1d685fa49cc4c761f8520d4ec73a68 100644 (file)
@@ -2,7 +2,6 @@
 /*
  * Copyright (C) 2017-2018 HUAWEI, Inc.
  *             https://www.huawei.com/
- * Created by Gao Xiang <gaoxiang25@huawei.com>
  */
 #include <linux/security.h>
 #include "xattr.h"
@@ -709,4 +708,3 @@ struct posix_acl *erofs_get_acl(struct inode *inode, int type)
        return acl;
 }
 #endif
-
index 815304bd335f53286e4b1a826e7373538b270324..366dcb400525f01297236a11644ce797628e033b 100644 (file)
@@ -2,7 +2,6 @@
 /*
  * Copyright (C) 2017-2018 HUAWEI, Inc.
  *             https://www.huawei.com/
- * Created by Gao Xiang <gaoxiang25@huawei.com>
  */
 #ifndef __EROFS_XATTR_H
 #define __EROFS_XATTR_H
index 275fef484f247e5382aef70c2bc393613b0a4076..cb4d0889eca95b3fe99838562e13cc998d19fe87 100644 (file)
@@ -2,7 +2,6 @@
 /*
  * Copyright (C) 2018 HUAWEI, Inc.
  *             https://www.huawei.com/
- * Created by Gao Xiang <gaoxiang25@huawei.com>
  */
 #include "zdata.h"
 #include "compress.h"
@@ -1469,4 +1468,3 @@ const struct address_space_operations z_erofs_aops = {
        .readpage = z_erofs_readpage,
        .readahead = z_erofs_readahead,
 };
-
index 942ee69dff6af134c33282763decddbb0ecf2804..3a008f1b9f7879ea2430f1b6bb63e5ce314e7124 100644 (file)
@@ -2,7 +2,6 @@
 /*
  * Copyright (C) 2018 HUAWEI, Inc.
  *             https://www.huawei.com/
- * Created by Gao Xiang <gaoxiang25@huawei.com>
  */
 #ifndef __EROFS_FS_ZDATA_H
 #define __EROFS_FS_ZDATA_H
index efaf32596b97f0ad5100c8c7c18c990b9078a5d3..f68aea4baed74d2ff600978833ad0cfc84f30d0c 100644 (file)
@@ -2,7 +2,6 @@
 /*
  * Copyright (C) 2018-2019 HUAWEI, Inc.
  *             https://www.huawei.com/
- * Created by Gao Xiang <gaoxiang25@huawei.com>
  */
 #include "internal.h"
 #include <asm/unaligned.h>
@@ -597,4 +596,3 @@ out:
        DBG_BUGON(err < 0 && err != -ENOMEM);
        return err;
 }
-
index 95a620739e6a64fa7f25ddb127ba7962d964e75a..dfd7fe0503bb111b1ea80c43f5cd1cc8e3ef0b71 100644 (file)
@@ -2,7 +2,6 @@
 /*
  * Copyright (C) 2018 HUAWEI, Inc.
  *             https://www.huawei.com/
- * Created by Gao Xiang <gaoxiang25@huawei.com>
  */
 #ifndef __EROFS_FS_ZPVEC_H
 #define __EROFS_FS_ZPVEC_H
@@ -151,4 +150,3 @@ z_erofs_pagevec_dequeue(struct z_erofs_pagevec_ctor *ctor,
        return tagptr_unfold_ptr(t);
 }
 #endif
-