DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH v1] doc: add deprecation notice for PIE active queue management changes
@ 2021-05-25 12:19 Liguzinski, WojciechX
  2021-06-02 12:12 ` [dpdk-dev] [PATCH v2] " Liguzinski, WojciechX
  0 siblings, 1 reply; 3+ messages in thread
From: Liguzinski, WojciechX @ 2021-05-25 12:19 UTC (permalink / raw)
  To: dev, jasvinder.singh, cristian.dumitrescu; +Cc: savinay.dharmappa, megha.ajmera

Add deprecation note for making changes related to implementation of
PIE based active queue management support to DPDK scheduler library.
These changes are aligned as suggested in the RFC[1].

https://mails.dpdk.org/archives/dev/2021-May/210067.html

Signed-off-by: Liguzinski, WojciechX <wojciechx.liguzinski@intel.com>
---
 doc/guides/rel_notes/deprecation.rst | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst
index 9584d6bfd7..58f22a0276 100644
--- a/doc/guides/rel_notes/deprecation.rst
+++ b/doc/guides/rel_notes/deprecation.rst
@@ -141,6 +141,14 @@ Deprecation Notices
   in "rte_sched.h". These changes are aligned to improvements suggested in the
   RFC https://mails.dpdk.org/archives/dev/2018-November/120035.html.
 
+* sched: To add PIE based active queue management support to DPDK scheduler
+  library, changes will be made to data structures 
+  ``rte_sched_subport_params``, ``rte_sched_subport_stats``,
+  ``rte_sched_queue_stats``, ``rte_sched_queue_extra``, ``rte_sched_subport``.
+  New structures are introduced for PIE ``rte_pie_params``, ``rte_pie_config``,
+  ``rte_pie``. These changes are aligned to improvements suggested in the RFC
+  https://mails.dpdk.org/archives/dev/2021-May/210067.html.
+
 * metrics: The function ``rte_metrics_init`` will have a non-void return
   in order to notify errors instead of calling ``rte_exit``.
 
-- 
2.17.1

--------------------------------------------------------------
Intel Research and Development Ireland Limited
Registered in Ireland
Registered Office: Collinstown Industrial Park, Leixlip, County Kildare
Registered Number: 308263


This e-mail and any attachments may contain confidential material for the sole
use of the intended recipient(s). Any review or distribution by others is
strictly prohibited. If you are not the intended recipient, please contact the
sender and delete all copies.


^ permalink raw reply	[flat|nested] 3+ messages in thread

* [dpdk-dev] [PATCH v2] doc: add deprecation notice for PIE active queue management changes
  2021-05-25 12:19 [dpdk-dev] [PATCH v1] doc: add deprecation notice for PIE active queue management changes Liguzinski, WojciechX
@ 2021-06-02 12:12 ` Liguzinski, WojciechX
  2021-08-06 14:45   ` Singh, Jasvinder
  0 siblings, 1 reply; 3+ messages in thread
From: Liguzinski, WojciechX @ 2021-06-02 12:12 UTC (permalink / raw)
  To: dev, jasvinder.singh, cristian.dumitrescu; +Cc: savinay.dharmappa, megha.ajmera

Add deprecation note for making changes related to implementation of
PIE based active queue management support to DPDK scheduler library.
These changes are aligned as suggested in the RFC[1].

https://mails.dpdk.org/archives/dev/2021-May/210067.html

Signed-off-by: Liguzinski, WojciechX <wojciechx.liguzinski@intel.com>
---
 doc/guides/rel_notes/deprecation.rst | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst
index 9584d6bfd7..113b5b55c1 100644
--- a/doc/guides/rel_notes/deprecation.rst
+++ b/doc/guides/rel_notes/deprecation.rst
@@ -141,6 +141,14 @@ Deprecation Notices
   in "rte_sched.h". These changes are aligned to improvements suggested in the
   RFC https://mails.dpdk.org/archives/dev/2018-November/120035.html.
 
+* sched: To add PIE based active queue management support to DPDK scheduler
+  library, changes will be made to data structures
+  ``rte_sched_subport_params``, ``rte_sched_subport_stats``,
+  ``rte_sched_queue_stats``, ``rte_sched_queue_extra``, ``rte_sched_subport``.
+  New structures are introduced for PIE ``rte_pie_params``, ``rte_pie_config``,
+  ``rte_pie``. These changes are aligned to improvements suggested in the RFC
+  https://mails.dpdk.org/archives/dev/2021-May/210067.html.
+
 * metrics: The function ``rte_metrics_init`` will have a non-void return
   in order to notify errors instead of calling ``rte_exit``.
 
-- 
2.17.1


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [dpdk-dev] [PATCH v2] doc: add deprecation notice for PIE active queue management changes
  2021-06-02 12:12 ` [dpdk-dev] [PATCH v2] " Liguzinski, WojciechX
