diff options
author | Chao Yu <yuchao0@huawei.com> | 2020-06-18 08:36:22 +0200 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2020-07-08 06:51:43 +0200 |
commit | 0ef818335f734bbb4bb26b0eaab2c27aa6e5d2c2 (patch) | |
tree | cc7810711c74a7135fda96df90d2bfd5d931e46f /fs/f2fs/compress.c | |
parent | f2fs: use kfree() to free variables allocated by match_strdup() (diff) | |
download | linux-0ef818335f734bbb4bb26b0eaab2c27aa6e5d2c2.tar.xz linux-0ef818335f734bbb4bb26b0eaab2c27aa6e5d2c2.zip |
f2fs: add prefix for exported symbols
to avoid polluting global symbol namespace.
Signed-off-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs/compress.c')
-rw-r--r-- | fs/f2fs/compress.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/f2fs/compress.c b/fs/f2fs/compress.c index 4dca9e456734..7dbd56abe936 100644 --- a/fs/f2fs/compress.c +++ b/fs/f2fs/compress.c @@ -949,7 +949,7 @@ retry: } if (prealloc) { - __do_map_lock(sbi, F2FS_GET_BLOCK_PRE_AIO, true); + f2fs_do_map_lock(sbi, F2FS_GET_BLOCK_PRE_AIO, true); set_new_dnode(&dn, cc->inode, NULL, NULL, 0); @@ -964,7 +964,7 @@ retry: break; } - __do_map_lock(sbi, F2FS_GET_BLOCK_PRE_AIO, false); + f2fs_do_map_lock(sbi, F2FS_GET_BLOCK_PRE_AIO, false); } if (likely(!ret)) { |