anon-inodes use open coded atomic_inc for the shared inode
authorDavide Libenzi <davidel@xmailserver.org>
Wed, 17 Oct 2007 06:30:19 +0000 (23:30 -0700)
committerLinus Torvalds <torvalds@woody.linux-foundation.org>
Wed, 17 Oct 2007 15:43:00 +0000 (08:43 -0700)
commit96fdc72ddfe8aa3eb1f51e78cc13babefbf26dda
tree58038ee825096fec9f330fe187e615bb7c2e8422
parent5e3c3ac9db432fbdd2da92ce0f12d7912706c689
anon-inodes use open coded atomic_inc for the shared inode

Since we know the shared inode count is always >0, we can avoid igrab()
and use an open coded atomic_inc().

This also fixes a bug noticed by Yan Zheng <yanzheng@21cn.com>: were checking
for an IS_ERR() return from igrab(), but it actually returns NULL on error.

Signed-off-by: Davide Libenzi <davidel@xmailserver.org>
Cc: Yan Zheng <yanzheng@21cn.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
fs/anon_inodes.c