From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751639AbdBAKvr (ORCPT ); Wed, 1 Feb 2017 05:51:47 -0500 Received: from terminus.zytor.com ([65.50.211.136]:58064 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751336AbdBAKvp (ORCPT ); Wed, 1 Feb 2017 05:51:45 -0500 Date: Wed, 1 Feb 2017 01:50:47 -0800 From: tip-bot for Frederic Weisbecker Message-ID: Cc: fenghua.yu@intel.com, sgruszka@redhat.com, fweisbec@gmail.com, schwidefsky@de.ibm.com, tglx@linutronix.de, hpa@zytor.com, mingo@kernel.org, benh@kernel.crashing.org, mpe@ellerman.id.au, wanpeng.li@hotmail.com, paulus@samba.org, heiko.carstens@de.ibm.com, tony.luck@intel.com, peterz@infradead.org, riel@redhat.com, linux-kernel@vger.kernel.org Reply-To: hpa@zytor.com, tglx@linutronix.de, schwidefsky@de.ibm.com, benh@kernel.crashing.org, mingo@kernel.org, sgruszka@redhat.com, fenghua.yu@intel.com, fweisbec@gmail.com, heiko.carstens@de.ibm.com, riel@redhat.com, linux-kernel@vger.kernel.org, peterz@infradead.org, tony.luck@intel.com, mpe@ellerman.id.au, paulus@samba.org, wanpeng.li@hotmail.com In-Reply-To: <1485832191-26889-3-git-send-email-fweisbec@gmail.com> References: <1485832191-26889-3-git-send-email-fweisbec@gmail.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:sched/core] sched/cputime: Remove the unused INIT_CPUTIME macro Git-Commit-ID: ba03ce822db234f8acb559de4a317a5c1f95c029 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: ba03ce822db234f8acb559de4a317a5c1f95c029 Gitweb: http://git.kernel.org/tip/ba03ce822db234f8acb559de4a317a5c1f95c029 Author: Frederic Weisbecker AuthorDate: Tue, 31 Jan 2017 04:09:18 +0100 Committer: Ingo Molnar CommitDate: Wed, 1 Feb 2017 09:13:46 +0100 sched/cputime: Remove the unused INIT_CPUTIME macro It's a leftover from removed code. Signed-off-by: Frederic Weisbecker Cc: Benjamin Herrenschmidt Cc: Paul Mackerras Cc: Michael Ellerman Cc: Heiko Carstens Cc: Martin Schwidefsky Cc: Tony Luck Cc: Fenghua Yu Cc: Peter Zijlstra Cc: Rik van Riel Cc: Stanislaw Gruszka Cc: Wanpeng Li Link: http://lkml.kernel.org/r/1485832191-26889-3-git-send-email-fweisbec@gmail.com Signed-off-by: Ingo Molnar --- include/linux/sched.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/include/linux/sched.h b/include/linux/sched.h index 69e6852..5f60aed 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h @@ -620,13 +620,6 @@ struct task_cputime { #define prof_exp stime #define sched_exp sum_exec_runtime -#define INIT_CPUTIME \ - (struct task_cputime) { \ - .utime = 0, \ - .stime = 0, \ - .sum_exec_runtime = 0, \ - } - /* * This is the atomic variant of task_cputime, which can be used for * storing and updating task_cputime statistics without locking.