From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS31976 209.132.180.0/23 X-Spam-Status: No, score=-3.0 required=3.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FORGED_GMAIL_RCVD, FREEMAIL_FORGED_FROMDOMAIN,FREEMAIL_FROM,HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED,RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL,SPF_HELO_PASS,SPF_PASS shortcircuit=no autolearn=no autolearn_force=no version=3.4.2 Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id 1565D1F463 for ; Wed, 8 Jan 2020 16:15:53 +0000 (UTC) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; q=dns; s= default; b=TJq976Ev8NnNxWnmwVEmYwFeiAFPi4by2AJjsgaBH3A5mm10ov+oU 8yuTzC6b3YWR1eYEi+aN9Gb8Hdrtj7oyzEAzMkc8Cad7A8V4Oovnt5zUpobNo0rR MBq80qxL/CCj7XsZB9titdi2tgYdIpigUwm2Fh76Pxr6IVSwz0WQ24= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; s=default; bh=LV+f8gYltZ0b8JhL+4AgpYJvOok=; b=d+C9zAbOCJZv0CryPsZ/pzD31DX5 S0csivoOfShTxijAAQBPpcxsQmngsKR0EYO6SzVOVmTnMPWdGfnOslYVbDNbf4jy NsR/5/1ZTTYg6QPSItuoc8eyDJZJFP6FDHwTN1rZgo2eW2TUMd618QY1WMy93AZS FxkBe6fQWZmgw2s= Received: (qmail 10877 invoked by alias); 8 Jan 2020 16:15:42 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Received: (qmail 10825 invoked by uid 89); 8 Jan 2020 16:15:42 -0000 Authentication-Results: sourceware.org; auth=none X-HELO: mail-pf1-f170.google.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:subject:date:message-id:in-reply-to:references:mime-version :content-transfer-encoding; bh=7KNXvgmGFkev7x8O7zbVRo9YdktnhiG1XG741WJCZfY=; b=WLYVNdxB0o/bJyq4dk287BMW18ovSyavVaZ2yE17j9WOnPkFVpp54CAYcvqaTfvQUB 4Cf6NRFQmW6EShAFv6NjGIvZcWACSDHoh3HHgNwgC8B520nU6K/3rRuKGCyyqT1B1sQM qakuDFt2AM8arQxNgap6Vrpea4htKPKhDOQNQNjwcM1imsqignbJEPrzhA+cnmOufzXE sCGgeXqW2C46uWb9NaaEHoJv0IsuDgmW8M2Ppvc333HmzssrZVwEbIZZHxDKwozzvoHG LhLLHiVAEr4Lk0g3H/uOaVPnmQnmhxTuo0/T4WcDdshh4fo1/vUmCU/LKHH5HJJ36VpN CM9Q== From: "H.J. Lu" To: libc-alpha@sourceware.org Subject: V2 [PATCH 2/5] i386/sub_n.S: Add a missing _CET_ENDBR to indirect jump target Date: Wed, 8 Jan 2020 08:15:32 -0800 Message-Id: <20200108161535.6141-3-hjl.tools@gmail.com> In-Reply-To: <20200108161535.6141-1-hjl.tools@gmail.com> References: <20200108161535.6141-1-hjl.tools@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Add a missing _CET_ENDBR to indirect jump targe in sysdeps/i386/sub_n.S. --- sysdeps/i386/sub_n.S | 1 + 1 file changed, 1 insertion(+) diff --git a/sysdeps/i386/sub_n.S b/sysdeps/i386/sub_n.S index caac89177b..16ebd9169b 100644 --- a/sysdeps/i386/sub_n.S +++ b/sysdeps/i386/sub_n.S @@ -91,6 +91,7 @@ L(oop): movl (%esi),%eax movl 8(%esi),%eax sbbl 8(%edx),%eax movl %eax,8(%edi) + _CET_ENDBR movl 12(%esi),%eax sbbl 12(%edx),%eax movl %eax,12(%edi) -- 2.24.1