[SLOF] [PATCH] libnet/ipv6: assign times_asked value directly
Alexey Kardashevskiy
aik at ozlabs.ru
Tue Sep 26 13:10:45 AEST 2017
On 15/09/17 14:34, Nikunj A Dadhania wrote:
> times_asked value remains same as the structure is zeroed, but it makes more
> sense to do that directly instead of adding with previous value.
>
> Signed-off-by: Nikunj A Dadhania <nikunj at linux.vnet.ibm.com>
Thanks, applied.
> ---
> lib/libnet/ipv6.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/lib/libnet/ipv6.c b/lib/libnet/ipv6.c
> index 62a444e..6c6fb54 100644
> --- a/lib/libnet/ipv6.c
> +++ b/lib/libnet/ipv6.c
> @@ -543,7 +543,7 @@ int send_ipv6(int fd, void* buffer, int len)
> memset(n, 0, sizeof(struct neighbor));
> memcpy(&(n->ip.addr[0]), &ip_dst, 16);
> n->status = NB_PROBE;
> - n->times_asked += 1;
> + n->times_asked = 1;
> neighbor_add(n);
> }
>
>
--
Alexey
More information about the SLOF
mailing list