From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932570AbcISUEb (ORCPT ); Mon, 19 Sep 2016 16:04:31 -0400 Received: from terminus.zytor.com ([198.137.202.10]:37282 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932349AbcISUEa (ORCPT ); Mon, 19 Sep 2016 16:04:30 -0400 Date: Mon, 19 Sep 2016 13:03:54 -0700 From: tip-bot for Sebastian Andrzej Siewior Message-ID: Cc: hpa@zytor.com, mingo@kernel.org, bigeasy@linutronix.de, tglx@linutronix.de, linux-kernel@vger.kernel.org, axboe@kernel.dk, peterz@infradead.org Reply-To: tglx@linutronix.de, mingo@kernel.org, hpa@zytor.com, bigeasy@linutronix.de, linux-kernel@vger.kernel.org, axboe@kernel.dk, peterz@infradead.org In-Reply-To: <20160906170457.32393-20-bigeasy@linutronix.de> References: <20160906170457.32393-20-bigeasy@linutronix.de> To: linux-tip-commits@vger.kernel.org Subject: [tip:smp/hotplug] blk/mq: Reserve hotplug ID states for block multiqueue Git-Commit-ID: 9049c3581449a096fb8a05bf0021d15531fb25d0 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: 9049c3581449a096fb8a05bf0021d15531fb25d0 Gitweb: http://git.kernel.org/tip/9049c3581449a096fb8a05bf0021d15531fb25d0 Author: Sebastian Andrzej Siewior AuthorDate: Tue, 6 Sep 2016 19:04:55 +0200 Committer: Thomas Gleixner CommitDate: Mon, 19 Sep 2016 21:57:39 +0200 blk/mq: Reserve hotplug ID states for block multiqueue This patch only reserves two CPU hotplug ids for block/mq so the block tree can apply the conversion patches. Signed-off-by: Sebastian Andrzej Siewior Cc: Peter Zijlstra Cc: Jens Axboe Cc: rt@linutronix.de Link: http://lkml.kernel.org/r/20160906170457.32393-20-bigeasy@linutronix.de Signed-off-by: Thomas Gleixner --- include/linux/cpuhotplug.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/linux/cpuhotplug.h b/include/linux/cpuhotplug.h index 242bf53..67ef8ec 100644 --- a/include/linux/cpuhotplug.h +++ b/include/linux/cpuhotplug.h @@ -14,6 +14,7 @@ enum cpuhp_state { CPUHP_PERF_SUPERH, CPUHP_X86_HPET_DEAD, CPUHP_X86_APB_DEAD, + CPUHP_BLK_MQ_DEAD, CPUHP_WORKQUEUE_PREP, CPUHP_POWER_NUMA_PREPARE, CPUHP_HRTIMERS_PREPARE, @@ -22,6 +23,7 @@ enum cpuhp_state { CPUHP_SMPCFD_PREPARE, CPUHP_RCUTREE_PREP, CPUHP_NOTIFY_PREPARE, + CPUHP_BLK_MQ_PREPARE, CPUHP_TIMERS_DEAD, CPUHP_BRINGUP_CPU, CPUHP_AP_IDLE_DEAD,