From patchwork Thu Sep 14 14:55:23 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yann Sionneau X-Patchwork-Id: 1834277 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@legolas.ozlabs.org Authentication-Results: legolas.ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; secure) header.d=sionneau.net header.i=@sionneau.net header.a=rsa-sha256 header.s=selectormx4 header.b=lQgg6V9n; dkim-atps=neutral Authentication-Results: legolas.ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=uclibc-ng.org (client-ip=89.238.66.15; helo=helium.openadk.org; envelope-from=devel-bounces@uclibc-ng.org; receiver=patchwork.ozlabs.org) Received: from helium.openadk.org (helium.openadk.org [89.238.66.15]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (secp384r1)) (No client certificate requested) by legolas.ozlabs.org (Postfix) with ESMTPS id 4RmgRJ2SKVz1yhZ for ; Fri, 15 Sep 2023 00:57:48 +1000 (AEST) Received: from helium.openadk.org (localhost [IPv6:::1]) by helium.openadk.org (Postfix) with ESMTP id 58685353A91E; Thu, 14 Sep 2023 16:57:35 +0200 (CEST) Authentication-Results: helium.openadk.org; dkim=fail reason="signature verification failed" (1024-bit key; secure) header.d=sionneau.net header.i=@sionneau.net header.a=rsa-sha256 header.s=selectormx4 header.b=lQgg6V9n; dkim-atps=neutral Received: from mx4.sionneau.net (mx4.sionneau.net [51.15.250.1]) by helium.openadk.org (Postfix) with ESMTPS id E3A28353A915 for ; Thu, 14 Sep 2023 16:55:29 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sionneau.net; s=selectormx4; t=1694703328; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=bxu/C0N7j2yDs30wnr3eLVHln+IvDKPv7AWv3s+m7lw=; b=lQgg6V9nFCT/IArD4v0qhlrxUEYZkAYxPgefgNr3JPV+dk6yO/JeEA1bjj/6+xmdFE5UXv X6UumOBVuChZGsZsJviKjZnBHSHEfAB+XVPjrEDb4Ey68gSXOITLQr0Vt9ZwMhJmcISqJu dKwA8HMDvcOAtDg/OLtil0Y34SCyT1w= Received: from junon.lin.mbt.kalray.eu ( [217.181.231.53]) by mx4.sionneau.net (OpenSMTPD) with ESMTPSA id bebc9b3e (TLSv1.3:TLS_AES_256_GCM_SHA384:256:NO); Thu, 14 Sep 2023 14:55:28 +0000 (UTC) From: yann@sionneau.net To: devel@uclibc-ng.org Date: Thu, 14 Sep 2023 16:55:23 +0200 Message-ID: <20230914145524.19784-4-yann@sionneau.net> X-Mailer: git-send-email 2.42.0 In-Reply-To: <20230914145524.19784-1-yann@sionneau.net> References: <20230914145524.19784-1-yann@sionneau.net> MIME-Version: 1.0 Message-ID-Hash: SAZ3TFB3TEUQDDCBQD6ATCRHPL2MO4FT X-Message-ID-Hash: SAZ3TFB3TEUQDDCBQD6ATCRHPL2MO4FT X-MailFrom: yann@sionneau.net X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header CC: Julian Vetter , Jonathan Borne , Yann Sionneau X-Mailman-Version: 3.3.3 Precedence: list Subject: [uclibc-ng-devel] [PATCH 4/5] kvx: define that kvx port supports statx syscall List-Id: uClibc-ng Development Archived-At: List-Archive: List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: From: Yann Sionneau Define that kvx Linux port supports statx syscall. Signed-off-by: Yann Sionneau --- libc/sysdeps/linux/kvx/bits/uClibc_arch_features.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libc/sysdeps/linux/kvx/bits/uClibc_arch_features.h b/libc/sysdeps/linux/kvx/bits/uClibc_arch_features.h index 7aae2d7c3..ecccdc7bb 100644 --- a/libc/sysdeps/linux/kvx/bits/uClibc_arch_features.h +++ b/libc/sysdeps/linux/kvx/bits/uClibc_arch_features.h @@ -11,6 +11,9 @@ /* can your target use syscall6() for mmap ? */ #define __UCLIBC_MMAP_HAS_6_ARGS__ +/* does your target use statx */ +#define __UCLIBC_HAVE_STATX__ + /* does your target align 64bit values in register pairs ? (32bit arches only) */ #undef __UCLIBC_SYSCALL_ALIGN_64BIT__