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