From patchwork Tue Sep 9 11:07:32 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Daniel Borkmann X-Patchwork-Id: 387271 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 6C86F14017B for ; Tue, 9 Sep 2014 21:07:42 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755955AbaIILHi (ORCPT ); Tue, 9 Sep 2014 07:07:38 -0400 Received: from mx1.redhat.com ([209.132.183.28]:60787 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752466AbaIILHh (ORCPT ); Tue, 9 Sep 2014 07:07:37 -0400 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s89B7Y2D019486 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL); Tue, 9 Sep 2014 07:07:34 -0400 Received: from localhost (vpn1-7-99.ams2.redhat.com [10.36.7.99]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id s89B7WeD002941; Tue, 9 Sep 2014 07:07:33 -0400 From: Daniel Borkmann To: davem@davemloft.net Cc: hannes@stressinduktion.org, netdev@vger.kernel.org Subject: [PATCH net-next] ipv6: mcast: remove dead debugging defines Date: Tue, 9 Sep 2014 13:07:32 +0200 Message-Id: <1410260852-25000-1-git-send-email-dborkman@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.24 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org It's not used anywhere, so just remove these. Signed-off-by: Daniel Borkmann --- net/ipv6/mcast.c | 9 --------- 1 file changed, 9 deletions(-) diff --git a/net/ipv6/mcast.c b/net/ipv6/mcast.c index 6833dd0..484a942 100644 --- a/net/ipv6/mcast.c +++ b/net/ipv6/mcast.c @@ -64,15 +64,6 @@ #include -/* Set to 3 to get tracing... */ -#define MCAST_DEBUG 2 - -#if MCAST_DEBUG >= 3 -#define MDBG(x) printk x -#else -#define MDBG(x) -#endif - /* Ensure that we have struct in6_addr aligned on 32bit word. */ static void *__mld2_query_bugs[] __attribute__((__unused__)) = { BUILD_BUG_ON_NULL(offsetof(struct mld2_query, mld2q_srcs) % 4),