From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bruce Richardson Subject: Re: [PATCH 4/4] eal/x86: implement arch-specific TSC freq query Date: Fri, 13 Oct 2017 16:17:49 +0100 Message-ID: <20171013151749.GA54072@bricha3-MOBL3.ger.corp.intel.com> References: <20171013000247.4158-5-thomas@monjalon.net> <20171012204724.120d7b25@xeon-e3> <1683017.mmorKbpdtt@xps> <20171013081306.15b4a494@xeon-e3> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Thomas Monjalon , gowrishankar.m@linux.vnet.ibm.com, jerin.jacob@caviumnetworks.com, jianbo.liu@linaro.org, sergio.gonzalez.monroy@intel.com, dev@dpdk.org To: Stephen Hemminger Return-path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 71BDF1B74E for ; Fri, 13 Oct 2017 17:17:56 +0200 (CEST) Content-Disposition: inline In-Reply-To: <20171013081306.15b4a494@xeon-e3> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Fri, Oct 13, 2017 at 08:13:06AM -0700, Stephen Hemminger wrote: > On Fri, 13 Oct 2017 09:30:43 +0200 > Thomas Monjalon wrote: > > > 13/10/2017 05:47, Stephen Hemminger: > > > On Fri, 13 Oct 2017 02:02:47 +0200 > > > Thomas Monjalon wrote: > > > > > > > +static uint32_t > > > > +check_model_wsm_nhm(uint8_t model) > > > > +{ > > > > + switch (model) { > > > > + /* Westmere */ > > > > + case 0x25: > > > > + case 0x2C: > > > > + case 0x2F: > > > > + /* Nehalem */ > > > > + case 0x1E: > > > > + case 0x1F: > > > > + case 0x1A: > > > > + case 0x2E: > > > > + return 1; > > > > + } > > > > + > > > > + return 0; > > > > +} > > > > > > How about a table rather than switch? > > > Also bool rather than int? > > > > It is a matter of taste :) > > I plan to push it as is. It can be changed later if desired. > > Also using #define's rather than magic constants would help. Assuming that we could just come up with more meaningful names that help more than just have a comment indicating what uarch's each set of numbers is for. :-) For me, I don't think #defines are needed to enhance readability here.