]> git.baikalelectronics.ru Git - kernel.git/commit
ath11k: Use memset_startat() for clearing queue descriptors
authorKees Cook <keescook@chromium.org>
Thu, 18 Nov 2021 20:24:16 +0000 (12:24 -0800)
committerKalle Valo <kvalo@codeaurora.org>
Wed, 24 Nov 2021 17:08:43 +0000 (19:08 +0200)
commit06231771af5661d5f0b200c9f8cd85b01471c757
tree46c20d7103887edb1ce2fdf616a627184df9773e
parentdee5a298037aeede8496fc8c76d2595900b0ee38
ath11k: Use memset_startat() for clearing queue descriptors

In preparation for FORTIFY_SOURCE performing compile-time and run-time
field bounds checking for memset(), avoid intentionally writing across
neighboring fields.

Use memset_startat() so memset() doesn't get confused about writing
beyond the destination member that is intended to be the starting point
of zeroing through the end of the struct. Additionally split up a later
field-spanning memset() so that memset() can reason about the size.

Signed-off-by: Kees Cook <keescook@chromium.org>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20211118202416.1286046-1-keescook@chromium.org
drivers/net/wireless/ath/ath11k/hal_rx.c