From: Andreas Gruenbacher Date: Fri, 18 Apr 2025 14:40:58 +0000 (+0200) Subject: gfs2: gfs2_create_inode error handling fix X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=af4044fd0b77e915736527dd83011e46e6415f01;p=users%2Fdwmw2%2Flinux.git gfs2: gfs2_create_inode error handling fix When gfs2_create_inode() finds a directory, make sure to return -EISDIR. Fixes: 571a4b57975a ("GFS2: bugger off early if O_CREAT open finds a directory") Signed-off-by: Andreas Gruenbacher --- diff --git a/fs/gfs2/inode.c b/fs/gfs2/inode.c index 198a8cbaf5e5a..9621680814b80 100644 --- a/fs/gfs2/inode.c +++ b/fs/gfs2/inode.c @@ -659,7 +659,8 @@ static int gfs2_create_inode(struct inode *dir, struct dentry *dentry, if (!IS_ERR(inode)) { if (S_ISDIR(inode->i_mode)) { iput(inode); - inode = ERR_PTR(-EISDIR); + inode = NULL; + error = -EISDIR; goto fail_gunlock; } d_instantiate(dentry, inode);