qed: Add iWARP support for physical queue allocation
iWARP has different physical queue requirements than RoCE Signed-off-by: Michal Kalderon <Michal.Kalderon@cavium.com> Signed-off-by: Yuval Mintz <Yuval.Mintz@cavium.com> Signed-off-by: Ariel Elior <Ariel.Elior@cavium.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
5d7dc9620d
commit
93c45984d3
|
@ -216,6 +216,10 @@ static u32 qed_get_pq_flags(struct qed_hwfn *p_hwfn)
|
|||
case QED_PCI_ETH_ROCE:
|
||||
flags |= PQ_FLAGS_MCOS | PQ_FLAGS_OFLD | PQ_FLAGS_LLT;
|
||||
break;
|
||||
case QED_PCI_ETH_IWARP:
|
||||
flags |= PQ_FLAGS_MCOS | PQ_FLAGS_ACK | PQ_FLAGS_OOO |
|
||||
PQ_FLAGS_OFLD;
|
||||
break;
|
||||
default:
|
||||
DP_ERR(p_hwfn,
|
||||
"unknown personality %d\n", p_hwfn->hw_info.personality);
|
||||
|
|
Loading…
Reference in New Issue