lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Sat, 28 Dec 2019 03:36:23 +0800 From: kbuild test robot <lkp@...el.com> To: Harshad Shirwadkar <harshadshirwadkar@...il.com> Cc: kbuild-all@...ts.01.org, linux-ext4@...r.kernel.org, Harshad Shirwadkar <harshadshirwadkar@...il.com> Subject: [RFC PATCH] ext4: ext4_free_blocks_simple() can be static Fixes: bb863fa8f074 ("ext4: add idempotent helpers to manipulate bitmaps") Signed-off-by: kbuild test robot <lkp@...el.com> --- mballoc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/ext4/mballoc.c b/fs/ext4/mballoc.c index 05ca9001f8fa0..d5e9cc938338f 100644 --- a/fs/ext4/mballoc.c +++ b/fs/ext4/mballoc.c @@ -4778,8 +4778,8 @@ ext4_mb_free_metadata(handle_t *handle, struct ext4_buddy *e4b, return 0; } -void ext4_free_blocks_simple(struct inode *inode, ext4_fsblk_t block, - unsigned long count) +static void ext4_free_blocks_simple(struct inode *inode, ext4_fsblk_t block, + unsigned long count) { struct buffer_head *bitmap_bh; struct super_block *sb = inode->i_sb;
Powered by blists - more mailing lists