From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-2.2 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id E809EC433E0 for ; Wed, 27 May 2020 15:25:08 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id C1B2E207D3 for ; Wed, 27 May 2020 15:25:08 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730267AbgE0PZH (ORCPT ); Wed, 27 May 2020 11:25:07 -0400 Received: from winnie.ispras.ru ([83.149.199.91]:26027 "EHLO smtp.ispras.ru" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1730245AbgE0PZH (ORCPT ); Wed, 27 May 2020 11:25:07 -0400 Received: from monopod.intra.ispras.ru (monopod.intra.ispras.ru [10.10.3.121]) by smtp.ispras.ru (Postfix) with ESMTP id 9BACC201D0; Wed, 27 May 2020 18:25:04 +0300 (MSK) Date: Wed, 27 May 2020 18:25:04 +0300 (MSK) From: Alexander Monakov To: Guenter Roeck cc: Naveen Krishna Ch , Naveen Krishna Chatradhi , linux-hwmon@vger.kernel.org Subject: Re: [PATCH 1/3 v7] hwmon: Add amd_energy driver to report energy counters In-Reply-To: <10e43329-7822-83fb-ab58-c82c4a28373a@roeck-us.net> Message-ID: References: <20200519155011.56184-1-nchatrad@amd.com> <9a4bbf2f-114a-4c69-b03e-0d9326816d44@roeck-us.net> <10e43329-7822-83fb-ab58-c82c4a28373a@roeck-us.net> User-Agent: Alpine 2.20.13 (LNX 116 2015-12-14) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Sender: linux-hwmon-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-hwmon@vger.kernel.org On Wed, 27 May 2020, Guenter Roeck wrote: > > In the current driver, the accumulation thread starts during the probe and the > > prev_value of sockets and the core0 is updated with the current MSR value. > > It takes (nr_cpus - 1) iterations of the thread to populate the prev_value for > > the other cores. > > > > By populating prev_value of all the cores during probe, we can > > certainly save some > > information (values with in one wrap-around at the best). If this > > information is > > useful, i can submit a patch to do so. Guenter, could you suggest us on this. > > > > As long as you don't ignore counter values from before loading the driver, > sure, go ahead. Hm? If I'm understanding correctly what Naveen is proposing, that would simply move reading the initial values ahead by a few hundred cycles (the latency to start the thread). It wouldn't change anything about the issue, and make the code more complicated :( Alexander