Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

erofs: clean up file headers & footers

- 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>

-34
-1
fs/erofs/Kconfig
··· 75 75 Enable fixed-sized output compression for EROFS. 76 76 77 77 If you don't want to enable compression feature, say N. 78 -
-2
fs/erofs/compress.h
··· 2 2 /* 3 3 * Copyright (C) 2019 HUAWEI, Inc. 4 4 * https://www.huawei.com/ 5 - * Created by Gao Xiang <gaoxiang25@huawei.com> 6 5 */ 7 6 #ifndef __EROFS_FS_COMPRESS_H 8 7 #define __EROFS_FS_COMPRESS_H ··· 84 85 struct list_head *pagepool); 85 86 86 87 #endif 87 -
-2
fs/erofs/data.c
··· 2 2 /* 3 3 * Copyright (C) 2017-2018 HUAWEI, Inc. 4 4 * https://www.huawei.com/ 5 - * Created by Gao Xiang <gaoxiang25@huawei.com> 6 5 */ 7 6 #include "internal.h" 8 7 #include <linux/prefetch.h> ··· 314 315 .readahead = erofs_raw_access_readahead, 315 316 .bmap = erofs_bmap, 316 317 }; 317 -
-2
fs/erofs/decompressor.c
··· 2 2 /* 3 3 * Copyright (C) 2019 HUAWEI, Inc. 4 4 * https://www.huawei.com/ 5 - * Created by Gao Xiang <gaoxiang25@huawei.com> 6 5 */ 7 6 #include "compress.h" 8 7 #include <linux/module.h> ··· 406 407 return z_erofs_shifted_transform(rq, pagepool); 407 408 return z_erofs_decompress_generic(rq, pagepool); 408 409 } 409 -
-2
fs/erofs/dir.c
··· 2 2 /* 3 3 * Copyright (C) 2017-2018 HUAWEI, Inc. 4 4 * https://www.huawei.com/ 5 - * Created by Gao Xiang <gaoxiang25@huawei.com> 6 5 */ 7 6 #include "internal.h" 8 7 ··· 138 139 .read = generic_read_dir, 139 140 .iterate_shared = erofs_readdir, 140 141 }; 141 -
-2
fs/erofs/erofs_fs.h
··· 4 4 * 5 5 * Copyright (C) 2017-2018 HUAWEI, Inc. 6 6 * https://www.huawei.com/ 7 - * Created by Gao Xiang <gaoxiang25@huawei.com> 8 7 */ 9 8 #ifndef __EROFS_FS_H 10 9 #define __EROFS_FS_H ··· 347 348 } 348 349 349 350 #endif 350 -
-2
fs/erofs/inode.c
··· 2 2 /* 3 3 * Copyright (C) 2017-2018 HUAWEI, Inc. 4 4 * https://www.huawei.com/ 5 - * Created by Gao Xiang <gaoxiang25@huawei.com> 6 5 */ 7 6 #include "xattr.h" 8 7 ··· 373 374 .listxattr = erofs_listxattr, 374 375 .get_acl = erofs_get_acl, 375 376 }; 376 -
-2
fs/erofs/internal.h
··· 2 2 /* 3 3 * Copyright (C) 2017-2018 HUAWEI, Inc. 4 4 * https://www.huawei.com/ 5 - * Created by Gao Xiang <gaoxiang25@huawei.com> 6 5 */ 7 6 #ifndef __EROFS_INTERNAL_H 8 7 #define __EROFS_INTERNAL_H ··· 468 469 #define EFSCORRUPTED EUCLEAN /* Filesystem is corrupted */ 469 470 470 471 #endif /* __EROFS_INTERNAL_H */ 471 -
-2
fs/erofs/namei.c
··· 2 2 /* 3 3 * Copyright (C) 2017-2018 HUAWEI, Inc. 4 4 * https://www.huawei.com/ 5 - * Created by Gao Xiang <gaoxiang25@huawei.com> 6 5 */ 7 6 #include "xattr.h" 8 7 ··· 246 247 .listxattr = erofs_listxattr, 247 248 .get_acl = erofs_get_acl, 248 249 }; 249 -
-2
fs/erofs/super.c
··· 2 2 /* 3 3 * Copyright (C) 2017-2018 HUAWEI, Inc. 4 4 * https://www.huawei.com/ 5 - * Created by Gao Xiang <gaoxiang25@huawei.com> 6 5 */ 7 6 #include <linux/module.h> 8 7 #include <linux/buffer_head.h> ··· 751 752 MODULE_DESCRIPTION("Enhanced ROM File System"); 752 753 MODULE_AUTHOR("Gao Xiang, Chao Yu, Miao Xie, CONSUMER BG, HUAWEI Inc."); 753 754 MODULE_LICENSE("GPL"); 754 -
-3
fs/erofs/tagptr.h
··· 1 1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 2 /* 3 3 * A tagged pointer implementation 4 - * 5 - * Copyright (C) 2018 Gao Xiang <gaoxiang25@huawei.com> 6 4 */ 7 5 #ifndef __EROFS_FS_TAGPTR_H 8 6 #define __EROFS_FS_TAGPTR_H ··· 105 107 *ptptr; }) 106 108 107 109 #endif /* __EROFS_FS_TAGPTR_H */ 108 -
-2
fs/erofs/utils.c
··· 2 2 /* 3 3 * Copyright (C) 2018 HUAWEI, Inc. 4 4 * https://www.huawei.com/ 5 - * Created by Gao Xiang <gaoxiang25@huawei.com> 6 5 */ 7 6 #include "internal.h" 8 7 #include <linux/pagevec.h> ··· 277 278 unregister_shrinker(&erofs_shrinker_info); 278 279 } 279 280 #endif /* !CONFIG_EROFS_FS_ZIP */ 280 -
-2
fs/erofs/xattr.c
··· 2 2 /* 3 3 * Copyright (C) 2017-2018 HUAWEI, Inc. 4 4 * https://www.huawei.com/ 5 - * Created by Gao Xiang <gaoxiang25@huawei.com> 6 5 */ 7 6 #include <linux/security.h> 8 7 #include "xattr.h" ··· 708 709 return acl; 709 710 } 710 711 #endif 711 -
-1
fs/erofs/xattr.h
··· 2 2 /* 3 3 * Copyright (C) 2017-2018 HUAWEI, Inc. 4 4 * https://www.huawei.com/ 5 - * Created by Gao Xiang <gaoxiang25@huawei.com> 6 5 */ 7 6 #ifndef __EROFS_XATTR_H 8 7 #define __EROFS_XATTR_H
-2
fs/erofs/zdata.c
··· 2 2 /* 3 3 * Copyright (C) 2018 HUAWEI, Inc. 4 4 * https://www.huawei.com/ 5 - * Created by Gao Xiang <gaoxiang25@huawei.com> 6 5 */ 7 6 #include "zdata.h" 8 7 #include "compress.h" ··· 1468 1469 .readpage = z_erofs_readpage, 1469 1470 .readahead = z_erofs_readahead, 1470 1471 }; 1471 -
-1
fs/erofs/zdata.h
··· 2 2 /* 3 3 * Copyright (C) 2018 HUAWEI, Inc. 4 4 * https://www.huawei.com/ 5 - * Created by Gao Xiang <gaoxiang25@huawei.com> 6 5 */ 7 6 #ifndef __EROFS_FS_ZDATA_H 8 7 #define __EROFS_FS_ZDATA_H
-2
fs/erofs/zmap.c
··· 2 2 /* 3 3 * Copyright (C) 2018-2019 HUAWEI, Inc. 4 4 * https://www.huawei.com/ 5 - * Created by Gao Xiang <gaoxiang25@huawei.com> 6 5 */ 7 6 #include "internal.h" 8 7 #include <asm/unaligned.h> ··· 596 597 DBG_BUGON(err < 0 && err != -ENOMEM); 597 598 return err; 598 599 } 599 -
-2
fs/erofs/zpvec.h
··· 2 2 /* 3 3 * Copyright (C) 2018 HUAWEI, Inc. 4 4 * https://www.huawei.com/ 5 - * Created by Gao Xiang <gaoxiang25@huawei.com> 6 5 */ 7 6 #ifndef __EROFS_FS_ZPVEC_H 8 7 #define __EROFS_FS_ZPVEC_H ··· 150 151 return tagptr_unfold_ptr(t); 151 152 } 152 153 #endif 153 -