From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1167848AbcKAHR6 (ORCPT ); Tue, 1 Nov 2016 03:17:58 -0400 Received: from terminus.zytor.com ([198.137.202.10]:45900 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1034097AbcKAHRy (ORCPT ); Tue, 1 Nov 2016 03:17:54 -0400 Date: Tue, 1 Nov 2016 00:16:49 -0700 From: tip-bot for Andy Lutomirski Message-ID: Cc: hpa@zytor.com, jpoimboe@redhat.com, luto@kernel.org, mingo@kernel.org, dvlasenk@redhat.com, oleg@redhat.com, tglx@linutronix.de, kvm@vger.kernel.org, riel@redhat.com, linux-kernel@vger.kernel.org, rusty@rustcorp.com.au, dave.hansen@linux.intel.com, fenghua.yu@intel.com, torvalds@linux-foundation.org, bp@alien8.de, peterz@infradead.org, pbonzini@redhat.com, quentin.casasnovas@oracle.com, brgerst@gmail.com Reply-To: tglx@linutronix.de, kvm@vger.kernel.org, riel@redhat.com, linux-kernel@vger.kernel.org, dvlasenk@redhat.com, mingo@kernel.org, hpa@zytor.com, jpoimboe@redhat.com, luto@kernel.org, oleg@redhat.com, bp@alien8.de, peterz@infradead.org, brgerst@gmail.com, quentin.casasnovas@oracle.com, pbonzini@redhat.com, torvalds@linux-foundation.org, fenghua.yu@intel.com, rusty@rustcorp.com.au, dave.hansen@linux.intel.com In-Reply-To: <04247401710b230849e58bf2112ce4fd0b9840e1.1477951965.git.luto@kernel.org> References: <04247401710b230849e58bf2112ce4fd0b9840e1.1477951965.git.luto@kernel.org> To: linux-tip-commits@vger.kernel.org Subject: [tip:x86/fpu] x86/fpu: Remove stts() Git-Commit-ID: 0d50612c041f213fb6b98e3ff06e306a859c36f2 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: 0d50612c041f213fb6b98e3ff06e306a859c36f2 Gitweb: http://git.kernel.org/tip/0d50612c041f213fb6b98e3ff06e306a859c36f2 Author: Andy Lutomirski AuthorDate: Mon, 31 Oct 2016 15:18:48 -0700 Committer: Ingo Molnar CommitDate: Tue, 1 Nov 2016 07:47:55 +0100 x86/fpu: Remove stts() It has no callers any more, and it was always a bit confusing, as there is no STTS instruction. Signed-off-by: Andy Lutomirski Cc: Borislav Petkov Cc: Brian Gerst Cc: Dave Hansen Cc: Denys Vlasenko Cc: Fenghua Yu Cc: H. Peter Anvin Cc: Josh Poimboeuf Cc: Linus Torvalds Cc: Oleg Nesterov Cc: Paolo Bonzini Cc: Peter Zijlstra Cc: Quentin Casasnovas Cc: Rik van Riel Cc: Rusty Russell Cc: Thomas Gleixner Cc: kvm list Link: http://lkml.kernel.org/r/04247401710b230849e58bf2112ce4fd0b9840e1.1477951965.git.luto@kernel.org Signed-off-by: Ingo Molnar --- arch/x86/include/asm/special_insns.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/arch/x86/include/asm/special_insns.h b/arch/x86/include/asm/special_insns.h index 19a2224..29b417b 100644 --- a/arch/x86/include/asm/special_insns.h +++ b/arch/x86/include/asm/special_insns.h @@ -216,8 +216,6 @@ static inline void clts(void) #endif/* CONFIG_PARAVIRT */ -#define stts() write_cr0(read_cr0() | X86_CR0_TS) - static inline void clflush(volatile void *__p) { asm volatile("clflush %0" : "+m" (*(volatile char __force *)__p));