Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754713Ab3HPOfP (ORCPT ); Fri, 16 Aug 2013 10:35:15 -0400 Received: from relay1.sgi.com ([192.48.179.29]:58493 "EHLO relay.sgi.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752796Ab3HPOed (ORCPT ); Fri, 16 Aug 2013 10:34:33 -0400 From: Alex Thorlton To: linux-kernel@vger.kernel.org Cc: Alex Thorlton , Ingo Molnar , Peter Zijlstra , Andrew Morton , Mel Gorman , "Kirill A . Shutemov" , Rik van Riel , Johannes Weiner , "Eric W . Biederman" , Sedat Dilek , Frederic Weisbecker , Dave Jones , Michael Kerrisk , "Paul E . McKenney" , David Howells , Thomas Gleixner , Al Viro , Oleg Nesterov , Srikar Dronamraju , Kees Cook , Robin Holt Subject: [PATCH 8/8] fix up references to kernel_fpu_begin/end Date: Fri, 16 Aug 2013 09:34:04 -0500 Message-Id: <1376663644-153546-9-git-send-email-athorlton@sgi.com> X-Mailer: git-send-email 1.7.12.4 In-Reply-To: <1376663644-153546-1-git-send-email-athorlton@sgi.com> References: <87wqo050fc.fsf@tassilo.jf.intel.com> <1376663644-153546-1-git-send-email-athorlton@sgi.com> In-Reply-To: <87wqo050fc.fsf@tassilo.jf.intel.com> References: <87wqo050fc.fsf@tassilo.jf.intel.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1396 Lines: 52 --- arch/x86/lib/clear_page_nocache_64.S | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/arch/x86/lib/clear_page_nocache_64.S b/arch/x86/lib/clear_page_nocache_64.S index a6d938c..d03408e 100644 --- a/arch/x86/lib/clear_page_nocache_64.S +++ b/arch/x86/lib/clear_page_nocache_64.S @@ -23,7 +23,7 @@ ENTRY(clear_page_nocache) CFI_STARTPROC push %rdi - call kernel_fpu_begin + call __kernel_fpu_begin pop %rdi sub $16,%rsp CFI_ADJUST_CFA_OFFSET 16 @@ -43,7 +43,7 @@ ENTRY(clear_page_nocache) movdqu (%rsp),%xmm0 addq $16,%rsp CFI_ADJUST_CFA_OFFSET -16 - jmp kernel_fpu_end + jmp __kernel_fpu_end CFI_ENDPROC ENDPROC(clear_page_nocache) @@ -65,7 +65,7 @@ ENDPROC(clear_page_nocache) ENTRY(clear_page_nocache_avx) CFI_STARTPROC push %rdi - call kernel_fpu_begin + call __kernel_fpu_begin pop %rdi sub $32,%rsp CFI_ADJUST_CFA_OFFSET 32 @@ -85,7 +85,7 @@ ENTRY(clear_page_nocache_avx) vmovdqu (%rsp),%ymm0 addq $32,%rsp CFI_ADJUST_CFA_OFFSET -32 - jmp kernel_fpu_end + jmp __kernel_fpu_end CFI_ENDPROC ENDPROC(clear_page_nocache_avx) -- 1.7.12.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/