mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-07 03:15:31 +09:00
BACKPORT: f2fs: initialize extent_cache parameter
This can avoid confusing tracepoint values. Bug: 264453689 Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org> (cherry picked from commit b5825de803e7cf56262f5b3a8bc692d61acfe653) Change-Id: Ia43e2c1fd405a11fc4122b68f05f40c10f47f263
This commit is contained in:
@@ -2156,7 +2156,7 @@ int f2fs_read_multi_pages(struct compress_ctx *cc, struct bio **bio_ret,
|
|||||||
sector_t last_block_in_file;
|
sector_t last_block_in_file;
|
||||||
const unsigned blocksize = blks_to_bytes(inode, 1);
|
const unsigned blocksize = blks_to_bytes(inode, 1);
|
||||||
struct decompress_io_ctx *dic = NULL;
|
struct decompress_io_ctx *dic = NULL;
|
||||||
struct extent_info ei = {0, };
|
struct extent_info ei = {};
|
||||||
bool from_dnode = true;
|
bool from_dnode = true;
|
||||||
int i;
|
int i;
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
|
|||||||
@@ -937,7 +937,7 @@ out:
|
|||||||
|
|
||||||
static void __update_extent_cache(struct dnode_of_data *dn, enum extent_type type)
|
static void __update_extent_cache(struct dnode_of_data *dn, enum extent_type type)
|
||||||
{
|
{
|
||||||
struct extent_info ei;
|
struct extent_info ei = {};
|
||||||
|
|
||||||
if (!__may_extent_tree(dn->inode, type))
|
if (!__may_extent_tree(dn->inode, type))
|
||||||
return;
|
return;
|
||||||
|
|||||||
@@ -2591,7 +2591,7 @@ static int f2fs_defragment_range(struct f2fs_sb_info *sbi,
|
|||||||
struct f2fs_map_blocks map = { .m_next_extent = NULL,
|
struct f2fs_map_blocks map = { .m_next_extent = NULL,
|
||||||
.m_seg_type = NO_CHECK_TYPE,
|
.m_seg_type = NO_CHECK_TYPE,
|
||||||
.m_may_create = false };
|
.m_may_create = false };
|
||||||
struct extent_info ei = {0, };
|
struct extent_info ei = {};
|
||||||
pgoff_t pg_start, pg_end, next_pgofs;
|
pgoff_t pg_start, pg_end, next_pgofs;
|
||||||
unsigned int blk_per_seg = sbi->blocks_per_seg;
|
unsigned int blk_per_seg = sbi->blocks_per_seg;
|
||||||
unsigned int total = 0, sec_num;
|
unsigned int total = 0, sec_num;
|
||||||
|
|||||||
@@ -3301,7 +3301,7 @@ static int __get_segment_type_4(struct f2fs_io_info *fio)
|
|||||||
static int __get_age_segment_type(struct inode *inode, pgoff_t pgofs)
|
static int __get_age_segment_type(struct inode *inode, pgoff_t pgofs)
|
||||||
{
|
{
|
||||||
struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
|
struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
|
||||||
struct extent_info ei;
|
struct extent_info ei = {};
|
||||||
|
|
||||||
if (f2fs_lookup_age_extent_cache(inode, pgofs, &ei)) {
|
if (f2fs_lookup_age_extent_cache(inode, pgofs, &ei)) {
|
||||||
if (!ei.age)
|
if (!ei.age)
|
||||||
|
|||||||
Reference in New Issue
Block a user