From: Chris Mason Date: Wed, 4 Feb 2009 14:24:05 +0000 (-0500) Subject: Btrfs: disable leak debugging checks in extent_io.c X-Git-Tag: v2.6.29-rc4~9^2~13 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3935127c50c84106d654ef14962cff28c660bc62;p=pandora-kernel.git Btrfs: disable leak debugging checks in extent_io.c extent_io.c has debugging code to report and free leaked extent_state and extent_buffer objects at rmmod time. This helps track down leaks and it saves you from rebooting just to properly remove the kmem_cache object. But, the code runs under a fairly expensive spinlock and the checks to see if it is currently enabled are not entirely consistent. Some use #ifdef and some #if. This changes everything to #if and disables the leak checking. Signed-off-by: Chris Mason --- Reading git-diff-tree failed