Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934332AbdCJWGF (ORCPT ); Fri, 10 Mar 2017 17:06:05 -0500 Received: from mga09.intel.com ([134.134.136.24]:31002 "EHLO mga09.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934266AbdCJWFw (ORCPT ); Fri, 10 Mar 2017 17:05:52 -0500 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.36,143,1486454400"; d="scan'208";a="74091494" Date: Fri, 10 Mar 2017 14:05:51 -0800 From: "Luck, Tony" To: Thomas Gleixner Cc: Shivappa Vikas , Shivappa Vikas , linux-kernel@vger.kernel.org, x86@kernel.org, hpa@zytor.com, mingo@kernel.org, peterz@infradead.org, ravi.v.shankar@intel.com, fenghua.yu@intel.com, andi.kleen@intel.com Subject: Re: [PATCH 2/5] x86/intel_rdt: Improvements to parsing schemata Message-ID: <20170310220550.GA22430@intel.com> References: <1487360328-6768-1-git-send-email-vikas.shivappa@linux.intel.com> <1487360328-6768-3-git-send-email-vikas.shivappa@linux.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1211 Lines: 42 On Fri, Mar 10, 2017 at 07:58:51PM +0100, Thomas Gleixner wrote: > 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. If you are going to head in the direction of partial update, then why not go for: 4) Drop the code that check that the user wrote all the fields as well as the check for all the lines. Just update the bits they list, and leave the rest unchanged. I.e. the user could say: # echo "L3:1=0x3f" > schemata if they just wanted to update resource L3, instance 1. I don't think there is much benefit to the overwrite vs. append semantics for the user. -Tony