]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
x86/events/amd/iommu: Fix sizeof mismatch
authorColin Ian King <colin.king@canonical.com>
Thu, 1 Oct 2020 11:39:00 +0000 (12:39 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 29 Oct 2020 09:07:16 +0000 (10:07 +0100)
commit9a7d327326bd94753c22633a1a95ed266c551fc0
tree416dbcc051e6757b268dd6e5b557f82538d590cd
parent5fd2c1240d756a08ef387e42a2572c81557592a0
x86/events/amd/iommu: Fix sizeof mismatch

[ Upstream commit 59d5396a4666195f89a67e118e9e627ddd6f53a1 ]

An incorrect sizeof is being used, struct attribute ** is not correct,
it should be struct attribute *. Note that since ** is the same size as
* this is not causing any issues.  Improve this fix by using sizeof(*attrs)
as this allows us to not even reference the type of the pointer.

Addresses-Coverity: ("Sizeof not portable (SIZEOF_MISMATCH)")
Fixes: 51686546304f ("x86/events/amd/iommu: Fix sysfs perf attribute groups")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://lkml.kernel.org/r/20201001113900.58889-1-colin.king@canonical.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
arch/x86/events/amd/iommu.c