Message ID | 20220516092337.131653-1-xiujianfeng@huawei.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 76e1e5df4b7cb8a87ca8b0242aabf06c8dc0d09d |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [-next] octeontx2-pf: Use memset_startat() helper in otx2_stop() | expand |
Hello: This patch was applied to netdev/net-next.git (master) by Jakub Kicinski <kuba@kernel.org>: On Mon, 16 May 2022 17:23:37 +0800 you wrote: > Use memset_startat() helper to simplify the code, there is no functional > change in this patch. > > Signed-off-by: Xiu Jianfeng <xiujianfeng@huawei.com> > --- > drivers/net/ethernet/marvell/octeontx2/nic/otx2_pf.c | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) Here is the summary with links: - [-next] octeontx2-pf: Use memset_startat() helper in otx2_stop() https://git.kernel.org/netdev/net-next/c/76e1e5df4b7c You are awesome, thank you!
diff --git a/drivers/net/ethernet/marvell/octeontx2/nic/otx2_pf.c b/drivers/net/ethernet/marvell/octeontx2/nic/otx2_pf.c index 2b204c1c23de..208c98664ade 100644 --- a/drivers/net/ethernet/marvell/octeontx2/nic/otx2_pf.c +++ b/drivers/net/ethernet/marvell/octeontx2/nic/otx2_pf.c @@ -1796,8 +1796,7 @@ int otx2_stop(struct net_device *netdev) kfree(qset->rq); kfree(qset->napi); /* Do not clear RQ/SQ ringsize settings */ - memset((void *)qset + offsetof(struct otx2_qset, sqe_cnt), 0, - sizeof(*qset) - offsetof(struct otx2_qset, sqe_cnt)); + memset_startat(qset, 0, sqe_cnt); return 0; } EXPORT_SYMBOL(otx2_stop);
Use memset_startat() helper to simplify the code, there is no functional change in this patch. Signed-off-by: Xiu Jianfeng <xiujianfeng@huawei.com> --- drivers/net/ethernet/marvell/octeontx2/nic/otx2_pf.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)