[PATCH 3/3] erofs-utils: lib: propagate return code for erofs_bflush()
Gao Xiang
hsiangkao at linux.alibaba.com
Mon Oct 23 19:12:41 AEDT 2023
Instead of just using a boolean.
Signed-off-by: Gao Xiang <hsiangkao at linux.alibaba.com>
---
include/erofs/cache.h | 8 ++++----
lib/cache.c | 21 ++++++++++++++-------
lib/inode.c | 18 +++++++++---------
mkfs/main.c | 14 +++++++-------
4 files changed, 34 insertions(+), 27 deletions(-)
diff --git a/include/erofs/cache.h b/include/erofs/cache.h
index 31f54a4..11fc6ab 100644
--- a/include/erofs/cache.h
+++ b/include/erofs/cache.h
@@ -30,7 +30,7 @@ struct erofs_buffer_block;
#define DEVT 5
struct erofs_bhops {
- bool (*flush)(struct erofs_buffer_head *bh);
+ int (*flush)(struct erofs_buffer_head *bh);
};
struct erofs_buffer_head {
@@ -91,11 +91,11 @@ static inline erofs_off_t erofs_btell(struct erofs_buffer_head *bh, bool end)
(end ? list_next_entry(bh, list)->off : bh->off);
}
-static inline bool erofs_bh_flush_generic_end(struct erofs_buffer_head *bh)
+static inline int erofs_bh_flush_generic_end(struct erofs_buffer_head *bh)
{
list_del(&bh->list);
free(bh);
- return true;
+ return 0;
}
struct erofs_buffer_head *erofs_buffer_init(void);
@@ -108,7 +108,7 @@ struct erofs_buffer_head *erofs_battach(struct erofs_buffer_head *bh,
int type, unsigned int size);
erofs_blk_t erofs_mapbh(struct erofs_buffer_block *bb);
-bool erofs_bflush(struct erofs_buffer_block *bb);
+int erofs_bflush(struct erofs_buffer_block *bb);
void erofs_bdrop(struct erofs_buffer_head *bh, bool tryrevoke);
erofs_blk_t erofs_total_metablocks(void);
diff --git a/lib/cache.c b/lib/cache.c
index e3cf69e..393b275 100644
--- a/lib/cache.c
+++ b/lib/cache.c
@@ -21,7 +21,7 @@ static struct list_head mapped_buckets[META + 1][EROFS_MAX_BLOCK_SIZE];
/* last mapped buffer block to accelerate erofs_mapbh() */
static struct erofs_buffer_block *last_mapped_block = &blkh;
-static bool erofs_bh_flush_drop_directly(struct erofs_buffer_head *bh)
+static int erofs_bh_flush_drop_directly(struct erofs_buffer_head *bh)
{
return erofs_bh_flush_generic_end(bh);
}
@@ -30,9 +30,9 @@ const struct erofs_bhops erofs_drop_directly_bhops = {
.flush = erofs_bh_flush_drop_directly,
};
-static bool erofs_bh_flush_skip_write(struct erofs_buffer_head *bh)
+static int erofs_bh_flush_skip_write(struct erofs_buffer_head *bh)
{
- return false;
+ return -EBUSY;
}
const struct erofs_bhops erofs_skip_write_bhops = {
@@ -366,7 +366,7 @@ static void erofs_bfree(struct erofs_buffer_block *bb)
free(bb);
}
-bool erofs_bflush(struct erofs_buffer_block *bb)
+int erofs_bflush(struct erofs_buffer_block *bb)
{
const unsigned int blksiz = erofs_blksiz(&sbi);
struct erofs_buffer_block *p, *n;
@@ -376,6 +376,7 @@ bool erofs_bflush(struct erofs_buffer_block *bb)
struct erofs_buffer_head *bh, *nbh;
unsigned int padding;
bool skip = false;
+ int ret;
if (p == bb)
break;
@@ -383,9 +384,15 @@ bool erofs_bflush(struct erofs_buffer_block *bb)
blkaddr = __erofs_mapbh(p);
list_for_each_entry_safe(bh, nbh, &p->buffers.list, list) {
- /* flush and remove bh */
- if (!bh->op->flush(bh))
+ if (bh->op == &erofs_skip_write_bhops) {
skip = true;
+ continue;
+ }
+
+ /* flush and remove bh */
+ ret = bh->op->flush(bh);
+ if (ret < 0)
+ return ret;
}
if (skip)
@@ -401,7 +408,7 @@ bool erofs_bflush(struct erofs_buffer_block *bb)
erofs_dbg("block %u to %u flushed", p->blkaddr, blkaddr - 1);
erofs_bfree(p);
}
- return true;
+ return 0;
}
void erofs_bdrop(struct erofs_buffer_head *bh, bool tryrevoke)
diff --git a/lib/inode.c b/lib/inode.c
index e68b9d1..bcdb4b8 100644
--- a/lib/inode.c
+++ b/lib/inode.c
@@ -136,6 +136,7 @@ unsigned int erofs_iput(struct erofs_inode *inode)
list_for_each_entry_safe(d, t, &inode->i_subdirs, d_child)
free(d);
+ free(inode->compressmeta);
if (inode->eof_tailraw)
free(inode->eof_tailraw);
list_del(&inode->i_hash);
@@ -505,7 +506,7 @@ int erofs_write_file(struct erofs_inode *inode, int fd, u64 fpos)
return write_uncompressed_file_from_fd(inode, fd);
}
-static bool erofs_bh_flush_write_inode(struct erofs_buffer_head *bh)
+static int erofs_bh_flush_write_inode(struct erofs_buffer_head *bh)
{
struct erofs_inode *const inode = bh->fsprivate;
struct erofs_sb_info *sbi = inode->sbi;
@@ -597,19 +598,19 @@ static bool erofs_bh_flush_write_inode(struct erofs_buffer_head *bh)
ret = dev_write(sbi, &u, off, inode->inode_isize);
if (ret)
- return false;
+ return ret;
off += inode->inode_isize;
if (inode->xattr_isize) {
char *xattrs = erofs_export_xattr_ibody(inode);
if (IS_ERR(xattrs))
- return false;
+ return PTR_ERR(xattrs);
ret = dev_write(sbi, xattrs, off, inode->xattr_isize);
free(xattrs);
if (ret)
- return false;
+ return ret;
off += inode->xattr_isize;
}
@@ -618,15 +619,14 @@ static bool erofs_bh_flush_write_inode(struct erofs_buffer_head *bh)
if (inode->datalayout == EROFS_INODE_CHUNK_BASED) {
ret = erofs_blob_write_chunk_indexes(inode, off);
if (ret)
- return false;
+ return ret;
} else {
/* write compression metadata */
off = roundup(off, 8);
ret = dev_write(sbi, inode->compressmeta, off,
inode->extent_isize);
if (ret)
- return false;
- free(inode->compressmeta);
+ return ret;
}
}
@@ -737,7 +737,7 @@ noinline:
return 0;
}
-static bool erofs_bh_flush_write_inline(struct erofs_buffer_head *bh)
+static int erofs_bh_flush_write_inline(struct erofs_buffer_head *bh)
{
struct erofs_inode *const inode = bh->fsprivate;
const erofs_off_t off = erofs_btell(bh, false);
@@ -745,7 +745,7 @@ static bool erofs_bh_flush_write_inline(struct erofs_buffer_head *bh)
ret = dev_write(inode->sbi, inode->idata, off, inode->idata_size);
if (ret)
- return false;
+ return ret;
inode->idata_size = 0;
free(inode->idata);
diff --git a/mkfs/main.c b/mkfs/main.c
index 6d2b700..637d1b9 100644
--- a/mkfs/main.c
+++ b/mkfs/main.c
@@ -1170,10 +1170,9 @@ int main(int argc, char **argv)
}
/* flush all buffers except for the superblock */
- if (!erofs_bflush(NULL)) {
- err = -EIO;
+ err = erofs_bflush(NULL);
+ if (err)
goto exit;
- }
err = erofs_mkfs_update_super_block(sb_bh, root_nid, &nblocks,
packed_nid);
@@ -1181,10 +1180,11 @@ int main(int argc, char **argv)
goto exit;
/* flush all remaining buffers */
- if (!erofs_bflush(NULL))
- err = -EIO;
- else
- err = dev_resize(&sbi, nblocks);
+ err = erofs_bflush(NULL);
+ if (err)
+ goto exit;
+
+ err = dev_resize(&sbi, nblocks);
if (!err && erofs_sb_has_sb_chksum(&sbi))
err = erofs_mkfs_superblock_csum_set();
--
2.39.3
More information about the Linux-erofs
mailing list