From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751444AbdBXJSi (ORCPT ); Fri, 24 Feb 2017 04:18:38 -0500 Received: from terminus.zytor.com ([65.50.211.136]:50950 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751151AbdBXJSe (ORCPT ); Fri, 24 Feb 2017 04:18:34 -0500 Date: Fri, 24 Feb 2017 01:17:59 -0800 From: tip-bot for Elena Reshetova Message-ID: Cc: mingo@kernel.org, torvalds@linux-foundation.org, hpa@zytor.com, peterz@infradead.org, elena.reshetova@intel.com, tglx@linutronix.de, acme@redhat.com, linux-kernel@vger.kernel.org Reply-To: elena.reshetova@intel.com, linux-kernel@vger.kernel.org, tglx@linutronix.de, acme@redhat.com, torvalds@linux-foundation.org, mingo@kernel.org, hpa@zytor.com, peterz@infradead.org In-Reply-To: <1487855374-21993-1-git-send-email-elena.reshetova@intel.com> References: <1487855374-21993-1-git-send-email-elena.reshetova@intel.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:locking/urgent] locking/refcounts: Add missing kernel.h header to have UINT_MAX defined Git-Commit-ID: 318b1dedcd39012624f466d281627553e9fa2570 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: 318b1dedcd39012624f466d281627553e9fa2570 Gitweb: http://git.kernel.org/tip/318b1dedcd39012624f466d281627553e9fa2570 Author: Elena Reshetova AuthorDate: Thu, 23 Feb 2017 15:09:34 +0200 Committer: Ingo Molnar CommitDate: Fri, 24 Feb 2017 09:02:10 +0100 locking/refcounts: Add missing kernel.h header to have UINT_MAX defined Fix header dependency. Suggested-by: Arnaldo Carvalho de Melo Signed-off-by: Elena Reshetova Signed-off-by: Peter Zijlstra (Intel) Cc: Linus Torvalds Cc: Peter Zijlstra Cc: Thomas Gleixner Link: http://lkml.kernel.org/r/1487855374-21993-1-git-send-email-elena.reshetova@intel.com Signed-off-by: Ingo Molnar --- include/linux/refcount.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/linux/refcount.h b/include/linux/refcount.h index 0e8cfb2..0023fee 100644 --- a/include/linux/refcount.h +++ b/include/linux/refcount.h @@ -4,6 +4,7 @@ #include #include #include +#include typedef struct refcount_struct { atomic_t refs;