Correct the size of allocated memory to store array of counters.

This commit is contained in:
Andrey V. Elsukov 2013-07-09 15:20:46 +00:00
parent 9bea6fd6c6
commit 9f0f032d10
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=253101

View File

@ -2749,12 +2749,13 @@ in6_domifattach(struct ifnet *ifp)
ext = (struct in6_ifextra *)malloc(sizeof(*ext), M_IFADDR, M_WAITOK);
bzero(ext, sizeof(*ext));
ext->in6_ifstat = malloc(sizeof(struct in6_ifstat), M_IFADDR,
M_WAITOK);
ext->in6_ifstat = malloc(sizeof(counter_u64_t) *
sizeof(struct in6_ifstat) / sizeof(uint64_t), M_IFADDR, M_WAITOK);
COUNTER_ARRAY_ALLOC(ext->in6_ifstat,
sizeof(struct in6_ifstat) / sizeof(uint64_t), M_WAITOK);
ext->icmp6_ifstat = malloc(sizeof(struct icmp6_ifstat), M_IFADDR,
ext->icmp6_ifstat = malloc(sizeof(counter_u64_t) *
sizeof(struct icmp6_ifstat) / sizeof(uint64_t), M_IFADDR,
M_WAITOK);
COUNTER_ARRAY_ALLOC(ext->icmp6_ifstat,
sizeof(struct icmp6_ifstat) / sizeof(uint64_t), M_WAITOK);