mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-23 12:43:29 +02:00
tcp_cubic: use memset and offsetof init
In bictcp_reset(), use memset and offsetof instead of = 0. Signed-off-by: Yejune Deng <yejune.deng@gmail.com> Link: https://lore.kernel.org/r/1610597696-128610-1-git-send-email-yejune.deng@gmail.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
committed by
Jakub Kicinski
parent
b69df26082
commit
f4d133d86a
@@ -104,16 +104,7 @@ struct bictcp {
|
|||||||
|
|
||||||
static inline void bictcp_reset(struct bictcp *ca)
|
static inline void bictcp_reset(struct bictcp *ca)
|
||||||
{
|
{
|
||||||
ca->cnt = 0;
|
memset(ca, 0, offsetof(struct bictcp, unused));
|
||||||
ca->last_max_cwnd = 0;
|
|
||||||
ca->last_cwnd = 0;
|
|
||||||
ca->last_time = 0;
|
|
||||||
ca->bic_origin_point = 0;
|
|
||||||
ca->bic_K = 0;
|
|
||||||
ca->delay_min = 0;
|
|
||||||
ca->epoch_start = 0;
|
|
||||||
ca->ack_cnt = 0;
|
|
||||||
ca->tcp_cwnd = 0;
|
|
||||||
ca->found = 0;
|
ca->found = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user