* [dpdk-dev] [PATCH] config: set RTE_KNI_PREEMPT_DEFAULT in meson
@ 2019-09-16 10:08 Igor Ryzhov
2019-09-17 19:11 ` Igor Ryzhov
0 siblings, 1 reply; 4+ messages in thread
From: Igor Ryzhov @ 2019-09-16 10:08 UTC (permalink / raw)
To: dev
Same behavior as in make build system.
Signed-off-by: Igor Ryzhov <iryzhov@nfware.com>
---
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
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dpdk-dev] [PATCH] config: set RTE_KNI_PREEMPT_DEFAULT in meson
2019-09-16 10:08 [dpdk-dev] [PATCH] config: set RTE_KNI_PREEMPT_DEFAULT in meson Igor Ryzhov
@ 2019-09-17 19:11 ` Igor Ryzhov
2019-09-18 10:32 ` Bruce Richardson
0 siblings, 1 reply; 4+ messages in thread
From: Igor Ryzhov @ 2019-09-17 19:11 UTC (permalink / raw)
To: dev; +Cc: Richardson, Bruce
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 <iryzhov@nfware.com> wrote:
> Same behavior as in make build system.
>
> Signed-off-by: Igor Ryzhov <iryzhov@nfware.com>
> ---
> 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
>
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dpdk-dev] [PATCH] config: set RTE_KNI_PREEMPT_DEFAULT in meson
2019-09-17 19:11 ` Igor Ryzhov
@ 2019-09-18 10:32 ` Bruce Richardson
2019-10-23 23:14 ` Thomas Monjalon
0 siblings, 1 reply; 4+ messages in thread
From: Bruce Richardson @ 2019-09-18 10:32 UTC (permalink / raw)
To: Igor Ryzhov; +Cc: dev
On Tue, Sep 17, 2019 at 10:11:04PM +0300, Igor Ryzhov wrote:
> 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
>
No objection from me.
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
> On Mon, Sep 16, 2019 at 1:08 PM Igor Ryzhov <[1]iryzhov@nfware.com>
> wrote:
>
> Same behavior as in make build system.
> Signed-off-by: Igor Ryzhov <[2]iryzhov@nfware.com>
> ---
> 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
>
> References
>
> 1. mailto:iryzhov@nfware.com
> 2. mailto:iryzhov@nfware.com
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dpdk-dev] [PATCH] config: set RTE_KNI_PREEMPT_DEFAULT in meson
2019-09-18 10:32 ` Bruce Richardson
@ 2019-10-23 23:14 ` Thomas Monjalon
0 siblings, 0 replies; 4+ messages in thread
From: Thomas Monjalon @ 2019-10-23 23:14 UTC (permalink / raw)
To: Igor Ryzhov; +Cc: dev, Bruce Richardson
18/09/2019 12:32, Bruce Richardson:
> On Tue, Sep 17, 2019 at 10:11:04PM +0300, Igor Ryzhov wrote:
> > 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
> >
> No objection from me.
>
> Acked-by: Bruce Richardson <bruce.richardson@intel.com>
Applied, thanks
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2019-10-23 23:14 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-16 10:08 [dpdk-dev] [PATCH] config: set RTE_KNI_PREEMPT_DEFAULT in meson Igor Ryzhov
2019-09-17 19:11 ` Igor Ryzhov
2019-09-18 10:32 ` Bruce Richardson
2019-10-23 23:14 ` Thomas Monjalon
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).