Revert "ocfs2: fix uninit-value in ocfs2_get_block()"

This reverts commit 33b11064c4.
This commit is contained in:
Ksawlii 2024-11-24 00:23:03 +01:00
parent dfe3742af2
commit 2de4d41368

View file

@ -158,8 +158,9 @@ int ocfs2_get_block(struct inode *inode, sector_t iblock,
err = ocfs2_extent_map_get_blocks(inode, iblock, &p_blkno, &count,
&ext_flags);
if (err) {
mlog(ML_ERROR, "get_blocks() failed, inode: 0x%p, "
"block: %llu\n", inode, (unsigned long long)iblock);
mlog(ML_ERROR, "Error %d from get_blocks(0x%p, %llu, 1, "
"%llu, NULL)\n", err, inode, (unsigned long long)iblock,
(unsigned long long)p_blkno);
goto bail;
}