Lines Matching refs:op_state
131 enum orangefs_vfs_op_states op_state; member
158 #define set_op_state_waiting(op) ((op)->op_state = OP_VFS_STATE_WAITING)
159 #define set_op_state_inprogress(op) ((op)->op_state = OP_VFS_STATE_INPROGR)
160 #define set_op_state_given_up(op) ((op)->op_state = OP_VFS_STATE_GIVEN_UP)
163 op->op_state = OP_VFS_STATE_SERVICED; in set_op_state_serviced()
167 #define op_state_waiting(op) ((op)->op_state & OP_VFS_STATE_WAITING)
168 #define op_state_in_progress(op) ((op)->op_state & OP_VFS_STATE_INPROGR)
169 #define op_state_serviced(op) ((op)->op_state & OP_VFS_STATE_SERVICED)
170 #define op_state_purged(op) ((op)->op_state & OP_VFS_STATE_PURGED)
171 #define op_state_given_up(op) ((op)->op_state & OP_VFS_STATE_GIVEN_UP)
191 op->op_state |= OP_VFS_STATE_PURGED; in set_op_state_purged()