Lines Matching refs:op_data
105 struct plock_async_data *op_data; in dlm_posix_lock() local
130 op_data = kzalloc(sizeof(*op_data), GFP_NOFS); in dlm_posix_lock()
131 if (!op_data) { in dlm_posix_lock()
140 op_data->callback = fl->fl_lmops->lm_grant; in dlm_posix_lock()
141 locks_init_lock(&op_data->flc); in dlm_posix_lock()
142 locks_copy_lock(&op_data->flc, fl); in dlm_posix_lock()
143 op_data->fl = fl; in dlm_posix_lock()
144 op_data->file = file; in dlm_posix_lock()
146 op->data = op_data; in dlm_posix_lock()
204 struct plock_async_data *op_data = op->data; in dlm_plock_callback() local
214 file = op_data->file; in dlm_plock_callback()
215 flc = &op_data->flc; in dlm_plock_callback()
216 fl = op_data->fl; in dlm_plock_callback()
217 notify = op_data->callback; in dlm_plock_callback()