\linux-2.6.21\arch\arm\kernel\entry-common.S
 파일 내부에서 17번째 줄에 보면 아래와 같은 내용이 있습니다.



#include <asm/unistd.h>
#include <asm/arch/entry-macro.S>

#include "entry-header.S"


 .align 5
/*
 * This is the fast syscall return path.  We do as little as
 * possible here, and this includes saving r0 back into the SVC
 * stack.
 */
ret_fast_syscall:
 disable_irq    @ disable interrupts
 ldr r1, [tsk, #TI_FLAGS]
 tst r1, #_TIF_WORK_MASK
 bne fast_work_pending

제가 질문을 드리고자 하는 내용은 빨간색 글자 부분입니다.

이것이 의미하는 것이 정확히 무엇인지 궁금해서 이렇게 질문을 드립니다.

자세히 알려주시면 정말 감사하겠습니다.