Lines Matching refs:t
137 #define RPC_IS_ASYNC(t) ((t)->tk_flags & RPC_TASK_ASYNC) argument
138 #define RPC_IS_SWAPPER(t) ((t)->tk_flags & RPC_TASK_SWAPPER) argument
139 #define RPC_IS_SOFT(t) ((t)->tk_flags & (RPC_TASK_SOFT|RPC_TASK_TIMEOUT)) argument
140 #define RPC_IS_SOFTCONN(t) ((t)->tk_flags & RPC_TASK_SOFTCONN) argument
141 #define RPC_WAS_SENT(t) ((t)->tk_flags & RPC_TASK_SENT) argument
142 #define RPC_IS_MOVEABLE(t) ((t)->tk_flags & RPC_TASK_MOVEABLE) argument
152 #define RPC_IS_RUNNING(t) test_bit(RPC_TASK_RUNNING, &(t)->tk_runstate) argument
153 #define rpc_set_running(t) set_bit(RPC_TASK_RUNNING, &(t)->tk_runstate) argument
154 #define rpc_test_and_set_running(t) \ argument
155 test_and_set_bit(RPC_TASK_RUNNING, &(t)->tk_runstate)
156 #define rpc_clear_running(t) \ argument
159 clear_bit(RPC_TASK_RUNNING, &(t)->tk_runstate); \
163 #define RPC_IS_QUEUED(t) test_bit(RPC_TASK_QUEUED, &(t)->tk_runstate) argument
164 #define rpc_set_queued(t) set_bit(RPC_TASK_QUEUED, &(t)->tk_runstate) argument
165 #define rpc_clear_queued(t) \ argument
168 clear_bit(RPC_TASK_QUEUED, &(t)->tk_runstate); \
172 #define RPC_IS_ACTIVATED(t) test_bit(RPC_TASK_ACTIVE, &(t)->tk_runstate) argument
174 #define RPC_SIGNALLED(t) test_bit(RPC_TASK_SIGNALLED, &(t)->tk_runstate) argument