Thanks for the clarification. We are okay to move forward with the revert. בתאריך 16 בספט׳ 2024 18:12,‏ Stephen Hemminger כתב: CAUTION: This email originated from outside of the organization. Do not click links or open attachments unless you can confirm the sender and know the content is safe. On Mon, 16 Sep 2024 06:33:26 +0000 "Brandes, Shai" wrote: > > Did you have any chance to check/test this patch? > [Brandes, Shai] We are currently conducting tests and will provide an update shortly. In the meantime, could you advise whether it is recommended to entirely avoid using rte_memcpy in our driver, considering we have direct calls to it? There is a long term goal to remove rte_memcpy(). It exists only as workaround for cases where older compilers do not produce optimium code. When rte_memcpy() is used the checks done by fortify, gcc, coverity etc are less and there is higher probability of bugs going undetected. My current recommendation is to only use rte_memcpy() in the data path and for variable size data items.