|
@@ -2146,6 +2146,12 @@ perf_callchain_user(struct perf_callchain_entry *entry, struct pt_regs *regs)
|
|
|
*/
|
|
|
static unsigned long code_segment_base(struct pt_regs *regs)
|
|
|
{
|
|
|
+ /*
|
|
|
+ * For IA32 we look at the GDT/LDT segment base to convert the
|
|
|
+ * effective IP to a linear address.
|
|
|
+ */
|
|
|
+
|
|
|
+#ifdef CONFIG_X86_32
|
|
|
/*
|
|
|
* If we are in VM86 mode, add the segment offset to convert to a
|
|
|
* linear address.
|
|
@@ -2153,12 +2159,7 @@ static unsigned long code_segment_base(struct pt_regs *regs)
|
|
|
if (regs->flags & X86_VM_MASK)
|
|
|
return 0x10 * regs->cs;
|
|
|
|
|
|
- /*
|
|
|
- * For IA32 we look at the GDT/LDT segment base to convert the
|
|
|
- * effective IP to a linear address.
|
|
|
- */
|
|
|
-#ifdef CONFIG_X86_32
|
|
|
- if (user_mode(regs) && regs->cs != __USER_CS)
|
|
|
+ if (user_mode_ignore_vm86(regs) && regs->cs != __USER_CS)
|
|
|
return get_segment_base(regs->cs);
|
|
|
#else
|
|
|
if (user_mode(regs) && !user_64bit_mode(regs) &&
|