[PATCH] ubifs: return ENOSPC if running out of inode number
Sheng Yong
shengyong1 at huawei.com
Mon Feb 6 23:28:08 PST 2017
Signed-off-by: Sheng Yong <shengyong1 at huawei.com>
---
fs/ubifs/dir.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fs/ubifs/dir.c b/fs/ubifs/dir.c
index 528369f..00517dc 100644
--- a/fs/ubifs/dir.c
+++ b/fs/ubifs/dir.c
@@ -164,7 +164,7 @@ struct inode *ubifs_new_inode(struct ubifs_info *c, struct inode *dir,
ubifs_err(c, "out of inode numbers");
make_bad_inode(inode);
iput(inode);
- return ERR_PTR(-EINVAL);
+ return ERR_PTR(-ENOSPC);
}
ubifs_warn(c, "running out of inode numbers (current %lu, max %u)",
(unsigned long)c->highest_inum, INUM_WATERMARK);
--
2.10.1
More information about the linux-mtd
mailing list