Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754127AbZICBlN (ORCPT ); Wed, 2 Sep 2009 21:41:13 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752445AbZICBlM (ORCPT ); Wed, 2 Sep 2009 21:41:12 -0400 Received: from mail.atheros.com ([12.36.123.2]:53917 "EHLO mail.atheros.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754046AbZICBlF (ORCPT ); Wed, 2 Sep 2009 21:41:05 -0400 From: "Luis R. Rodriguez" To: CC: , , "Luis R. Rodriguez" Subject: [PATCH 5/5] kmemleak: fix sparse warning for static declarations Date: Wed, 2 Sep 2009 18:40:59 -0700 Message-ID: <1251942059-21448-6-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: 1298 Lines: 40 This fixes these sparse warnings: mm/kmemleak.c:1179:6: warning: symbol 'start_scan_thread' was not declared. Should it be static? mm/kmemleak.c:1194:6: warning: symbol 'stop_scan_thread' was not declared. Should it be static? Signed-off-by: Luis R. Rodriguez --- mm/kmemleak.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mm/kmemleak.c b/mm/kmemleak.c index 09ddf9c..38496ab 100644 --- a/mm/kmemleak.c +++ b/mm/kmemleak.c @@ -1176,7 +1176,7 @@ static int kmemleak_scan_thread(void *arg) * Start the automatic memory scanning thread. This function must be called * with the scan_mutex held. */ -void start_scan_thread(void) +static void start_scan_thread(void) { if (scan_thread) return; @@ -1191,7 +1191,7 @@ void start_scan_thread(void) * Stop the automatic memory scanning thread. This function must be called * with the scan_mutex held. */ -void stop_scan_thread(void) +static void stop_scan_thread(void) { if (scan_thread) { kthread_stop(scan_thread); -- 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/