Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932348AbcCJVOy (ORCPT ); Thu, 10 Mar 2016 16:14:54 -0500 Received: from shards.monkeyblade.net ([149.20.54.216]:51490 "EHLO shards.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932235AbcCJVOv (ORCPT ); Thu, 10 Mar 2016 16:14:51 -0500 Date: Thu, 10 Mar 2016 16:14:49 -0500 (EST) Message-Id: <20160310.161449.350898270672488267.davem@davemloft.net> To: nwang@suse.com Cc: whs_alex@163.com, netdev@vger.kernel.org, linux-kernel@vger.kernel.org, nwang@suse.de Subject: Re: [PATCH] include/net/inet_connection_sock.h: Use pr_devel() instead of pr_debug() From: David Miller In-Reply-To: <1457416348-32463-1-git-send-email-nwang@suse.com> References: <1457416348-32463-1-git-send-email-nwang@suse.com> X-Mailer: Mew version 6.7 on Emacs 24.5 / Mule 6.0 (HANACHIRUSATO) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.5.12 (shards.monkeyblade.net [149.20.54.216]); Thu, 10 Mar 2016 13:14:51 -0800 (PST) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 393 Lines: 12 From: Nick Wang Date: Tue, 8 Mar 2016 13:52:28 +0800 > File "inet_connection_sock.h" is a common share header that not can > be use for one module, so use pr_devel instead of pr_debug is OK. Not really, we only want these printks to do anything only when debug printk's are enabled. We don't want the overhead otherwise. You'll need to find another fix for this, sorry.