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=-12.8 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED,USER_AGENT_GIT autolearn=unavailable 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 EAADCC47423 for ; Fri, 2 Oct 2020 06:48:14 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 9E70D206DD for ; Fri, 2 Oct 2020 06:48:14 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=nvidia.com header.i=@nvidia.com header.b="Z3AyhWXZ" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726042AbgJBGsN (ORCPT ); Fri, 2 Oct 2020 02:48:13 -0400 Received: from hqnvemgate24.nvidia.com ([216.228.121.143]:17874 "EHLO hqnvemgate24.nvidia.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725948AbgJBGsN (ORCPT ); Fri, 2 Oct 2020 02:48:13 -0400 Received: from hqmail.nvidia.com (Not Verified[216.228.121.13]) by hqnvemgate24.nvidia.com (using TLS: TLSv1.2, AES256-SHA) id ; Thu, 01 Oct 2020 23:46:29 -0700 Received: from HQMAIL111.nvidia.com (172.20.187.18) by HQMAIL105.nvidia.com (172.20.187.12) with Microsoft SMTP Server (TLS) id 15.0.1473.3; Fri, 2 Oct 2020 06:48:12 +0000 Received: from sandstorm.nvidia.com (10.124.1.5) by mail.nvidia.com (172.20.187.18) with Microsoft SMTP Server id 15.0.1473.3 via Frontend Transport; Fri, 2 Oct 2020 06:48:12 +0000 From: John Hubbard To: Stephen Rothwell , Andrew Morton CC: Linux Next , LKML , , John Hubbard Subject: [PATCH] selftests/vm: fix: make check_config.sh executable Date: Thu, 1 Oct 2020 23:48:11 -0700 Message-ID: <20201002064811.435769-1-jhubbard@nvidia.com> X-Mailer: git-send-email 2.28.0 MIME-Version: 1.0 X-NVConfidentiality: public Content-Transfer-Encoding: quoted-printable Content-Type: text/plain DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nvidia.com; s=n1; t=1601621189; bh=YxVI9lNPw6FH2PZxFouloQcRzoKxiMmyEXc7wrpbuJQ=; h=From:To:CC:Subject:Date:Message-ID:X-Mailer:MIME-Version: X-NVConfidentiality:Content-Transfer-Encoding:Content-Type; b=Z3AyhWXZ2oH7XePndDjhqsSYxssrS2nU5h9mErdEXbV0/5qDdTQYacp7AnXgBJneC 9ybJDAzUNXETcfQhre5r0LcsnLtWta+bnJXc6bd9mevvvIy23NYp5ZNmxnwGrD/oyg A8X1gmqDcoZNGi2X+EM37hJWPn1NZTS+/4AZyI670cIcG5qolh0x2FSWgslx7ng84d gvQ0LXcADLiBbbsQGfX9D3HvDWV3Wl2MqR5sDv08tUuaQOM4r/DQSDbaSIG9va6fw2 fONlkzLmRhDV9wU1y3UhPNL9jaL6LP3NVgeUfhwJvXITuoE3q5r+NaTXSo+EaQTlsm altdnvWrfwA2w== Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org commit 30fb9454ab23 ("selftests/vm: hmm-tests: remove the libhugetlbfs dependency") created the new check_config.sh file without the execute bits set. This is a problem because the Makefile runs it with "./", so now "make" is failing in that directory. The posted patch [1] does seem to have it as an executable file, so I'm not sure how this happened. But in any case, make check_config.sh executable again, so that "make" in selftests/vm works once again. [1] https://lore.kernel.org/linux-doc/20200929212747.251804-9-jhubbard@nvid= ia.com/ Fixes: commit 30fb9454ab23 ("selftests/vm: hmm-tests: remove the libhugetlb= fs dependency") Signed-off-by: John Hubbard --- Hi, This applies to today's 20201001) linux-next. I forgot if this needs to be a separate patch or if it can be fixed up in Andrew's tree. thanks, John Hubbard NVIDIA tools/testing/selftests/vm/check_config.sh | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 =3D> 100755 tools/testing/selftests/vm/check_config.sh diff --git a/tools/testing/selftests/vm/check_config.sh b/tools/testing/sel= ftests/vm/check_config.sh old mode 100644 new mode 100755 --=20 2.28.0