From: Chris Mason Date: Mon, 23 Aug 2010 14:47:55 +0000 (-0400) Subject: aio: bump i_count instead of using igrab X-Git-Tag: v2.6.37-rc1~94^2~37 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=306fb0979443419288594446a348155a8027dcf2;p=pandora-kernel.git aio: bump i_count instead of using igrab The aio batching code is using igrab to get an extra reference on the inode so it can safely batch. igrab will go ahead and take the global inode spinlock, which can be a bottleneck on large machines doing lots of AIO. In this case, igrab isn't required because we already have a reference on the file handle. It is safe to just bump the i_count directly on the inode. Benchmarking shows this patch brings IOP/s on tons of flash up by about 2.5X. Signed-off-by: Chris Mason --- Reading git-diff-tree failed