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=-4.2 required=5.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED, RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL,T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 27090 invoked from network); 29 Mar 2022 08:27:20 -0000 Received: from mother.openwall.net (195.42.179.200) by inbox.vuxu.org with ESMTPUTF8; 29 Mar 2022 08:27:20 -0000 Received: (qmail 32383 invoked by uid 550); 29 Mar 2022 08:27:14 -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 32346 invoked from network); 29 Mar 2022 08:27:14 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1648542421; bh=52ZhVTmdm9VQuuYI439vpqBJfBqj6GtKTvl+Zqj4SCk=; h=References:In-Reply-To:From:Date:Subject:To:From; b=TnjXzSo8Yv+/GlAoG86VXsxVcU/Nto/kAjzrAlYgAS/DB7NC7q4cnSwpsvXkk7quH Rvhqec9x/ljTLnN2ZjlSZbjjnyU9lsvrxhJU41G/of+SROeQDApgHBOAwtNSI3H6mU vYNlEsPw5c9WhFhKVv0Exe4ZRdy0p970EbgKN0CNRiHCYLPtC4OJkFJBrttY0+Zfli +uvZ/l3eYQCj2C4OJ7Kw1R767j8j9xKlcZCL1UFZ96mWdTtr9EoCKKsCX5vvhCz/N5 u2viVLvBwA5RCq9ommZpqK+YgPnztXXoqhk2BKI9A3y8qhaOi4ItMwTn8uQppMMxT1 NTzz3sXcqnWJw== X-Gm-Message-State: AOAM533PWNSLfpdDx3k/Oy+bw/pTcHgLVsTJHrbFZ1vAhq5sbDLyrjON SHzehGXjR4bSD7Iw/fpUjkpXQkZ3ENj8+iLG5HA= X-Google-Smtp-Source: ABdhPJxtIZdRrU9sSndNxh0QghK4wAsqelgwi99mQ12rXYVuojVIz61tatwJC5oOrKzt5BRuIN0Oa9s6ecUbaxxYi8M= X-Received: by 2002:a05:600c:4b83:b0:38c:49b5:5bfc with SMTP id e3-20020a05600c4b8300b0038c49b55bfcmr5297933wmp.33.1648542419575; Tue, 29 Mar 2022 01:26:59 -0700 (PDT) MIME-Version: 1.0 References: <2a7bdda8-c163-7e32-5a67-f5437157af8d@loongson.cn> In-Reply-To: <2a7bdda8-c163-7e32-5a67-f5437157af8d@loongson.cn> From: Arnd Bergmann Date: Tue, 29 Mar 2022 10:26:43 +0200 X-Gmail-Original-Message-ID: Message-ID: To: musl@lists.openwall.com Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Subject: Re: [musl] Re: add loongarch64 port On Tue, Mar 29, 2022 at 10:12 AM =E7=8E=8B=E6=B4=AA=E4=BA=AE wrote: > > Hi, > > we have published 0001-add-loongarch64-port-v2.patch in > > https://github.com/loongson/musl/tree/loongarch-v1.0. > > The patch v2 fixed the issues pointed out in v1. > > have any other issues to modify? I see you still refer to the system calls that I asked to be removed from the kernel: clone() and the old stat() family (pre-statx). Please use only the system calls that are actually supported in mainline kernels, otherwise it does not work. For the signal list, the stdint.h header, and the 'struct stat' and 'struct kstat' definitions, I would expect that there is already an architecture-independe= nt definition in musl that you can use, as these should be the same for all new architectures. Arnd