[dpdk-dev] [PATCH 4/6] qede: add driver common module

2016-02-20 Thread harish.pa...@qlogic.com
From: Harish Patil Signed-off-by: Harish Patil Signed-off-by: Rasesh Mody Signed-off-by: Sony Chacko --- drivers/net/qede/ecore/bcm_osal.c| 130 + drivers/net/qede/ecore/bcm_osal.h| 408 + drivers/net/qede/ecore/common_hsi.h | 714 ++ drivers/net/qede/ec

[dpdk-dev] [PATCH] l3fwd: Fix l3fwd crash due to unaligned load/store intrinsics

2015-11-08 Thread harish.pa...@qlogic.com
From: Harish Patil l3fwd app expects PMDs to return packets whose L2 header is 16-byte aligned due to usage of _mm_load_si128()/_mm_store_si128() intrinsics in the app. However, most of the protocol stacks expects packets such that its IP/L3 header be aligned on a 16-byte boundary. Based on the