From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-3.1 required=5.0 tests=DKIM_INVALID,DKIM_SIGNED, MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED,RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 30051 invoked from network); 8 Jun 2021 17:22:51 -0000 Received: from mother.openwall.net (195.42.179.200) by inbox.vuxu.org with ESMTPUTF8; 8 Jun 2021 17:22:51 -0000 Received: (qmail 14244 invoked by uid 550); 8 Jun 2021 17:22:49 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Reply-To: musl@lists.openwall.com Received: (qmail 20324 invoked from network); 8 Jun 2021 17:07:07 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1623172015; bh=0oq6QLIflkGHbOxU5rx4bKYJt3ntT7idXhuJlwJoNMI=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=vsPcslPrkz/qLjC+oXoJYPqk+5aRMwrlTSumo6CbwSrV+/p/zHCQT7qnWhv4E+85H p0Yr6SqqS3w5JPCXeQiRCCfCFXBudKwgpG7fLKq5GKDnZd6jkrPMN3mhz0SbpJVMuY KNdbskQlRH113UjomCUIyU74mn02bzCR1SY7dvks= Date: Tue, 8 Jun 2021 19:06:53 +0200 From: Greg Kroah-Hartman To: Arnd Bergmann Cc: stable@vger.kernel.org, Michael Weiser , Martin Vajnar , musl@lists.openwall.com, Will Deacon , Arnd Bergmann Message-ID: References: <20210602114651.423605-1-arnd@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210602114651.423605-1-arnd@kernel.org> Subject: [musl] Re: [PATCH] [stable v4.4] arm64: Remove unimplemented syscall log message On Wed, Jun 02, 2021 at 01:46:51PM +0200, Arnd Bergmann wrote: > From: Michael Weiser > > commit 1962682d2b2fbe6cfa995a85c53c069fadda473e upstream. > > Stop printing a (ratelimited) kernel message for each instance of an > unimplemented syscall being called. Userland making an unimplemented > syscall is not necessarily misbehaviour and to be expected with a > current userland running on an older kernel. Also, the current message > looks scary to users but does not actually indicate a real problem nor > help them narrow down the cause. Just rely on sys_ni_syscall() to return > -ENOSYS. > > Cc: > Cc: Martin Vajnar > Cc: musl@lists.openwall.com > Acked-by: Will Deacon > Signed-off-by: Michael Weiser > Signed-off-by: Will Deacon > Signed-off-by: Greg Kroah-Hartman > Signed-off-by: Arnd Bergmann > --- > This was backported to v4.14 and later, but is missing in v4.4 and > before, apparently because of a trivial merge conflict. This is > a manual backport I did after I saw a report about the issue > by Martin Vajnar on the musl mailing list. > --- > arch/arm64/kernel/traps.c | 8 -------- > 1 file changed, 8 deletions(-) Now queued up, thanks. greg k-h