@ 2021-08-06 14:45   ` Singh, Jasvinder
  0 siblings, 0 replies; 3+ messages in thread
From: Singh, Jasvinder @ 2021-08-06 14:45 UTC (permalink / raw)
  To: Liguzinski, WojciechX, dev, Dumitrescu, Cristian
  Cc: Dharmappa, Savinay, Ajmera, Megha



> -----Original Message-----
> From: Liguzinski, WojciechX <wojciechx.liguzinski@intel.com>
> Sent: Wednesday, June 2, 2021 1:12 PM
> To: dev@dpdk.org; Singh, Jasvinder <jasvinder.singh@intel.com>;
> Dumitrescu, Cristian <cristian.dumitrescu@intel.com>
> Cc: Dharmappa, Savinay <Savinay.Dharmappa@intel.com>; Ajmera, Megha
> <megha.ajmera@intel.com>
> Subject: [PATCH v2] doc: add deprecation notice for PIE active queue
> management changes
> 
> Add deprecation note for making changes related to implementation of PIE
> based active queue management support to DPDK scheduler library.
> These changes are aligned as suggested in the RFC[1].
> 
> https://mails.dpdk.org/archives/dev/2021-May/210067.html
> 
> Signed-off-by: Liguzinski, WojciechX <wojciechx.liguzinski@intel.com>
> ---
>  doc/guides/rel_notes/deprecation.rst | 8 ++++++++
>  1 file changed, 8 insertions(+)
> 
> diff --git a/doc/guides/rel_notes/deprecation.rst
> b/doc/guides/rel_notes/deprecation.rst
> index 9584d6bfd7..113b5b55c1 100644
> --- a/doc/guides/rel_notes/deprecation.rst
> +++ b/doc/guides/rel_notes/deprecation.rst
> @@ -141,6 +141,14 @@ Deprecation Notices
>    in "rte_sched.h". These changes are aligned to improvements suggested in
> the
>    RFC https://mails.dpdk.org/archives/dev/2018-November/120035.html.
> 
> +* sched: To add PIE based active queue management support to DPDK
> +scheduler
> +  library, changes will be made to data structures
> +  ``rte_sched_subport_params``, ``rte_sched_subport_stats``,
> +  ``rte_sched_queue_stats``, ``rte_sched_queue_extra``,
> ``rte_sched_subport``.
> +  New structures are introduced for PIE ``rte_pie_params``,
> +``rte_pie_config``,
> +  ``rte_pie``. These changes are aligned to improvements suggested in
> +the RFC
> +  https://mails.dpdk.org/archives/dev/2021-May/210067.html.
> +
>  * metrics: The function ``rte_metrics_init`` will have a non-void return
>    in order to notify errors instead of calling ``rte_exit``.
> 
> --
> 2.17.1

Acked-by: Jasvinder Singh <jasvinder.singh@intel.com>



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-08-06 14:45 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-25 12:19 [dpdk-dev] [PATCH v1] doc: add deprecation notice for PIE active queue management changes Liguzinski, WojciechX
2021-06-02 12:12 ` [dpdk-dev] [PATCH v2] " Liguzinski, WojciechX
2021-08-06 14:45   ` Singh, Jasvinder

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).