lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-ID: <20071010214334.17535.643.stgit@warthog.procyon.org.uk> Date: Wed, 10 Oct 2007 22:43:34 +0100 From: David Howells <dhowells@...hat.com> To: hch@...radead.org, viro@....linux.org.uk, torvalds@...l.org, akpm@...l.org Cc: linux-kernel@...r.kernel.org, linux-fsdevel@...r.kernel.org, dhowells@...hat.com Subject: [PATCH 05/31] IGET: Use iget_failed() in GFS2 [try #3] Use iget_failed() in GFS2 to kill a failed inode. Signed-off-by: David Howells <dhowells@...hat.com> --- fs/gfs2/inode.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/fs/gfs2/inode.c b/fs/gfs2/inode.c index 34f7bcd..498844f 100644 --- a/fs/gfs2/inode.c +++ b/fs/gfs2/inode.c @@ -185,7 +185,7 @@ fail_put: ip->i_gl->gl_object = NULL; gfs2_glock_put(ip->i_gl); fail: - iput(inode); + iget_failed(inode); return ERR_PTR(error); } - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists