mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-02-21 21:02:24 +00:00
perf/x86/intel/pt: Fix the 32-bit build
On a 32-bit build I got: arch/x86/kernel/cpu/perf_event_intel_pt.c:413:5: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] arch/x86/kernel/cpu/perf_event_intel_bts.c:162:24: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] Fix it. The code should probably be (re-)tested on 32-bit systems to make sure all is fine. Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Cc: Borislav Petkov <bp@alien8.de> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: H. Peter Anvin <hpa@zytor.com> Cc: Kaixu Xia <kaixu.xia@linaro.org> Cc: linux-kernel@vger.kernel.org Cc: Peter Zijlstra (Intel) <peterz@infradead.org> Cc: Robert Richter <rric@kernel.org> Cc: Stephane Eranian <eranian@google.com> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: acme@infradead.org Cc: adrian.hunter@intel.com Cc: kan.liang@intel.com Cc: markus.t.metzger@intel.com Cc: mathieu.poirier@linaro.org Signed-off-by: Ingo Molnar <mingo@kernel.org>
This commit is contained in:
parent
cd1f11de69
commit
2e54a5bdba
@ -159,7 +159,7 @@ bts_config_buffer(struct bts_buffer *buf)
|
||||
thresh = end;
|
||||
}
|
||||
|
||||
ds->bts_buffer_base = (u64)page_address(page) + phys->displacement;
|
||||
ds->bts_buffer_base = (u64)(long)page_address(page) + phys->displacement;
|
||||
ds->bts_index = ds->bts_buffer_base + index;
|
||||
ds->bts_absolute_maximum = ds->bts_buffer_base + end;
|
||||
ds->bts_interrupt_threshold = !buf->snapshot
|
||||
|
@ -409,8 +409,8 @@ static void pt_topa_dump(struct pt_buffer *buf)
|
||||
list_for_each_entry(topa, &buf->tables, list) {
|
||||
int i;
|
||||
|
||||
pr_debug("# table @%p (%p), off %llx size %zx\n", topa->table,
|
||||
(void *)topa->phys, topa->offset, topa->size);
|
||||
pr_debug("# table @%p (%016Lx), off %llx size %zx\n", topa->table,
|
||||
topa->phys, topa->offset, topa->size);
|
||||
for (i = 0; i < TENTS_PER_PAGE; i++) {
|
||||
pr_debug("# entry @%p (%lx sz %u %c%c%c) raw=%16llx\n",
|
||||
&topa->table[i],
|
||||
|
Loading…
x
Reference in New Issue
Block a user