From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 5009FA0613 for ; Fri, 27 Sep 2019 19:30:31 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 1AAFB1BE99; Fri, 27 Sep 2019 19:30:31 +0200 (CEST) Received: from mail-pf1-f196.google.com (mail-pf1-f196.google.com [209.85.210.196]) by dpdk.org (Postfix) with ESMTP id 445791B9BF for ; Fri, 27 Sep 2019 19:30:29 +0200 (CEST) Received: by mail-pf1-f196.google.com with SMTP id 205so1985125pfw.2 for ; Fri, 27 Sep 2019 10:30:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20150623.gappssmtp.com; s=20150623; h=date:from:to:cc:subject:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=s1/Amq4ygqn1lX7/ve4Tds30rxaZrqhQ4jofeUWNcyg=; b=sQBKLMbMGOkL4V2FjLLxkU4eTBNxma5VI0+elplMS1dFegcYLZMamPMPjoNhiPYAtq O36ox/JZJbVI1qxj+dx1JE3e2DcNvoSg7Lh9qCEI217r69/V2NRZb3ers80xU4OQAV8l evAFFJwA5VBK+6KrauUHZx7la3qYbvzjah1W2oHrduvp19mVUFd7FFchBBpyt6fqeddf JbKsDH0aVSrJcXrb45OaPc/PoUQnDcOTbQamZXe2Wx6ECpevt/ZTY6TkaRE3UwBS05XJ 867IrpxQE+BykIN7b9b1UlKZn8PjCBxOovgmlbnu0VbvDk3opUiA+hIQQC5cjC0abDgp oTWg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=s1/Amq4ygqn1lX7/ve4Tds30rxaZrqhQ4jofeUWNcyg=; b=qqkM16rx4i0eh6wz1BnlU5Kl85RM1ae3ath51AdtyT63uCNg3BgHnI+p3nK1ZHph+P FK1eRuhvMwEuO4jhYBhGHjf/M/Yvg+XRljWMQnBsti4U2gLKKgzCulDW8PhJP5GkCvkk yQ4PzG+4Od8QqMgJqqikSsuZxP8q9EHlkBAi/HTWuFRdWSexv0RutKZnUOAn1ZhYP7FQ N7HClb0Ei3jALKZUnzZm1Ttf2jzs+hxQ0fp+iXwGuOqK1TGApk0xdf2tcvQO8H1bLH1h 2DU7qVGdFVswBNF7jdJCJDvhiSD24dm+D0qCh5SZYB4EEnd+JOTroiF00IdMjoCjS1bV g3CQ== X-Gm-Message-State: APjAAAUNwWpZYj5LlmA1p+udwXAb6dyN4wu0Ykf0LNS4gUT8HdzAkMTa G5Vpq2bBWxRJZkRmosTff/Eah+EwBxY= X-Google-Smtp-Source: APXvYqzts9LbqbQsWVTCW9shJt1p+OBI4SDZcwsAibVkdipu5hSFFAsOZydMKaDAFkFqgfjuncG/FQ== X-Received: by 2002:a17:90a:8001:: with SMTP id b1mr11172507pjn.10.1569605428321; Fri, 27 Sep 2019 10:30:28 -0700 (PDT) Received: from hermes.lan (204-195-22-127.wavecable.com. [204.195.22.127]) by smtp.gmail.com with ESMTPSA id p1sm6811202pfb.112.2019.09.27.10.30.27 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 27 Sep 2019 10:30:28 -0700 (PDT) Date: Fri, 27 Sep 2019 10:30:26 -0700 From: Stephen Hemminger To: Cc: , , Marko Kovacevic , Ori Kam , Bruce Richardson , Radu Nicolau , "Tomasz Kantecki" , Message-ID: <20190927103026.22e1411f@hermes.lan> In-Reply-To: <20190926100558.24348-10-pbhagavatula@marvell.com> References: <20190926100558.24348-1-pbhagavatula@marvell.com> <20190926100558.24348-10-pbhagavatula@marvell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH 09/11] examples/l3fwd: add event em main loop 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 Thu, 26 Sep 2019 15:35:56 +0530 wrote: > +static __rte_always_inline void > +em_event_loop_single(struct l3fwd_eventdev_resources *evdev_rsrc, > + const uint8_t flags) Do not use always_inline except for cases where compiler will get it wrong. This function should not have inline at all compiler will be smart enough to do it.