net/dpaa: fix FD offset data type
On DPAA fd offset is 9 bits, but we are using uint8_t in the SG case. This patch fixes the same. Fixes: 8cffdcbe85aa ("net/dpaa: support scattered Rx") Cc: stable@dpdk.org Signed-off-by: Nipun Gupta <nipun.gupta@nxp.com> Acked-by: Akhil Goyal <akhil.goyal@nxp.com> Acked-by: Hemant Agrawal <hemant.agrawal@nxp.com>
This commit is contained in:
parent
3827197dab
commit
287f4256f9
@ -305,7 +305,7 @@ dpaa_eth_sg_to_mbuf(const struct qm_fd *fd, uint32_t ifid)
|
||||
struct qm_sg_entry *sgt, *sg_temp;
|
||||
void *vaddr, *sg_vaddr;
|
||||
int i = 0;
|
||||
uint8_t fd_offset = fd->offset;
|
||||
uint16_t fd_offset = fd->offset;
|
||||
|
||||
vaddr = DPAA_MEMPOOL_PTOV(bp_info, qm_fd_addr(fd));
|
||||
if (!vaddr) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user