From patchwork Wed Mar 10 00:24:24 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Joseph Myers X-Patchwork-Id: 1450251 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=sourceware.org (client-ip=2620:52:3:1:0:246e:9693:128c; helo=sourceware.org; envelope-from=libc-alpha-bounces@sourceware.org; receiver=) Received: from sourceware.org (server2.sourceware.org [IPv6:2620:52:3:1:0:246e:9693:128c]) (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 ozlabs.org (Postfix) with ESMTPS id 4DwCWS0Dsrz9sVt for ; Wed, 10 Mar 2021 11:24:35 +1100 (AEDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 7AF6A385780C; Wed, 10 Mar 2021 00:24:32 +0000 (GMT) X-Original-To: libc-alpha@sourceware.org Delivered-To: libc-alpha@sourceware.org Received: from esa3.mentor.iphmx.com (esa3.mentor.iphmx.com [68.232.137.180]) by sourceware.org (Postfix) with ESMTPS id 97E503858038 for ; Wed, 10 Mar 2021 00:24:30 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 97E503858038 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=codesourcery.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=joseph_myers@mentor.com IronPort-SDR: CyI28nQB7FYW4QmTy3hXIkOy+RM+kc+EYM1/e3auj0OSuUi5bacKx/Ty8LxO5F16yQkOJW2vtg rCMwALzr12v68mdDCJS/CkzoAiH439wTJkbjnW7m3+Sf8nd4pKrh4YB0Ibm5qvcQT8Jk3LRger 5blvNzxKp4LDpBe9nIV7Xbe7/RJOA+RhDpShgzQAJQs5Uj2W6YbTrizPgDv4fhUO8WImoh80HC n+oLUogIF1V4c3f0HrFojNHjT4LGsmZa/3SsA6bwZtVEQLfF4yOZqCFql5El7u0mhK7Wv4CdNG shk= X-IronPort-AV: E=Sophos;i="5.81,236,1610438400"; d="scan'208";a="58920570" Received: from orw-gwy-01-in.mentorg.com ([192.94.38.165]) by esa3.mentor.iphmx.com with ESMTP; 09 Mar 2021 16:24:29 -0800 IronPort-SDR: XGS59dCW6G0EWKE1mxiGAjWIiOG4cy67o9w1lFjLCfoGfID7e2RUGHVhxvB456zZ6Q7XgAxFM7 l+8ViFqRUsQjyL5TTC3iIE8g6uf/JzxwrMvZNvaps16E/sX3UMePv3wrW33P+6ftYG4YIhFcnm 08ReaXswTJ+XBv7/9V69q8SiXOLyxdBKuMN7RYGL2V6iuys/Xj79dWn3kJWta/seYmSy0vINFS ZjY8sOuvKAJbQQcdVqD6qJvCBAnJ49LisPwIqy1uyRYqHT/zKthDnwLBorJ33BY9NtbNboZTTL fvw= Date: Wed, 10 Mar 2021 00:24:24 +0000 From: Joseph Myers X-X-Sender: jsm28@digraph.polyomino.org.uk To: Subject: Update kernel version to 5.11 in tst-mman-consts.py Message-ID: User-Agent: Alpine 2.22 (DEB 394 2020-01-19) MIME-Version: 1.0 X-Originating-IP: [137.202.0.90] X-ClientProxiedBy: SVR-IES-MBX-03.mgc.mentorg.com (139.181.222.3) To svr-ies-mbx-01.mgc.mentorg.com (139.181.222.1) X-Spam-Status: No, score=-3128.8 required=5.0 tests=BAYES_00, GIT_PATCH_0, HEADER_FROM_DIFFERENT_DOMAINS, KAM_DMARC_STATUS, SPF_HELO_PASS, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org 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@sourceware.org Sender: "Libc-alpha" This patch updates the kernel version in the test tst-mman-consts.py to 5.11. (There are no new MAP_* constants covered by this test in 5.11 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 a58472ed0e..43c6f98126 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, 10) + linux_version_glibc = (5, 11) sys.exit(glibcextract.compare_macro_consts( '#define _GNU_SOURCE 1\n' '#include \n',