• Wade Farnsworth's avatar
    ARM: 7548/1: include linux/sched.h in syscall.h · 8ef102c6
    Wade Farnsworth authored
    The syscall tracing patch introduces a compile bug in lttng-modules
    when the latter calls syscall_get_nr(), similar to the following:
    
    <path-to-linux>/arch/arm/include/asm/syscall.h:21:2: error: implicit declaration of function 'task_thread_info' [-Werror=implicit-function-declaration]
    
    The issue is that we are using task_thread_info() in the
    syscall_get_nr() function in asm/syscall.h, but not explicitly
    including sched.h from this file, so we can expect this bug might
    surface any time that syscall_get_nr() is called.
    
    Explicitly including sched.h solves the problem.
    
    Cc: <stable@vger.kernel.org> [3.5, 3.6]
    Signed-off-by: default avatarWade Farnsworth <wade_farnsworth@mentor.com>
    Acked-by: default avatarWill Deacon <will.deacon@arm.com>
    Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
    8ef102c6
syscall.h 2.13 KB