Lines Matching refs:op_data
125 struct plock_async_data *op_data; in dlm_posix_lock() local
150 op_data = kzalloc(sizeof(*op_data), GFP_NOFS); in dlm_posix_lock()
151 if (!op_data) { in dlm_posix_lock()
160 op_data->callback = fl->fl_lmops->lm_grant; in dlm_posix_lock()
161 locks_init_lock(&op_data->flc); in dlm_posix_lock()
162 locks_copy_lock(&op_data->flc, fl); in dlm_posix_lock()
163 op_data->fl = fl; in dlm_posix_lock()
164 op_data->file = file; in dlm_posix_lock()
166 op->data = op_data; in dlm_posix_lock()
244 struct plock_async_data *op_data = op->data; in dlm_plock_callback() local
254 file = op_data->file; in dlm_plock_callback()
255 flc = &op_data->flc; in dlm_plock_callback()
256 fl = op_data->fl; in dlm_plock_callback()
257 notify = op_data->callback; in dlm_plock_callback()