Re: struct_size() using sizeof() vs offsetof()
From: Gustavo A. R. Silva
Date: Thu Aug 17 2023 - 12:05:46 EST
- tp_c = kzalloc(sizeof(*tp_c), GFP_KERNEL);
+ tp_c = kzalloc(struct_size(tp_c, hlist->ht, 1), GFP_KERNEL);
I just sent a fix[1].
Thanks for reporting this! :)
--
Gustavo
[1] https://lore.kernel.org/linux-hardening/ZN5DvRyq6JNz20l1@work/