From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752642AbdLLSSd (ORCPT ); Tue, 12 Dec 2017 13:18:33 -0500 Received: from fldsmtpe03.verizon.com ([140.108.26.142]:54015 "EHLO fldsmtpe03.verizon.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752126AbdLLSSW (ORCPT ); Tue, 12 Dec 2017 13:18:22 -0500 From: alexander.levin@verizon.com X-Host: surveyor.tdc.vzwcorp.com To: "mingo@kernel.org" CC: "a.p.zijlstra@chello.nl" , "linux-kernel@vger.kernel.org" Subject: [PATCH 1/2] tools/lib/lockdep: Add missing declaration of 'pr_cont()' Thread-Topic: [PATCH 1/2] tools/lib/lockdep: Add missing declaration of 'pr_cont()' Thread-Index: AQHTc3Vl3oTjCKOL/k22VlTLYWqIZA== Date: Tue, 12 Dec 2017 18:16:57 +0000 Message-ID: <20171212181644.11913-2-alexander.levin@verizon.com> References: <20171212181644.11913-1-alexander.levin@verizon.com> In-Reply-To: <20171212181644.11913-1-alexander.levin@verizon.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-ms-exchange-messagesentrepresentingtype: 1 x-ms-exchange-transport-fromentityheader: Hosted x-originating-ip: [10.144.60.250] Content-Type: text/plain; charset="iso-8859-1" MIME-Version: 1.0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by nfs id vBCIIb88014018 From: Mengting Zhang Commit 681fbec881de ("lockdep: Use consistent printing primitives") has moved lockdep away from using printk() for printing. Unfourtenatly, the commit added usage of pr_cont() which wasn't wrapped in the userspace headers, causing the following warning: ../../../kernel/locking/lockdep.c:3544:2: warning: implicit declaration of function 'pr_cont' [-Wimplicit-function-declaration] Adding an empty declaration of 'pr_cont' fixes the problem. Reviewed-by: Alexander Sverdlin Signed-off-by: Mengting Zhang Signed-off-by: Sasha Levin --- tools/include/linux/lockdep.h | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/include/linux/lockdep.h b/tools/include/linux/lockdep.h index 940c1b075659..6b0c36a58fcb 100644 --- a/tools/include/linux/lockdep.h +++ b/tools/include/linux/lockdep.h @@ -48,6 +48,7 @@ static inline int debug_locks_off(void) #define printk(...) dprintf(STDOUT_FILENO, __VA_ARGS__) #define pr_err(format, ...) fprintf (stderr, format, ## __VA_ARGS__) #define pr_warn pr_err +#define pr_cont pr_err #define list_del_rcu list_del -- 2.11.0