Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f8f33ca8 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "msm: kgsl: Do not expose kernel pointer for global entries"

parents 03d41402 1fbd906d
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -126,9 +126,11 @@ void kgsl_print_global_pt_entries(struct seq_file *s)
		if (memdesc == NULL)
			continue;

		seq_printf(s, "0x%16.16llX-0x%16.16llX %16llu %s\n",
			memdesc->gpuaddr, memdesc->gpuaddr + memdesc->size - 1,
			memdesc->size, global_pt_entries[i].name);
		seq_printf(s, "0x%pK-0x%pK %16llu %s\n",
			(uint64_t *)(uintptr_t) memdesc->gpuaddr,
			(uint64_t *)(uintptr_t) (memdesc->gpuaddr +
			memdesc->size - 1), memdesc->size,
			global_pt_entries[i].name);
	}
}