From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-9.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id A678EC76186 for ; Thu, 18 Jul 2019 03:06:07 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 82D3321852 for ; Thu, 18 Jul 2019 03:06:07 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1563419167; bh=Pom6zniGyxl8/HYZs4fQE7yGxjsc/qKFhJ0/Mcga28g=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=QyRuAvYXlEZ6CDYBGJGkC1snlh1sYe0xCsI5uw4egXcga4o49PHjmrqN+IMqJOiJN NsFo5vno3b/0Juz1Z6IrpB4WjTg4FLbGyeLR9Jh1zqTuVRgIFKOWyjIvjwlP1Y1DIz dQJkB3IBKBdMxtKQxgc1MTAffXx1zHqKpVt06EdE= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2390140AbfGRDGF (ORCPT ); Wed, 17 Jul 2019 23:06:05 -0400 Received: from mail.kernel.org ([198.145.29.99]:37252 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2389630AbfGRDGD (ORCPT ); Wed, 17 Jul 2019 23:06:03 -0400 Received: from localhost (115.42.148.210.bf.2iij.net [210.148.42.115]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id A6B2E2173B; Thu, 18 Jul 2019 03:06:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1563419163; bh=Pom6zniGyxl8/HYZs4fQE7yGxjsc/qKFhJ0/Mcga28g=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=FcYYfisVeyxBdGAeJwUevhvI3BWwQpiWSuYg2B2KNLDgNk3oXfVvWwKDTlBTncnT4 UCkZyedmzoUh+v5rARqY/8zDdhvAnNj10MgCjfUdcvjMjPuMiZarzOYRjNpl+wfQx3 lQf1l5eX9dHF4Eeum0q3lKcOhtrhpcUltMH5/cSQ= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Jiri Slaby , Thomas Gleixner , Sasha Levin Subject: [PATCH 5.1 54/54] x86/entry/32: Fix ENDPROC of common_spurious Date: Thu, 18 Jul 2019 12:01:49 +0900 Message-Id: <20190718030057.370736739@linuxfoundation.org> X-Mailer: git-send-email 2.22.0 In-Reply-To: <20190718030053.287374640@linuxfoundation.org> References: <20190718030053.287374640@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: stable-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org [ Upstream commit 1cbec37b3f9cff074a67bef4fc34b30a09958a0a ] common_spurious is currently ENDed erroneously. common_interrupt is used in its ENDPROC. So fix this mistake. Found by my asm macros rewrite patchset. Fixes: f8a8fe61fec8 ("x86/irq: Seperate unused system vectors from spurious entry again") Signed-off-by: Jiri Slaby Signed-off-by: Thomas Gleixner Link: https://lkml.kernel.org/r/20190709063402.19847-1-jslaby@suse.cz Signed-off-by: Sasha Levin --- arch/x86/entry/entry_32.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/entry/entry_32.S b/arch/x86/entry/entry_32.S index ce60893bc8c8..f4afacfd40bb 100644 --- a/arch/x86/entry/entry_32.S +++ b/arch/x86/entry/entry_32.S @@ -1126,7 +1126,7 @@ common_spurious: movl %esp, %eax call smp_spurious_interrupt jmp ret_from_intr -ENDPROC(common_interrupt) +ENDPROC(common_spurious) #endif /* -- 2.20.1