Lines Matching refs:op_data
125 struct plock_async_data *op_data; in dlm_posix_lock() local
151 op_data = kzalloc(sizeof(*op_data), GFP_NOFS); in dlm_posix_lock()
152 if (!op_data) { in dlm_posix_lock()
158 op_data->callback = fl->fl_lmops->lm_grant; in dlm_posix_lock()
159 locks_init_lock(&op_data->flc); in dlm_posix_lock()
160 locks_copy_lock(&op_data->flc, fl); in dlm_posix_lock()
161 op_data->fl = fl; in dlm_posix_lock()
162 op_data->file = file; in dlm_posix_lock()
164 op->data = op_data; in dlm_posix_lock()
240 struct plock_async_data *op_data = op->data; in dlm_plock_callback() local
250 file = op_data->file; in dlm_plock_callback()
251 flc = &op_data->flc; in dlm_plock_callback()
252 fl = op_data->fl; in dlm_plock_callback()
253 notify = op_data->callback; in dlm_plock_callback()