Lines Matching refs:op_data
108 struct plock_async_data *op_data; in dlm_posix_lock() local
133 op_data = kzalloc(sizeof(*op_data), GFP_NOFS); in dlm_posix_lock()
134 if (!op_data) { in dlm_posix_lock()
143 op_data->callback = fl->fl_lmops->lm_grant; in dlm_posix_lock()
144 locks_init_lock(&op_data->flc); in dlm_posix_lock()
145 locks_copy_lock(&op_data->flc, fl); in dlm_posix_lock()
146 op_data->fl = fl; in dlm_posix_lock()
147 op_data->file = file; in dlm_posix_lock()
149 op->data = op_data; in dlm_posix_lock()
201 struct plock_async_data *op_data = op->data; in dlm_plock_callback() local
211 file = op_data->file; in dlm_plock_callback()
212 flc = &op_data->flc; in dlm_plock_callback()
213 fl = op_data->fl; in dlm_plock_callback()
214 notify = op_data->callback; in dlm_plock_callback()