Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754084AbZICBlK (ORCPT ); Wed, 2 Sep 2009 21:41:10 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754032AbZICBlJ (ORCPT ); Wed, 2 Sep 2009 21:41:09 -0400 Received: from mail.atheros.com ([12.36.123.2]:53915 "EHLO mail.atheros.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754026AbZICBlC (ORCPT ); Wed, 2 Sep 2009 21:41:02 -0400 From: "Luis R. Rodriguez" To: CC: , , "Luis R. Rodriguez" Subject: [PATCH 3/5] kmemleak: move common painting code together Date: Wed, 2 Sep 2009 18:40:57 -0700 Message-ID: <1251942059-21448-4-git-send-email-lrodriguez@atheros.com> X-Mailer: git-send-email 1.6.3.3 In-Reply-To: <1251942059-21448-1-git-send-email-lrodriguez@atheros.com> References: <1251942059-21448-1-git-send-email-lrodriguez@atheros.com> MIME-Version: 1.0 Content-Type: text/plain Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3178 Lines: 110 When painting grey or black we do the same thing, bring this together into a helper and identify coloring grey or black explicitly with defines. This makes this a little easier to read. Signed-off-by: Luis R. Rodriguez --- mm/kmemleak.c | 32 +++++++++++++++++++------------- 1 files changed, 19 insertions(+), 13 deletions(-) diff --git a/mm/kmemleak.c b/mm/kmemleak.c index 4840212..7bb1d48 100644 --- a/mm/kmemleak.c +++ b/mm/kmemleak.c @@ -120,6 +120,9 @@ struct kmemleak_scan_area { size_t length; }; +#define KMEMLEAK_GREY 0 +#define KMEMLEAK_BLACK -1 + /* * Structure holding the metadata for each allocated memory block. * Modifications to such objects should be made while holding the @@ -266,17 +269,19 @@ static void kmemleak_disable(void); */ static bool color_white(const struct kmemleak_object *object) { - return object->count != -1 && object->count < object->min_count; + return object->count != KMEMLEAK_BLACK && + object->count < object->min_count; } static bool color_gray(const struct kmemleak_object *object) { - return object->min_count != -1 && object->count >= object->min_count; + return object->min_count != KMEMLEAK_BLACK && + object->count >= object->min_count; } static bool color_black(const struct kmemleak_object *object) { - return object->min_count == -1; + return object->min_count == KMEMLEAK_BLACK; } /* @@ -604,13 +609,21 @@ static void delete_object_part(unsigned long ptr, size_t size) put_object(object); } + +static void paint_it(struct kmemleak_object *object, int color) +{ + unsigned long flags; + spin_lock_irqsave(&object->lock, flags); + object->min_count = color; + spin_unlock_irqrestore(&object->lock, flags); +} + /* * Make a object permanently as gray-colored so that it can no longer be * reported as a leak. This is used in general to mark a false positive. */ static void make_gray_object(unsigned long ptr) { - unsigned long flags; struct kmemleak_object *object; object = find_and_get_object(ptr, 0); @@ -618,10 +631,7 @@ static void make_gray_object(unsigned long ptr) kmemleak_warn("Graying unknown object at 0x%08lx\n", ptr); return; } - - spin_lock_irqsave(&object->lock, flags); - object->min_count = 0; - spin_unlock_irqrestore(&object->lock, flags); + paint_it(object, KMEMLEAK_GREY); put_object(object); } @@ -631,7 +641,6 @@ static void make_gray_object(unsigned long ptr) */ static void make_black_object(unsigned long ptr) { - unsigned long flags; struct kmemleak_object *object; object = find_and_get_object(ptr, 0); @@ -639,10 +648,7 @@ static void make_black_object(unsigned long ptr) kmemleak_warn("Blacking unknown object at 0x%08lx\n", ptr); return; } - - spin_lock_irqsave(&object->lock, flags); - object->min_count = -1; - spin_unlock_irqrestore(&object->lock, flags); + paint_it(object, KMEMLEAK_BLACK); put_object(object); } -- 1.6.3.3 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/