From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933472AbbHLMhI (ORCPT ); Wed, 12 Aug 2015 08:37:08 -0400 Received: from terminus.zytor.com ([198.137.202.10]:42673 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754607AbbHLMhG (ORCPT ); Wed, 12 Aug 2015 08:37:06 -0400 Date: Wed, 12 Aug 2015 05:36:30 -0700 From: tip-bot for Will Deacon Message-ID: Cc: hpa@zytor.com, will.deacon@arm.com, linux-kernel@vger.kernel.org, mingo@kernel.org, torvalds@linux-foundation.org, tglx@linutronix.de, peterz@infradead.org Reply-To: mingo@kernel.org, torvalds@linux-foundation.org, tglx@linutronix.de, peterz@infradead.org, hpa@zytor.com, will.deacon@arm.com, linux-kernel@vger.kernel.org In-Reply-To: <1438880084-18856-8-git-send-email-will.deacon@arm.com> References: <1438880084-18856-8-git-send-email-will.deacon@arm.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:locking/core] locking, include/llist: Use linux/ atomic.h instead of asm/cmpxchg.h Git-Commit-ID: cd074aea9261784e44f292e1132830ec221802c6 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: cd074aea9261784e44f292e1132830ec221802c6 Gitweb: http://git.kernel.org/tip/cd074aea9261784e44f292e1132830ec221802c6 Author: Will Deacon AuthorDate: Thu, 6 Aug 2015 17:54:43 +0100 Committer: Ingo Molnar CommitDate: Wed, 12 Aug 2015 11:59:08 +0200 locking, include/llist: Use linux/atomic.h instead of asm/cmpxchg.h Including an asm/ header directly is best avoided, so use linux/atomic.h instead of asm/cmpxchg.h in linux/llist.h. Signed-off-by: Will Deacon Signed-off-by: Peter Zijlstra (Intel) Cc: Linus Torvalds Cc: Peter Zijlstra Cc: Thomas Gleixner Cc: Waiman.Long@hp.com Cc: paulmck@linux.vnet.ibm.com Link: http://lkml.kernel.org/r/1438880084-18856-8-git-send-email-will.deacon@arm.com Signed-off-by: Ingo Molnar --- include/linux/llist.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/llist.h b/include/linux/llist.h index fbf10a0..fd4ca0b 100644 --- a/include/linux/llist.h +++ b/include/linux/llist.h @@ -55,8 +55,8 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#include #include -#include struct llist_head { struct llist_node *first;