mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 15:30:54 +07:00
tcp: remove unnecessary assignment.
This variable i is overwritten to 0 by following code Signed-off-by: Li RongQing <roy.qing.li@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
b193722731
commit
41c91996d9
@ -115,7 +115,7 @@ static bool tcp_fastopen_cookie_gen(struct request_sock *req,
|
||||
|
||||
if (__tcp_fastopen_cookie_gen(&ip6h->saddr, &tmp)) {
|
||||
struct in6_addr *buf = (struct in6_addr *) tmp.val;
|
||||
int i = 4;
|
||||
int i;
|
||||
|
||||
for (i = 0; i < 4; i++)
|
||||
buf->s6_addr32[i] ^= ip6h->daddr.s6_addr32[i];
|
||||
|
Loading…
Reference in New Issue
Block a user