linux-mtd.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ubifs: return ENOSPC if running out of inode number
@ 2017-02-07  7:28 Sheng Yong
  2017-02-07  7:57 ` Richard Weinberger
  0 siblings, 1 reply; 5+ messages in thread
From: Sheng Yong @ 2017-02-07  7:28 UTC (permalink / raw)
  To: linux-mtd, richard, dedekind1; +Cc: shengyong1

Signed-off-by: Sheng Yong <shengyong1@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

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2017-02-07 10:07 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-02-07  7:28 [PATCH] ubifs: return ENOSPC if running out of inode number Sheng Yong
2017-02-07  7:57 ` Richard Weinberger
2017-02-07  8:19   ` Sheng Yong
2017-02-07  9:25     ` Richard Weinberger
2017-02-07 10:05       ` Sheng Yong

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).