> -----Original Message----- > From: Xing, Beilei <[email protected]> > Sent: Friday, January 6, 2023 5:16 PM > To: Wu, Jingjing <[email protected]> > Cc: [email protected]; Zhang, Qi Z <[email protected]>; Xing, Beilei > <[email protected]> > Subject: [PATCH v2 07/15] common/idpf: add irq map/unmap > > From: Beilei Xing <[email protected]> > > Add irq map/unmap functions in common module. Seems patch not just adding new functions, but also move something from net/idpf to common/idpf. Better to add more description, and same to other patch in this patch set. > > Signed-off-by: Jingjing Wu <[email protected]> > Signed-off-by: Beilei Xing <[email protected]> > --- > drivers/common/idpf/idpf_common_device.c | 99 > ++++++++++++++++++++ > drivers/common/idpf/idpf_common_device.h | 6 ++ > drivers/common/idpf/idpf_common_virtchnl.c | 8 -- > drivers/common/idpf/idpf_common_virtchnl.h | 5 +- > drivers/common/idpf/version.map | 3 +- > drivers/net/idpf/idpf_ethdev.c | 102 +++------------------ > drivers/net/idpf/idpf_ethdev.h | 1 - > 7 files changed, 121 insertions(+), 103 deletions(-) > > diff --git a/drivers/common/idpf/idpf_common_device.c > b/drivers/common/idpf/idpf_common_device.c > index 19d638824d..7c69bdf6a8 100644 > --- a/drivers/common/idpf/idpf_common_device.c > +++ b/drivers/common/idpf/idpf_common_device.c ...

