Skip to content

Commit

Permalink
sparc64: Remvoe set_fs() from perf_callchain_user().
Browse files Browse the repository at this point in the history
Ever since commit 88b0193 ("perf/callchain: Force USER_DS when
invoking perf_callchain_user()") the caller does this for us.

Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
David S. Miller committed Oct 30, 2018
1 parent 4b42745 commit 0f0a691
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions arch/sparc/kernel/perf_event.c
Original file line number Diff line number Diff line change
Expand Up @@ -1849,16 +1849,12 @@ perf_callchain_user(struct perf_callchain_entry_ctx *entry, struct pt_regs *regs
{
u64 saved_fault_address = current_thread_info()->fault_address;
u8 saved_fault_code = get_thread_fault_code();
mm_segment_t old_fs;

perf_callchain_store(entry, regs->tpc);

if (!current->mm)
return;

old_fs = get_fs();
set_fs(USER_DS);

flushw_user();

pagefault_disable();
Expand All @@ -1870,7 +1866,6 @@ perf_callchain_user(struct perf_callchain_entry_ctx *entry, struct pt_regs *regs

pagefault_enable();

set_fs(old_fs);
set_thread_fault_code(saved_fault_code);
current_thread_info()->fault_address = saved_fault_address;
}

0 comments on commit 0f0a691

Please sign in to comment.