|
@@ -105,8 +105,16 @@ enum orangefs_vfs_op_states {
|
|
|
|
|
|
#define set_op_state_waiting(op) ((op)->op_state = OP_VFS_STATE_WAITING)
|
|
|
#define set_op_state_inprogress(op) ((op)->op_state = OP_VFS_STATE_INPROGR)
|
|
|
-#define set_op_state_serviced(op) ((op)->op_state = OP_VFS_STATE_SERVICED)
|
|
|
-#define set_op_state_purged(op) ((op)->op_state |= OP_VFS_STATE_PURGED)
|
|
|
+static inline void set_op_state_serviced(struct orangefs_kernel_op_s *op)
|
|
|
+{
|
|
|
+ op->op_state = OP_VFS_STATE_SERVICED;
|
|
|
+ wake_up_interruptible(&op->waitq);
|
|
|
+}
|
|
|
+static inline void set_op_state_purged(struct orangefs_kernel_op_s *op)
|
|
|
+{
|
|
|
+ op->op_state |= OP_VFS_STATE_PURGED;
|
|
|
+ wake_up_interruptible(&op->waitq);
|
|
|
+}
|
|
|
|
|
|
#define op_state_waiting(op) ((op)->op_state & OP_VFS_STATE_WAITING)
|
|
|
#define op_state_in_progress(op) ((op)->op_state & OP_VFS_STATE_INPROGR)
|