From nobody Sun Apr 19 12:43:19 2026 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id D3620C04A68 for ; Wed, 27 Jul 2022 09:14:43 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231441AbiG0JOl (ORCPT ); Wed, 27 Jul 2022 05:14:41 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:56342 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232048AbiG0JOO (ORCPT ); Wed, 27 Jul 2022 05:14:14 -0400 Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 89D81627A for ; Wed, 27 Jul 2022 02:13:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1658913216; x=1690449216; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=m1SaoX9uSfbY4s1EjmnVRFaXJa0od/V0m4Hy6L3DAng=; b=BKqB3Z7zoykG+VFg65r0QbvqVcZtl9RCqaSZI6CApwPvMydRZ3xdSUsS EBlBWezx2Dymc8PVSCzntNFE6E5cTpQS7EgCa8mf8AOdwi45UsQEPu0Mn w7Q3GKFcQwOWvypT+6aW0QM29v2fOxDV5zInmiauJj2LVMKhInpX2b160 v8SymIP6Apx/uuZNr/edq8WMMynUMTSciMBrv+cApnkIveKuAEty9ZnWh cSihvJjObXYojndSM/B0G2bhfP5Vd699noGjgVuOCjr5cDXrI1rciYjZE quiXBmFNvM0RWQUhoxWQ/e3fBkU10xMUkQRaog9QYwvp3msEY8TPfSK0X Q==; X-IronPort-AV: E=McAfee;i="6400,9594,10420"; a="288196872" X-IronPort-AV: E=Sophos;i="5.93,195,1654585200"; d="scan'208";a="288196872" Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 27 Jul 2022 02:13:36 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.93,195,1654585200"; d="scan'208";a="659113574" Received: from q.bj.intel.com ([10.238.154.102]) by fmsmga008.fm.intel.com with ESMTP; 27 Jul 2022 02:13:34 -0700 From: shaoqin.huang@intel.com To: rppt@kernel.org Cc: Shaoqin Huang , linux-mm@kvack.org, linux-kernel@vger.kernel.org Subject: [PATCH] memblock test: Modify the obsolete description in README Date: Wed, 27 Jul 2022 18:16:15 -0600 Message-Id: <20220728001615.19099-1-shaoqin.huang@intel.com> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" From: Shaoqin Huang The VERBOSE option in Makefile has been moved, but there still have the description left in README. For now, we use `-v` options when running memblock test to print information, so also add some description about it. Signed-off-by: Shaoqin Huang --- tools/testing/memblock/README | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/tools/testing/memblock/README b/tools/testing/memblock/README index 058146b528a5..f39cc0aa6b76 100644 --- a/tools/testing/memblock/README +++ b/tools/testing/memblock/README @@ -33,20 +33,21 @@ To run the tests, build the main target and run it: =20 $ make && ./main =20 -A successful run produces no output. It is also possible to override diffe= rent -configuration parameters. For example, to include verbose output, specify = the -VERBOSE flag when building the main target: +A successful run produces no output. It it also possible to override diffe= rent +configuration parameters. For example, to simulate enabled NUMA, use: =20 -$ make VERBOSE=3D1 +$ make NUMA=3D1 =20 -This will print information about which functions are being tested and the -number of test cases that passed. +For the full list of options, see `make help`. =20 -To simulate enabled NUMA, use: +It is also possible to pass options at run time. For example: =20 -$ make NUMA=3D1 +$ ./main -v =20 -For the full list of options, see `make help`. +This will print information about which functions are being tested and the +number of test cases that passed. + +For the full list of options, see `./main --help`. =20 Project structure =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --=20 2.30.2