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=-3.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS 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 8E9BDC55178 for ; Thu, 29 Oct 2020 09:19:40 +0000 (UTC) Received: from dpdk.org (dpdk.org [92.243.14.124]) by mail.kernel.org (Postfix) with ESMTP id 5C5A720790 for ; Thu, 29 Oct 2020 09:19:39 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 5C5A720790 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=intel.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dev-bounces@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 08D50C826; Thu, 29 Oct 2020 10:19:37 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id 94AEABE45 for ; Thu, 29 Oct 2020 10:19:34 +0100 (CET) IronPort-SDR: ZngQ2rA9PwfYKRbLZvQB/4Ha8HCWBBWXIbWHoQcb3rcSE7Z8Md4XKPN48dq74rNSC2xs0fbTom lfc83TY7qt3w== X-IronPort-AV: E=McAfee;i="6000,8403,9788"; a="253109492" X-IronPort-AV: E=Sophos;i="5.77,429,1596524400"; d="scan'208";a="253109492" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 29 Oct 2020 02:19:33 -0700 IronPort-SDR: VOvLUf+0FZV0g5EF9KeAV819gi4VyprA+QdbKlRihmLji+oYBz+29/81vxbuJziKWwi7oPI8Ti Dshu5uMgSypw== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.77,429,1596524400"; d="scan'208";a="351363009" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by fmsmga004.fm.intel.com with ESMTP; 29 Oct 2020 02:19:29 -0700 Received: from sivswdev09.ir.intel.com (sivswdev09.ir.intel.com [10.237.217.48]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id 09T9JTi4017719; Thu, 29 Oct 2020 09:19:29 GMT Received: from sivswdev09.ir.intel.com (localhost [127.0.0.1]) by sivswdev09.ir.intel.com with ESMTP id 09T9JTEj018120; Thu, 29 Oct 2020 09:19:29 GMT Received: (from lma25@localhost) by sivswdev09.ir.intel.com with LOCAL id 09T9JSSJ018116; Thu, 29 Oct 2020 09:19:28 GMT Date: Thu, 29 Oct 2020 09:19:28 +0000 From: "Liang, Ma" To: "McDaniel, Timothy" Cc: Jerin Jacob , "Ananyev, Konstantin" , Thomas Monjalon , dpdk-dev , "Ruifeng Wang (Arm Technology China)" , "Wang, Haiyue" , "Richardson, Bruce" , "Hunt, David" , Neil Horman , "Eads, Gage" , Marcin Wojtas , Guy Tzalik , Ajit Khaparde , Harman Kalra , John Daley , "Wei Hu (Xavier" , Ziyang Xuan , "matan@nvidia.com" , Yong Wang , "david.marchand@redhat.com" Message-ID: <20201029091928.GH29706@sivswdev09.ir.intel.com> References: <2373759.1G5EZAqFcn@thomas> <20201028164735.GG29706@sivswdev09.ir.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Subject: Re: [dpdk-dev] [PATCH v10 0/9] Add PMD power mgmt X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list 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 28 Oct 09:54, McDaniel, Timothy wrote: > > > > > > > > > > > > > > > > > > It would be nice if the low level definition of the UMWAIT and UMONOTOR instructions were split out > into their own inline function or macro so that any PMD could use the intrinsic without being tied to ethdev or > any of the other logic associated with this patch set. This would be similar to rte_wmb, and so on Current patches split the intrinsics out. and already part of eal lib. any other PMD can re-use it easily. > >