mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-22 09:12:24 +03:00
gpu: nvgpu: fix MISRA 11.2 nvgpu_sgl
MISRA rule 11.2 doesn't allow conversions of a pointer from or to an incomplete type. These type of conversions may result in a pointer aligned incorrectly and may further result in undefined behavior. This patch addresses rule 11.2 violations related to pointers to and from struct nvgpu_sgl. This patch replaces struct nvgpu_sgl pointers by void pointers. Jira NVGPU-3736 Change-Id: I8fd5766eacace596f2761b308bce79f22f2cb207 Signed-off-by: Vedashree Vidwans <vvidwans@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/2267876 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
This commit is contained in:
committed by
Alex Waterman
parent
6b62e0f79a
commit
a615604411
@@ -265,7 +265,7 @@ static struct test_parameters test_sgt_iommu_sysmem = {
|
||||
* This is used to test a corner case in __nvgpu_gmmu_do_update_page_table()
|
||||
*/
|
||||
static u64 nvgpu_mem_sgl_ipa_to_pa_by_half(struct gk20a *g,
|
||||
struct nvgpu_sgl *sgl, u64 ipa, u64 *pa_len)
|
||||
void *sgl, u64 ipa, u64 *pa_len)
|
||||
{
|
||||
*pa_len = test_iommu_sysmem_sgl_skip.offset_pages * SZ_4K / 2;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user