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.3 required=5.0 tests=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 7763 invoked from network); 5 Jun 2021 08:48:09 -0000 Received: from mother.openwall.net (195.42.179.200) by inbox.vuxu.org with ESMTPUTF8; 5 Jun 2021 08:48:09 -0000 Received: (qmail 1301 invoked by uid 550); 5 Jun 2021 08:48:07 -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 1269 invoked from network); 5 Jun 2021 08:48:06 -0000 Date: Sat, 5 Jun 2021 10:47:54 +0200 From: Szabolcs Nagy To: Khem Raj Cc: musl@lists.openwall.com Message-ID: <20210605084754.GB790988@port70.net> Mail-Followup-To: Khem Raj , musl@lists.openwall.com References: <20210519073403.2213823-1-raj.khem@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Subject: [musl] Re: [PATCH] riscv: Rename __NR_fstatat __NR_newfstatat * Khem Raj [2021-06-04 22:05:21 -0700]: > ping > > On Wed, May 19, 2021 at 12:34 AM Khem Raj wrote: > > on riscv64 this syscall is called __NR_newfstatat > > this helps the name match kernel UAPI for external > > programs > > > > Signed-off-by: Khem Raj > > Cc: zabolcs Nagy looks correct to me too. > > --- > > arch/riscv64/bits/syscall.h.in | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/arch/riscv64/bits/syscall.h.in b/arch/riscv64/bits/syscall.h.in > > index f9c421d0..39c0d650 100644 > > --- a/arch/riscv64/bits/syscall.h.in > > +++ b/arch/riscv64/bits/syscall.h.in > > @@ -76,7 +76,7 @@ > > #define __NR_splice 76 > > #define __NR_tee 77 > > #define __NR_readlinkat 78 > > -#define __NR_fstatat 79 > > +#define __NR_newfstatat 79 > > #define __NR_fstat 80 > > #define __NR_sync 81 > > #define __NR_fsync 82 > > -- > > 2.31.1 > >