From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-10.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id B069FCA9EAE for ; Wed, 23 Oct 2019 04:57:45 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 845CB21906 for ; Wed, 23 Oct 2019 04:57:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1571806665; bh=5vrDSn4gx5uWB17ZXLelMba+6LXKDNOLUgRmxFZ6nMk=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=uQks4BVdnoC7ynEfWxV4S2OOfUhdIWuhElu+o0iMHphW1VFujWqn0IrgYz11pcXMj Pl6VOTm+6wvQUbA+vf9VuCVNWUZAUqW19YRZKVx6nx6kHyrP3xbel6mDTM/DabKwHl 3T5F4YdlRdaPBPCZoii5af7CFMznORacAHmueqvs= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1732393AbfJWE5p (ORCPT ); Wed, 23 Oct 2019 00:57:45 -0400 Received: from mail.kernel.org ([198.145.29.99]:60470 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1731908AbfJWE5p (ORCPT ); Wed, 23 Oct 2019 00:57:45 -0400 Received: from localhost.localdomain (NE2965lan1.rev.em-net.ne.jp [210.141.244.193]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 369C42173B; Wed, 23 Oct 2019 04:57:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1571806664; bh=5vrDSn4gx5uWB17ZXLelMba+6LXKDNOLUgRmxFZ6nMk=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=FU1ECglOJpTThrD5PNFGjpyZrB0C98aBTo/Dsi15H5TWAPq6+Ao6U88L9Fh9yrJWQ TEiM1O1loMQrSxulUP/Fgz8GgNIqAl9gUL2QXED7ZrOoNMYCtyRXAdhdzM9dCPAqO8 irgjZhXx8fd8mHZVYEWcfoujqcx8+53o8HYxcUlo= From: Masami Hiramatsu To: Shuah Khan Cc: linux-kselftest@vger.kernel.org, linux-kernel@vger.kernel.org, jaswinder.singh@linaro.org, Alexey Dobriyan Subject: [BUGFIX PATCH v3 1/5] selftests: proc: Make va_max 1MB Date: Wed, 23 Oct 2019 13:57:40 +0900 Message-Id: <157180666053.17298.15273701201071089765.stgit@devnote2> X-Mailer: git-send-email 2.20.1 In-Reply-To: <157180665007.17298.907392422924029261.stgit@devnote2> References: <157180665007.17298.907392422924029261.stgit@devnote2> User-Agent: StGit/0.17.1-dirty MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit Sender: linux-kselftest-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kselftest@vger.kernel.org Currently proc-self-map-files-002.c sets va_max (max test address of user virtual address) to 4GB, but it is too big for 32bit arch and 1UL << 32 is overflow on 32bit long. Also since this value should be enough bigger than vm.mmap_min_addr (64KB or 32KB by default), 1MB should be enough. Make va_max 1MB unconditionally. Signed-off-by: Masami Hiramatsu Cc: Alexey Dobriyan --- Changes in v3: - Make the va_max 1MB unconditionally, according to Alexey's comment. Changes in v2: - Make the va_max 1GB according to Alexey's comment. --- .../selftests/proc/proc-self-map-files-002.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tools/testing/selftests/proc/proc-self-map-files-002.c b/tools/testing/selftests/proc/proc-self-map-files-002.c index 47b7473dedef..e6aa00a183bc 100644 --- a/tools/testing/selftests/proc/proc-self-map-files-002.c +++ b/tools/testing/selftests/proc/proc-self-map-files-002.c @@ -47,7 +47,11 @@ static void fail(const char *fmt, unsigned long a, unsigned long b) int main(void) { const int PAGE_SIZE = sysconf(_SC_PAGESIZE); - const unsigned long va_max = 1UL << 32; + /* + * va_max must be enough bigger than vm.mmap_min_addr, which is + * 64KB/32KB by default. (depends on CONFIG_LSM_MMAP_MIN_ADDR) + */ + const unsigned long va_max = 1UL << 20; unsigned long va; void *p; int fd;