From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755877AbdDFQ5l (ORCPT ); Thu, 6 Apr 2017 12:57:41 -0400 Received: from mga14.intel.com ([192.55.52.115]:18250 "EHLO mga14.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752971AbdDFQ5c (ORCPT ); Thu, 6 Apr 2017 12:57:32 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.37,160,1488873600"; d="scan'208";a="842813056" From: Xiaochen Shen To: tglx@linutronix.de, linux-kernel@vger.kernel.org, x86@kernel.org Cc: Xiaochen Shen , Fenghua Yu Subject: [PATCH] x86/intel_rdt: Fix two typos in Documentation Date: Fri, 7 Apr 2017 01:09:41 +0800 Message-Id: <1491498581-21735-1-git-send-email-xiaochen.shen@intel.com> X-Mailer: git-send-email 1.8.3.1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Both typos are in example 3. Because cache id 0 is the only cache id, the ";" is redundant in "# echo "L3:0=ffc00;" > p0/schemata". And "C0" in "# echo C0 > p0/cpus" is wrong because it specifies core 6-7 instead of wanted core 4-7. Correct the typos to avoid confusion. Signed-off-by: Xiaochen Shen Signed-off-by: Fenghua Yu --- Documentation/x86/intel_rdt_ui.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/x86/intel_rdt_ui.txt b/Documentation/x86/intel_rdt_ui.txt index 51cf6fa..cd752c1 100644 --- a/Documentation/x86/intel_rdt_ui.txt +++ b/Documentation/x86/intel_rdt_ui.txt @@ -206,12 +206,12 @@ Next we make a resource group for our real time cores and give it access to the "top" 50% of the cache on socket 0. # mkdir p0 -# echo "L3:0=ffc00;" > p0/schemata +# echo "L3:0=ffc00" > p0/schemata Finally we move core 4-7 over to the new group and make sure that the kernel and the tasks running there get 50% of the cache. -# echo C0 > p0/cpus +# echo F0 > p0/cpus 4) Locking between applications -- 1.8.3.1