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)
commitd5549e9a6b863fe10388a55ab5dfc12b0a1473d3
tree46c20d7103887edb1ce2fdf616a627184df9773e
parentc27506cc7733261bafd7a97e7990407eef433d32
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