From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by sourceware.org (Postfix) with ESMTPS id B2F333858D38 for ; Wed, 22 May 2024 19:40:35 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org B2F333858D38 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=redhat.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=redhat.com ARC-Filter: OpenARC Filter v1.0.0 sourceware.org B2F333858D38 Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=170.10.129.124 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1716406837; cv=none; b=oeOR3hvhkg3JH9jNV+umrs+Z7SbzfqijJm8zULxV9EmR5Tn2HmoiUb3/qs0mxdr3yfJaf8E8AgcdRKeeKsNvcvfrBU5kQyIa3VHhttzgIX7s2x6Qy8MTfW72TzjejYJjJFOWppDxe3fizXP6tEV71NAeKd8a8DzRUqrOArfp5Lg= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1716406837; c=relaxed/simple; bh=vmqM94DVJAurVxRDY/59rl2rnYGSrsemiaRSLZA4sKw=; h=DKIM-Signature:From:To:Subject:Date:Message-ID:MIME-Version; b=BdNGk1uCJOgNcknN6SB/3bxU6ivBSX5/s+0LnS7euwBTjrPJxBHAgqsSM49Xqj+6sauIK4JKlHvKrEVcH1RWtlQlZJfNgchMSgX4xWbEBLEkYXYIuq5I+YLtB4zkGNTysyvoD++m4FlqNva+XtkY6YV3y65Cj9KfHD5bU/Zw1TE= ARC-Authentication-Results: i=1; server2.sourceware.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1716406835; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to; bh=9yPwlBbZYsTyPohjdy4ecIt3qfAU2n1tREahcgvyWnI=; b=Q3RpPo5ge8jjUmrSBhZ298QMIHLJQ4UhA/NKhKJVF7gkUC0Yli8nB7gCsBZuH5imHLrm2B /Oj9P0ylcd0M3Nm17WE/4gGDKMlpMtyshYu2PDQKDdKu4ylSqOdBfOwl8cS9EeRo3qyo0O Rvt4BSQ5HxpBetb7EKXIZy+IvNGkXwI= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-323-AaBHTgJRMdeNRDXKMROZ0Q-1; Wed, 22 May 2024 15:40:29 -0400 X-MC-Unique: AaBHTgJRMdeNRDXKMROZ0Q-1 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.rdu2.redhat.com [10.11.54.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id DA7DB81227E; Wed, 22 May 2024 19:40:28 +0000 (UTC) Received: from greed.delorie.com (unknown [10.22.8.114]) by smtp.corp.redhat.com (Postfix) with ESMTPS id C38AD3C27; Wed, 22 May 2024 19:40:28 +0000 (UTC) Received: from greed.delorie.com.redhat.com (localhost [127.0.0.1]) by greed.delorie.com (8.16.1/8.16.1) with ESMTP id 44MJeRjp3323645; Wed, 22 May 2024 15:40:27 -0400 From: DJ Delorie To: "Carlos O'Donell" Cc: alx@kernel.org, libc-alpha@sourceware.org Subject: Re: [patch v3] manual: add syscall list In-Reply-To: (carlos@redhat.com) Date: Wed, 22 May 2024 15:40:27 -0400 Message-ID: MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.4.1 on 10.11.54.1 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain X-Spam-Status: No, score=-4.4 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_DNSWL_NONE,RCVD_IN_MSPIKE_H4,RCVD_IN_MSPIKE_WL,SPF_HELO_NONE,SPF_NONE,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: "Carlos O'Donell" writes: >> +# Generate a list of wrapped syscalls > > s/wrapped syscalls/syscall wrappers (non-cancellable)... /g Fixed. > s/Cancelled/... and cancellable syscall wrappers/g Fixed. >> +$(objpfx)syscalls.texi: $(objpfx)stamp-syscalls ; >> +$(objpfx)stamp-syscalls: $(common-objpfx)config.make >> + cat `find ../sysdeps -name syscalls.list -print` \ > > OK. This scans *all targets* and generates *all syscalls* regardless of if the > configuration is used or unused. This makes the list architecture agnostic. We > will need to say something about that later. > >> +documentation is considered authoritative. > > This needs extra information to say that this list covers all targets provided by glibc. I changed the prelude to each list to be such: Here is the list of all potential non-cancellable system calls, across all configurations of @theglibc(): Here's the corresponding list of cancellable system calls: I think that covers both these requests. > When posting v4 may you please post a PDF of the final results from `make pdf?` I'll attach it in a separate email in case the mail filters are having a bad day ;-)