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=-5.3 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 autolearn=unavailable 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 57EE4C4332D for ; Thu, 19 Mar 2020 18:12:09 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 32E102070A for ; Thu, 19 Mar 2020 18:12:09 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727108AbgCSSMI (ORCPT ); Thu, 19 Mar 2020 14:12:08 -0400 Received: from foss.arm.com ([217.140.110.172]:39936 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725787AbgCSSMH (ORCPT ); Thu, 19 Mar 2020 14:12:07 -0400 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 35A3830E; Thu, 19 Mar 2020 11:12:07 -0700 (PDT) Received: from mbp (unknown [172.31.20.19]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 363AE3F305; Thu, 19 Mar 2020 11:12:06 -0700 (PDT) Date: Thu, 19 Mar 2020 18:12:03 +0000 From: Catalin Marinas To: Vincenzo Frascino Cc: "linux-arm-kernel@lists.infradead.org" , "clang-built-linux@googlegroups.com" , "linux-kernel@vger.kernel.org" , Will Deacon , "stable@vger.kernel.org" Subject: Re: [PATCH] arm64: compat: Fix syscall number of compat_clock_getres Message-ID: <20200319181203.GB29214@mbp> References: <20200319141138.19343-1-vincenzo.frascino@arm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200319141138.19343-1-vincenzo.frascino@arm.com> User-Agent: Mutt/1.10.1 (2018-07-13) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Mar 19, 2020 at 02:11:38PM +0000, Vincenzo Frascino wrote: > The syscall number of compat_clock_getres was erroneously set to 247 > instead of 264. This causes the vDSO fallback of clock_getres to land > on the wrong syscall. > > Address the issue fixing the syscall number of compat_clock_getres. > > Fixes: 53c489e1dfeb6 ("arm64: compat: Add missing syscall numbers") > Cc: Catalin Marinas > Cc: Will Deacon Will left ARM about 8 months ago IIRC ;). > Cc: stable@vger.kernel.org > Signed-off-by: Vincenzo Frascino Acked-by: Catalin Marinas I think Will could take this as a fix. Thanks, Catalin