Lines Matching refs:fl
157 #define set_syscall_work(fl) \ argument
158 set_bit(SYSCALL_WORK_BIT_##fl, ¤t_thread_info()->syscall_work)
159 #define test_syscall_work(fl) \ argument
160 test_bit(SYSCALL_WORK_BIT_##fl, ¤t_thread_info()->syscall_work)
161 #define clear_syscall_work(fl) \ argument
162 clear_bit(SYSCALL_WORK_BIT_##fl, ¤t_thread_info()->syscall_work)
164 #define set_task_syscall_work(t, fl) \ argument
165 set_bit(SYSCALL_WORK_BIT_##fl, &task_thread_info(t)->syscall_work)
166 #define test_task_syscall_work(t, fl) \ argument
167 test_bit(SYSCALL_WORK_BIT_##fl, &task_thread_info(t)->syscall_work)
168 #define clear_task_syscall_work(t, fl) \ argument
169 clear_bit(SYSCALL_WORK_BIT_##fl, &task_thread_info(t)->syscall_work)
173 #define set_syscall_work(fl) \ argument
174 set_ti_thread_flag(current_thread_info(), TIF_##fl)
175 #define test_syscall_work(fl) \ argument
176 test_ti_thread_flag(current_thread_info(), TIF_##fl)
177 #define clear_syscall_work(fl) \ argument
178 clear_ti_thread_flag(current_thread_info(), TIF_##fl)
180 #define set_task_syscall_work(t, fl) \ argument
181 set_ti_thread_flag(task_thread_info(t), TIF_##fl)
182 #define test_task_syscall_work(t, fl) \ argument
183 test_ti_thread_flag(task_thread_info(t), TIF_##fl)
184 #define clear_task_syscall_work(t, fl) \ argument
185 clear_ti_thread_flag(task_thread_info(t), TIF_##fl)