From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dave Chinner Subject: [PATCH 3/4] fs: Use RCU freeing of inodes via SLAB_DESTROY_BY_RCU Date: Mon, 8 Nov 2010 18:28:24 +1100 Message-ID: <1289201305-14866-4-git-send-email-david@fromorbit.com> References: <1289201305-14866-1-git-send-email-david@fromorbit.com> Cc: linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org, eric.dumazet@gmail.com, paulmck@linux.vnet.ibm.com To: viro@ZenIV.linux.org.uk Return-path: In-Reply-To: <1289201305-14866-1-git-send-email-david@fromorbit.com> Sender: linux-kernel-owner@vger.kernel.org List-Id: linux-fsdevel.vger.kernel.org From: Dave Chinner Change the inode caches to use RCU freed inodes via the SLAB_DESTROY_BY_RCU method. This is the first step in converting the inode hash lookups to use RCU methods. Signed-off-by: Dave Chinner --- include/linux/slab.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/linux/slab.h b/include/linux/slab.h index dca23c5..1fea5f1 100644 --- a/include/linux/slab.h +++ b/include/linux/slab.h @@ -96,6 +96,7 @@ * Set the default flags necessary for inode caches manipulated by the VFS. */ #define SLAB_INODE_CACHE (SLAB_MEM_SPREAD | \ + SLAB_DESTROY_BY_RCU | \ SLAB_RECLAIM_ACCOUNT) /* -- 1.7.2.3