Lines Matching defs:op
143 #define set_op_state_waiting(op) ((op)->op_state = OP_VFS_STATE_WAITING) argument
144 #define set_op_state_inprogress(op) ((op)->op_state = OP_VFS_STATE_INPROGR) argument
145 #define set_op_state_given_up(op) ((op)->op_state = OP_VFS_STATE_GIVEN_UP) argument
146 static inline void set_op_state_serviced(struct orangefs_kernel_op_s *op) in set_op_state_serviced()
152 #define op_state_waiting(op) ((op)->op_state & OP_VFS_STATE_WAITING) argument
153 #define op_state_in_progress(op) ((op)->op_state & OP_VFS_STATE_INPROGR) argument
154 #define op_state_serviced(op) ((op)->op_state & OP_VFS_STATE_SERVICED) argument
155 #define op_state_purged(op) ((op)->op_state & OP_VFS_STATE_PURGED) argument
156 #define op_state_given_up(op) ((op)->op_state & OP_VFS_STATE_GIVEN_UP) argument
157 #define op_is_cancel(op) ((op)->upcall.type == ORANGEFS_VFS_OP_CANCEL) argument
162 static inline void put_cancel(struct orangefs_kernel_op_s *op) in put_cancel()
168 static inline void set_op_state_purged(struct orangefs_kernel_op_s *op) in set_op_state_purged()