Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933069AbdCJS7K (ORCPT ); Fri, 10 Mar 2017 13:59:10 -0500 Received: from Galois.linutronix.de ([146.0.238.70]:58941 "EHLO Galois.linutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932683AbdCJS7C (ORCPT ); Fri, 10 Mar 2017 13:59:02 -0500 Date: Fri, 10 Mar 2017 19:58:51 +0100 (CET) From: Thomas Gleixner To: Shivappa Vikas cc: Shivappa Vikas , linux-kernel@vger.kernel.org, x86@kernel.org, hpa@zytor.com, mingo@kernel.org, peterz@infradead.org, ravi.v.shankar@intel.com, tony.luck@intel.com, fenghua.yu@intel.com, andi.kleen@intel.com Subject: Re: [PATCH 2/5] x86/intel_rdt: Improvements to parsing schemata In-Reply-To: Message-ID: References: <1487360328-6768-1-git-send-email-vikas.shivappa@linux.intel.com> <1487360328-6768-3-git-send-email-vikas.shivappa@linux.intel.com> User-Agent: Alpine 2.20 (DEB 67 2015-01-07) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1475 Lines: 50 On Fri, 10 Mar 2017, Shivappa Vikas wrote: > On Fri, 10 Mar 2017, Thomas Gleixner wrote: > > It's fine to display them in a defined order, but there is no point to > > enforce the ordering on write. > > > > The real question here is whether we really have to write every line on > > every update. IMO it's sufficient to write a single resource line and not > > require to update all resources every time. > > Ok in that case we can drop this. because my thought was that user wants to > see the contents he wrote when he overwrites the whole file like below , IOW > its wierd for user to do > > # echo "L3:0=0xff;1=0xf0" > /sys/fs/resctrl/schemata > then > > # cat /sys/fs/resctrl/schemata > L3:0=0xff;1=0xf0 > L2:0=0xff;1=0xf0 > MB:.... > > But he did not write the L2,MB when he did an overwrite of the whole file. Well, we have several options to tackle this: 1) Have schemata files for each resource schemata_l2, _l3 _mb 2) Request a full overwrite every time (all entries required) That still does not require ordering 3) Allow full overwrite and 'append' mode echo "...." > schemata Overwrites the whole file. It does not require all entries to be supplied. Non supplied entries are reset to default echo "...." >> schemata "Appends" the supplied entries by overwriting the existing ones. My favourite would be #1, but I have no strong opinions other than not caring about resource write ordering for #2 and #3. Thanks, tglx