From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS17314 8.43.84.0/22 X-Spam-Status: No, score=-3.8 required=3.0 tests=AWL,BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI, SPF_HELO_PASS,SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from sourceware.org (server2.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id C2DD51F9F4 for ; Fri, 19 Nov 2021 23:39:08 +0000 (UTC) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 07BE33857830 for ; Fri, 19 Nov 2021 23:39:08 +0000 (GMT) Received: from esa1.mentor.iphmx.com (esa1.mentor.iphmx.com [68.232.129.153]) by sourceware.org (Postfix) with ESMTPS id E71C33858406 for ; Fri, 19 Nov 2021 23:38:55 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org E71C33858406 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=codesourcery.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=mentor.com IronPort-SDR: jrQLqQOgf0LJrEyd0S/keopucqoCya50aONAgqgAYdpWmuf/rtAF0FtqqnGZyFWa5MuDGfga5K /Cku34o7OFbd8b8ZU69Yi+AOAwHUz0tGMP+r1iYmb++La9Qn7Ae2F0HY5TsJrBSpZ2c3ch47qm Y+tqjP2CAY3MZvBCeRDQ6aQDoSauNmJIPvJ4oFfRmzLCHIjQ1hJ0nJMJFUqdC9zmH5/KM91xvD BrUCa4vPPeA2hCPAr+f0CG4mnF9vTcCW0mIgc4wjUYwtYhToeKA4sU7PBlX0Bq8Td5wSUZyWzm jmIRvA0AIX9r/JJPdKEt8T7z X-IronPort-AV: E=Sophos;i="5.87,248,1631606400"; d="scan'208";a="71205634" Received: from orw-gwy-02-in.mentorg.com ([192.94.38.167]) by esa1.mentor.iphmx.com with ESMTP; 19 Nov 2021 15:38:55 -0800 IronPort-SDR: T1T5YGRAfimoejsYU647ZOKQ7ewc4sggcVup/1pY1jNNsWzLiLiyVEFXcP9ezyCnQjtkWH1xxn 7hMtQJESVSvSCLeHzkq/VQ+0EuexEWeASXjy9oPhOMoNc9cnNmCpduUAT1QgeWys9EROPD+i7O 7iD/WSypzsfrifGCGDoCprUpmCHYYayEMjd9OLx0wM9YJaf0NO/zj8jAjMDApKpqSPXOBWqipP gVcQsOzOkpU1QgyQz6cdlckDXUFV79wAhGDLxwPZe34ikM4NgZW5TI1Y2wdnbIfE4pbgLzu+Xt icg= Date: Fri, 19 Nov 2021 23:38:50 +0000 From: Joseph Myers X-X-Sender: jsm28@digraph.polyomino.org.uk To: Subject: Update kernel version to 5.15 in tst-mman-consts.py Message-ID: User-Agent: Alpine 2.22 (DEB 394 2020-01-19) MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" X-Originating-IP: [137.202.0.90] X-ClientProxiedBy: svr-ies-mbx-10.mgc.mentorg.com (139.181.222.10) To svr-ies-mbx-01.mgc.mentorg.com (139.181.222.1) X-BeenThere: libc-alpha@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: libc-alpha-bounces+e=80x24.org@sourceware.org Sender: "Libc-alpha" This patch updates the kernel version in the test tst-mman-consts.py to 5.15. (There are no new MAP_* constants covered by this test in 5.15 that need any other header changes.) Tested with build-many-glibcs.py. diff --git a/sysdeps/unix/sysv/linux/tst-mman-consts.py b/sysdeps/unix/sysv/linux/tst-mman-consts.py index 810433c238..eeccdfd04d 100644 --- a/sysdeps/unix/sysv/linux/tst-mman-consts.py +++ b/sysdeps/unix/sysv/linux/tst-mman-consts.py @@ -33,7 +33,7 @@ def main(): help='C compiler (including options) to use') args = parser.parse_args() linux_version_headers = glibcsyscalls.linux_kernel_version(args.cc) - linux_version_glibc = (5, 14) + linux_version_glibc = (5, 15) sys.exit(glibcextract.compare_macro_consts( '#define _GNU_SOURCE 1\n' '#include \n', -- Joseph S. Myers joseph@codesourcery.com