Lines Matching refs:op_state
115 enum orangefs_vfs_op_states op_state; member
142 #define set_op_state_waiting(op) ((op)->op_state = OP_VFS_STATE_WAITING)
143 #define set_op_state_inprogress(op) ((op)->op_state = OP_VFS_STATE_INPROGR)
144 #define set_op_state_given_up(op) ((op)->op_state = OP_VFS_STATE_GIVEN_UP)
147 op->op_state = OP_VFS_STATE_SERVICED; in set_op_state_serviced()
151 #define op_state_waiting(op) ((op)->op_state & OP_VFS_STATE_WAITING)
152 #define op_state_in_progress(op) ((op)->op_state & OP_VFS_STATE_INPROGR)
153 #define op_state_serviced(op) ((op)->op_state & OP_VFS_STATE_SERVICED)
154 #define op_state_purged(op) ((op)->op_state & OP_VFS_STATE_PURGED)
155 #define op_state_given_up(op) ((op)->op_state & OP_VFS_STATE_GIVEN_UP)
175 op->op_state |= OP_VFS_STATE_PURGED; in set_op_state_purged()