automatic DPDK test reports
 help / color / mirror / Atom feed
From: dpdklab@iol.unh.edu
To: test-report@dpdk.org
Cc: dpdk-test-reports@iol.unh.edu
Subject: |WARNING| pw132502 [PATCH] doc: sort build and EAL features in the release notes
Date: Wed, 11 Oct 2023 20:22:36 -0700 (PDT)	[thread overview]
Message-ID: <6527667c.620a0220.1ec7c.d3aeSMTPIN_ADDED_MISSING@mx.google.com> (raw)

Test-Label: iol-testing
Test-Status: WARNING
http://dpdk.org/patch/132502

_apply patch failure_

Submitter: Thomas Monjalon <thomas@monjalon.net>
Date: Wednesday, October 11 2023 07:54:37 
Applied on: CommitID:a1934215a7691a86c55d415bd01ae8318581b67a
Apply patch set 132502 failed:

Checking patch doc/guides/rel_notes/release_23_11.rst...
error: while searching for:
      ninja -C build doc
      xdg-open build/doc/guides/html/rel_notes/release_23_11.html

* Build Requirements: From DPDK 23.11 onwards,
  building DPDK will require a C compiler which supports the C11 standard,
  including support for C11 standard atomics.

  More specifically, the requirements will be:

  * Support for flag "-std=c11" (or similar)
  * __STDC_NO_ATOMICS__ is *not defined* when using c11 flag

  Please note:

  * C11, including standard atomics, is supported from GCC version 5 onwards,
    and is the default language version in that release
    (Ref: https://gcc.gnu.org/gcc-5/changes.html)
  * C11 is the default compilation mode in Clang from version 3.6,
    which also added support for standard atomics
    (Ref: https://releases.llvm.org/3.6.0/tools/clang/docs/ReleaseNotes.html)

New Features
------------

error: patch failed: doc/guides/rel_notes/release_23_11.rst:20
error: while searching for:
     Also, make sure to start the actual text at the margin.
     =======================================================

* **Added mbuf recycling support.**

  Added ``rte_eth_recycle_rx_queue_info_get`` and ``rte_eth_recycle_mbufs``

error: patch failed: doc/guides/rel_notes/release_23_11.rst:72
error: while searching for:

  * Added SM2 algorithm support in asymmetric crypto operations.

* build: Enabling deprecated libraries is now done using the new
  ``enable_deprecated_libraries`` build option.

* build: Optional libraries can now be selected with the new ``enable_libs``
  build option similarly to the existing ``enable_drivers`` build option.

* eal: Introduced a new API for atomic operations. This new API serves as a
  wrapper for transitioning to standard atomic operations as described in the
  C11 standard. This API implementation points at the compiler intrinsics by
  default. The implementation using C11 standard atomic operations is enabled
  via the ``enable_stdatomic`` build option.

* eal: Added support for power intrinsics with AMD processors.


Removed Items
-------------

error: patch failed: doc/guides/rel_notes/release_23_11.rst:153
Applying patch doc/guides/rel_notes/release_23_11.rst with 3 rejects...
Rejected hunk #1.
Rejected hunk #2.
Rejected hunk #3.
hint: Use 'git am --show-current-patch' to see the failed patch
diff a/doc/guides/rel_notes/release_23_11.rst b/doc/guides/rel_notes/release_23_11.rst	(rejected hunks)
@@ -20,23 +20,6 @@ DPDK Release 23.11
       ninja -C build doc
       xdg-open build/doc/guides/html/rel_notes/release_23_11.html
 
-* Build Requirements: From DPDK 23.11 onwards,
-  building DPDK will require a C compiler which supports the C11 standard,
-  including support for C11 standard atomics.
-
-  More specifically, the requirements will be:
-
-  * Support for flag "-std=c11" (or similar)
-  * __STDC_NO_ATOMICS__ is *not defined* when using c11 flag
-
-  Please note:
-
-  * C11, including standard atomics, is supported from GCC version 5 onwards,
-    and is the default language version in that release
-    (Ref: https://gcc.gnu.org/gcc-5/changes.html)
-  * C11 is the default compilation mode in Clang from version 3.6,
-    which also added support for standard atomics
-    (Ref: https://releases.llvm.org/3.6.0/tools/clang/docs/ReleaseNotes.html)
 
 New Features
 ------------
@@ -72,6 +55,43 @@ New Features
      Also, make sure to start the actual text at the margin.
      =======================================================
 
+* **Build requirements increased for C11.**
+
+  From DPDK 23.11 onwards,
+  building DPDK will require a C compiler which supports the C11 standard,
+  including support for C11 standard atomics.
+
+  More specifically, the requirements will be:
+
+  * Support for flag "-std=c11" (or similar)
+  * __STDC_NO_ATOMICS__ is *not defined* when using c11 flag
+
+  Please note:
+
+  * C11, including standard atomics, is supported from GCC version 5 onwards,
+    and is the default language version in that release
+    (Ref: https://gcc.gnu.org/gcc-5/changes.html)
+  * C11 is the default compilation mode in Clang from version 3.6,
+    which also added support for standard atomics
+    (Ref: https://releases.llvm.org/3.6.0/tools/clang/docs/ReleaseNotes.html)
+
+* **Added new build options.**
+
+  * Enabling deprecated libraries is now done using
+    the new ``enable_deprecated_libraries`` build option.
+  * Optional libraries can now be selected with the new ``enable_libs``
+    build option similarly to the existing ``enable_drivers`` build option.
+
+* **Introduced a new API for atomic operations.**
+
+  This new API serves as a wrapper for transitioning
+  to standard atomic operations as described in the C11 standard.
+  This API implementation points at the compiler intrinsics by default.
+  The implementation using C11 standard atomic operations is enabled
+  via the ``enable_stdatomic`` build option.
+
+* **Added support for power intrinsics with AMD processors.**
+
 * **Added mbuf recycling support.**
 
   Added ``rte_eth_recycle_rx_queue_info_get`` and ``rte_eth_recycle_mbufs``
@@ -153,20 +173,6 @@ New Features
 
   * Added SM2 algorithm support in asymmetric crypto operations.
 
-* build: Enabling deprecated libraries is now done using the new
-  ``enable_deprecated_libraries`` build option.
-
-* build: Optional libraries can now be selected with the new ``enable_libs``
-  build option similarly to the existing ``enable_drivers`` build option.
-
-* eal: Introduced a new API for atomic operations. This new API serves as a
-  wrapper for transitioning to standard atomic operations as described in the
-  C11 standard. This API implementation points at the compiler intrinsics by
-  default. The implementation using C11 standard atomic operations is enabled
-  via the ``enable_stdatomic`` build option.
-
-* eal: Added support for power intrinsics with AMD processors.
-
 
 Removed Items
 -------------

https://lab.dpdk.org/results/dashboard/patchsets/27903/

UNH-IOL DPDK Community Lab

                 reply	other threads:[~2023-10-12  3:22 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=6527667c.620a0220.1ec7c.d3aeSMTPIN_ADDED_MISSING@mx.google.com \
    --to=dpdklab@iol.unh.edu \
    --cc=dpdk-test-reports@iol.unh.edu \
    --cc=test-report@dpdk.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).