From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qk1-f196.google.com ([209.85.222.196]:35163 "EHLO mail-qk1-f196.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726013AbeJHQWp (ORCPT ); Mon, 8 Oct 2018 12:22:45 -0400 MIME-Version: 1.0 References: <1538975801-13735-1-git-send-email-firoz.khan@linaro.org> <1538975801-13735-6-git-send-email-firoz.khan@linaro.org> <22745bed-baf6-4f08-6801-3529021cf33e@gmx.de> In-Reply-To: From: Arnd Bergmann Date: Mon, 8 Oct 2018 11:11:44 +0200 Message-ID: Subject: Re: [PATCH v3 5/6] parisc: wire up rseq system call Content-Type: text/plain; charset="UTF-8" Sender: linux-arch-owner@vger.kernel.org List-ID: To: Geert Uytterhoeven Cc: Firoz Khan , Helge Deller , Parisc List , "James E.J. Bottomley" , Thomas Gleixner , gregkh , Philippe Ombredanne , Kate Stewart , y2038 Mailman List , Linux Kernel Mailing List , linux-arch , Deepa Dinamani , Marcin Juszkiewicz Message-ID: <20181008091144.DHbf91rZ9stxaIthW6bupMYoac1BX5C1gxCCEAgfl0Y@z> On Mon, Oct 8, 2018 at 10:58 AM Geert Uytterhoeven wrote: > On Mon, Oct 8, 2018 at 10:55 AM Firoz Khan wrote: > > On Mon, 8 Oct 2018 at 13:53, Geert Uytterhoeven wrote: > > > On Mon, Oct 8, 2018 at 8:49 AM Firoz Khan wrote: > > > If the warning is due to a not-yet-implemented feature, IMHO it should not be > > > silenced, as that would give the false impression that the feature is > > > present and > > > implemented. > > > > Helge had done some implementation for rseq but not tested. So we > > either add an IGNORE > > entry or leave the warning as it is. > > Personally, I prefer keeping the warning, for the above reason. Agreed, there is no need to patch this now if Helge is already working on the correct fix. Same for the other architectures. If there are architectures that have multiple missing syscalls, we could add a line with a comment for rseq but not actually define it, like 348 common pwritev2 sys_pwritev2 compat_sys_pwritev2 349 common statx sys_statx +350 common io_pgetevents sys_io_pgetevents compat_sys_io_pgetevents +# rseq requires an arch specific implementation +# 351 common rseq sys_rseq compat_sys_rseq */ +352 common open_tree sys_open_tree +353 common move_mount sys_move_mount +354 common fsopen sys_fsopen Arnd