Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933572AbbENRNB (ORCPT ); Thu, 14 May 2015 13:13:01 -0400 Received: from userp1040.oracle.com ([156.151.31.81]:29309 "EHLO userp1040.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1030229AbbENRKl (ORCPT ); Thu, 14 May 2015 13:10:41 -0400 From: Sasha Levin To: linux-mm@kvack.org Cc: akpm@linux-foundation.org, linux-kernel@vger.kernel.org, kirill@shutemov.name, Sasha Levin Subject: [PATCH 06/11] mm: debug: clean unused code Date: Thu, 14 May 2015 13:10:09 -0400 Message-Id: <1431623414-1905-7-git-send-email-sasha.levin@oracle.com> X-Mailer: git-send-email 2.1.0 In-Reply-To: <1431623414-1905-1-git-send-email-sasha.levin@oracle.com> References: <1431623414-1905-1-git-send-email-sasha.levin@oracle.com> X-Source-IP: userv0021.oracle.com [156.151.31.71] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1331 Lines: 56 Remove dump_flags which is no longer used. Signed-off-by: Sasha Levin --- mm/debug.c | 30 ------------------------------ 1 file changed, 30 deletions(-) diff --git a/mm/debug.c b/mm/debug.c index 44efbb5..3abea22 100644 --- a/mm/debug.c +++ b/mm/debug.c @@ -50,36 +50,6 @@ static const struct trace_print_flags pageflag_names[] = { #endif }; -static void dump_flags(unsigned long flags, - const struct trace_print_flags *names, int count) -{ - const char *delim = ""; - unsigned long mask; - int i; - - pr_emerg("flags: %#lx(", flags); - - /* remove zone id */ - flags &= (1UL << NR_PAGEFLAGS) - 1; - - for (i = 0; i < count && flags; i++) { - - mask = names[i].mask; - if ((flags & mask) != mask) - continue; - - flags &= ~mask; - pr_cont("%s%s", delim, names[i].name); - delim = "|"; - } - - /* check for left over flags */ - if (flags) - pr_cont("%s%#lx", delim, flags); - - pr_cont(")\n"); -} - static char *format_flags(unsigned long flags, const struct trace_print_flags *names, int count, char *buf, char *end) -- 1.7.10.4 -- 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/