[PATCH v5 2/3] net/intel: use portable version of __builtin_add_overflow

2025-03-15 Thread Andre Muezerie
__builtin_add_overflow is gcc specific. It should be replaced with a portable version that can also be used with other compilers. Signed-off-by: Andre Muezerie --- drivers/net/intel/ice/base/ice_osdep.h | 5 + 1 file changed, 5 insertions(+) diff --git a/drivers/net/intel/ice/base/ice_osdep

Re: [PATCH v5 2/3] net/intel: use portable version of __builtin_add_overflow

2025-03-14 Thread Bruce Richardson
On Fri, Mar 14, 2025 at 07:33:39AM -0700, Andre Muezerie wrote: > __builtin_add_overflow is gcc specific. It should be replaced with > a portable version that can also be used with other compilers. > > Signed-off-by: Andre Muezerie > --- Acked-by: Bruce Richardson