On Tue, Sep 09, 2025 at 03:33:34PM +0800, Fan Gong wrote: > Initialize queue pair context of hardware interaction. > > Co-developed-by: Zhu Yikai <zhuyikai1@xxxxxxxxxxxxxx> > Signed-off-by: Zhu Yikai <zhuyikai1@xxxxxxxxxxxxxx> > Signed-off-by: Fan Gong <gongfan1@xxxxxxxxxx> The nit below notwithstanding, this looks good to me. ... > diff --git a/drivers/net/ethernet/huawei/hinic3/hinic3_nic_io.c b/drivers/net/ethernet/huawei/hinic3/hinic3_nic_io.c ... > +static int clean_qp_offload_ctxt(struct hinic3_nic_dev *nic_dev) > +{ > + /* clean LRO/TSO context space */ > + return (clean_queue_offload_ctxt(nic_dev, HINIC3_QP_CTXT_TYPE_SQ) || > + clean_queue_offload_ctxt(nic_dev, HINIC3_QP_CTXT_TYPE_RQ)); nit: unnecessary outer parentheses > +} ...