Re: [PATCH] cpp: Fix missing extern "C" closing bracket

2025-06-24 Thread Bruce Richardson
On Tue, Jun 24, 2025 at 02:12:53PM +0300, Edvard Fagerholm wrote: > RTE_FORCE_INTRINSICS with a C++ compiler causes rte_atomic.h and > rte_byteorder.h to emit on x86 an extern "C" without a closing > brace. > --- Unfortunately, patch is missing a signoff, so isn't eligible for merge. Can you pleas

Re: [PATCH] cpp: Fix missing extern "C" closing bracket

2025-06-24 Thread Edvard Fagerholm
On Tue, Jun 24, 2025 at 4:53 PM Bruce Richardson wrote: > > On Tue, Jun 24, 2025 at 02:12:53PM +0300, Edvard Fagerholm wrote: > > RTE_FORCE_INTRINSICS with a C++ compiler causes rte_atomic.h and > > rte_byteorder.h to emit on x86 an extern "C" without a closing > > brace. > > --- > > Unfortunately

[PATCH] cpp: Fix missing extern "C" closing bracket

2025-06-24 Thread Edvard Fagerholm
RTE_FORCE_INTRINSICS with a C++ compiler causes rte_atomic.h and rte_byteorder.h to emit on x86 an extern "C" without a closing brace. --- lib/eal/x86/include/rte_atomic.h| 4 ++-- lib/eal/x86/include/rte_byteorder.h | 9 + 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a