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 C88A7A2EFC for ; Tue, 17 Sep 2019 21:11:17 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 2409D1BF01; Tue, 17 Sep 2019 21:11:17 +0200 (CEST) Received: from mail-wr1-f66.google.com (mail-wr1-f66.google.com [209.85.221.66]) by dpdk.org (Postfix) with ESMTP id CFF751BEFD for ; Tue, 17 Sep 2019 21:11:15 +0200 (CEST) Received: by mail-wr1-f66.google.com with SMTP id r5so4292516wrm.12 for ; Tue, 17 Sep 2019 12:11:15 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nfware-com.20150623.gappssmtp.com; s=20150623; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=M1Ymp7NoC08AbKQe1/VfZTnU+Gm2/NMNoMtTZe0cxFQ=; b=elr/oC4yz8rOqwDq2keilcwM8ZHs25wjopGHmEtgYqHBJl4ccF2e4+reugXMlp+dfd IHKKsYMhvgGfR9dBDgxMv5//xl2nFxoqroGLu2Yn2sLYv7ejFb1jgt5P0CJ8bWDc1vUr D28Gr4vFUHasIApitZCGFi8ygcuXQKB2VHQGdHJClNK2DDpqk32eu2Z+8v/mF11pGCAk x2UWQ6XpvyxRi22jFT7V65re0NUalrSIXhTxk/68ocJAWWIZXdoe9iukub9evx3aInuz wkSC7tzHiGF3W4HJvn4BaH6S1UMy8uWA1usqHdKvXD69ycBI9xwMXaTu8BGc9vzxrfdn duJQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=M1Ymp7NoC08AbKQe1/VfZTnU+Gm2/NMNoMtTZe0cxFQ=; b=GJzpRPMkTcTR9aFUofPhXOY0oiwPUW5x1/k430U/scABKDm8ftepwrUeUL18OaDHz+ LumMrjBtOpsUdgCHHXB3g5CglWAe1zj+orFtp0hYCLMGfyKcbS2i0WHLJZ78BftP7SEP pow3Zk9ZM/k7yEPf+JTCnXKoo5uPHojJ7ChKk6mzVwARfC1UaiZ3wWtm08QTYezsFdqu ok6NjIuIeQlLKktQP3BukIYz3KWV9l71Zf0L1EDfPsL2MdJUirRI9tdGh8qbxs3vqov/ ip0K396nNXa/X4rpUnmwn9SROH74FjQ+2ZSUabLcBO5lXzqFk0gEnNCYV2sO2uySAQgp a51w== X-Gm-Message-State: APjAAAXyiCDXHNF/Ia0Yu588GvHoa4Zs2JtGcbG9PB/R8ze3QVmSGF8z 49pI68dFZy8eFA8On3NDX9TSiWdrtiZl0wEuXttVgULRmHU= X-Google-Smtp-Source: APXvYqzFsXgkZORtbkk90K5nT2nR1WXx+ftmCS7N8Qi3jZz4R2k1A8ru5gBNdFaFnnjGgpJLob5CBT2H/wiY8WNxy2U= X-Received: by 2002:a5d:51d2:: with SMTP id n18mr146461wrv.10.1568747475084; Tue, 17 Sep 2019 12:11:15 -0700 (PDT) MIME-Version: 1.0 References: <20190916100828.38199-1-iryzhov@nfware.com> In-Reply-To: <20190916100828.38199-1-iryzhov@nfware.com> From: Igor Ryzhov Date: Tue, 17 Sep 2019 22:11:04 +0300 Message-ID: To: dev@dpdk.org Cc: "Richardson, Bruce" Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: Re: [dpdk-dev] [PATCH] config: set RTE_KNI_PREEMPT_DEFAULT in meson 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" CCing Bruce, maintainer of the meson build system. It's a simple patch to make meson behavior consistent with make behavior. CONFIG_RTE_KNI_PREEMPT_DEFAULT is set to "y" in config/common_base, so we need to set RTE_KNI_PREEMPT_DEFAULT to 1 in meson. Best regards, Igor On Mon, Sep 16, 2019 at 1:08 PM Igor Ryzhov wrote: > Same behavior as in make build system. > > Signed-off-by: Igor Ryzhov > --- > config/rte_config.h | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/config/rte_config.h b/config/rte_config.h > index 0bbbe274f..e6a35a170 100644 > --- a/config/rte_config.h > +++ b/config/rte_config.h > @@ -98,6 +98,9 @@ > #define RTE_SCHED_PORT_N_GRINDERS 8 > #undef RTE_SCHED_VECTOR > > +/* rte_kni defines */ > +#define RTE_KNI_PREEMPT_DEFAULT 1 > + > /****** driver defines ********/ > > /* QuickAssist device */ > -- > 2.23.0 > >