net/bnxt: fix an issue with group id calculation
start_grp_id is incremented wrongly. Fixing it. Fixes: daef48efe5e5 ("net/bnxt: support set MTU") Cc: stable@dpdk.org Signed-off-by: Ajit Khaparde <ajit.khaparde@broadcom.com>
This commit is contained in:
parent
044bf6e93c
commit
39464bd308
@ -168,7 +168,7 @@ int bnxt_mq_rx_configure(struct bnxt *bp)
|
||||
*/
|
||||
STAILQ_INSERT_TAIL(&vnic->filter, filter, next);
|
||||
|
||||
start_grp_id = end_grp_id + 1;
|
||||
start_grp_id = end_grp_id;
|
||||
end_grp_id += nb_q_per_grp;
|
||||
}
|
||||
goto out;
|
||||
|
Loading…
x
Reference in New Issue
Block a user