From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-oo1-xc33.google.com (mail-oo1-xc33.google.com [IPv6:2607:f8b0:4864:20::c33]) by sourceware.org (Postfix) with ESMTPS id 8D4263858408 for ; Wed, 16 Feb 2022 13:01:55 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 8D4263858408 Received: by mail-oo1-xc33.google.com with SMTP id i10-20020a4aab0a000000b002fccf890d5fso2351868oon.5 for ; Wed, 16 Feb 2022 05:01:55 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:message-id:date:mime-version:user-agent:subject :content-language:to:references:from:in-reply-to :content-transfer-encoding; bh=YSHzoRz5xbh5wPqeCxy6w2a77vPuBbF5ygUVLdW3OLg=; b=KTl6dMQEh8rOPdd7bJv7fsArnw6uvtGQo7/0MdOGSV1aT8wKgd527NMqJR91r+emYy ciGAOKAm5cfV0GF+WGmj6ZcO3ZtIxZL9BTMNixxf9WwAABAEHoKZtc3jLRLVVVz7onhX nwKFKLp6kG/U2Aen9xIkzAj+cPA6SIFzpqt48jr6nMpGDzbclFhGsu5CmfuLyMrzalGL g/aUOVXWUs0Rk1KY1lA9E2zvOPBeOMBCs7i+KoaT+Aer7ZWwqcoasIOTbEKTnXuSZhov 1BBbat35QVCOU35xrWzf4tHMjw+EniKjuobmFF7nnjp1YFanQ3HKRkB9CBSEY7DG3Fm2 Hb3g== X-Gm-Message-State: AOAM531Lxzg1b2lio6svUAktcoOWurPtW9LnxoAeEmt/QkWevLQw/+gZ pCagDBjebbOKSZi7g2XeoQFQ7DT/Ppvbfw== X-Google-Smtp-Source: ABdhPJwLqMbK4Z1kOrt8BcBZGJ5tY3BObhJxq8whbcPG1Ptip2rx9+dvwL3qCqdhSV8EVFFjTwtYIg== X-Received: by 2002:a05:6870:d785:b0:d2:823a:94df with SMTP id bd5-20020a056870d78500b000d2823a94dfmr375366oab.93.1645016514212; Wed, 16 Feb 2022 05:01:54 -0800 (PST) Received: from ?IPV6:2804:431:c7cb:6747:571b:1895:3cd0:2884? ([2804:431:c7cb:6747:571b:1895:3cd0:2884]) by smtp.gmail.com with ESMTPSA id s3sm16258206ois.19.2022.02.16.05.01.53 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Wed, 16 Feb 2022 05:01:53 -0800 (PST) Message-ID: Date: Wed, 16 Feb 2022 10:01:51 -0300 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.6.1 Subject: Re: Update kernel version to 5.16 in tst-mman-consts.py Content-Language: en-US To: Joseph Myers , libc-alpha@sourceware.org References: From: Adhemerval Zanella In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-12.8 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GIT_PATCH_0, NICE_REPLY_A, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) 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: , X-List-Received-Date: Wed, 16 Feb 2022 13:01:58 -0000 On 08/02/2022 18:23, Joseph Myers wrote: > This patch updates the kernel version in the test tst-mman-consts.py > to 5.16. (There are no new MAP_* constants covered by this test in > 5.16 that need any other header changes.) > > Tested with build-many-glibcs.py. > LGTM, thanks. Reviewed-by: Adhemerval Zanella > diff --git a/sysdeps/unix/sysv/linux/tst-mman-consts.py b/sysdeps/unix/sysv/linux/tst-mman-consts.py > index fc0a8ff4a7..af90dcdeac 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, 15) > + linux_version_glibc = (5, 16) > sys.exit(glibcextract.compare_macro_consts( > '#define _GNU_SOURCE 1\n' > '#include \n', >