Lines Matching refs:fl
149 #define set_syscall_work(fl) \ argument
150 set_bit(SYSCALL_WORK_BIT_##fl, ¤t_thread_info()->syscall_work)
151 #define test_syscall_work(fl) \ argument
152 test_bit(SYSCALL_WORK_BIT_##fl, ¤t_thread_info()->syscall_work)
153 #define clear_syscall_work(fl) \ argument
154 clear_bit(SYSCALL_WORK_BIT_##fl, ¤t_thread_info()->syscall_work)
156 #define set_task_syscall_work(t, fl) \ argument
157 set_bit(SYSCALL_WORK_BIT_##fl, &task_thread_info(t)->syscall_work)
158 #define test_task_syscall_work(t, fl) \ argument
159 test_bit(SYSCALL_WORK_BIT_##fl, &task_thread_info(t)->syscall_work)
160 #define clear_task_syscall_work(t, fl) \ argument
161 clear_bit(SYSCALL_WORK_BIT_##fl, &task_thread_info(t)->syscall_work)
165 #define set_syscall_work(fl) \ argument
166 set_ti_thread_flag(current_thread_info(), TIF_##fl)
167 #define test_syscall_work(fl) \ argument
168 test_ti_thread_flag(current_thread_info(), TIF_##fl)
169 #define clear_syscall_work(fl) \ argument
170 clear_ti_thread_flag(current_thread_info(), TIF_##fl)
172 #define set_task_syscall_work(t, fl) \ argument
173 set_ti_thread_flag(task_thread_info(t), TIF_##fl)
174 #define test_task_syscall_work(t, fl) \ argument
175 test_ti_thread_flag(task_thread_info(t), TIF_##fl)
176 #define clear_task_syscall_work(t, fl) \ argument
177 clear_ti_thread_flag(task_thread_info(t), TIF_##fl)