Merge tag 'configfs-for-linus-2' of git://git.infradead.org/users/hch/configfs
[cascardo/linux.git] / arch / x86 / include / asm / ftrace.h
index 2493885..a4820d4 100644 (file)
@@ -52,13 +52,13 @@ int ftrace_int3_handler(struct pt_regs *regs);
  * this screws up the trace output when tracing a ia32 task.
  * Instead of reporting bogus syscalls, just do not trace them.
  *
- * If the user realy wants these, then they should use the
+ * If the user really wants these, then they should use the
  * raw syscall tracepoints with filtering.
  */
 #define ARCH_TRACE_IGNORE_COMPAT_SYSCALLS 1
 static inline bool arch_trace_is_compat_syscall(struct pt_regs *regs)
 {
-       if (is_compat_task())
+       if (in_compat_syscall())
                return true;
        return false;
 }