[SLOF] [PATCH] libnet/ipv6: assign times_asked value directly
Thomas Huth
thuth at redhat.com
Fri Sep 15 14:43:27 AEST 2017
On 15.09.2017 06: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>
> ---
> 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);
> }
Reviewed-by: Thomas Huth <thuth at redhat.com>
More information about the SLOF
mailing list