Lines Matching refs:ecr
43 struct f2fs_completion_result *ecr = req->data; in f2fs_dir_crypt_complete() local
47 ecr->res = res; in f2fs_dir_crypt_complete()
48 complete(&ecr->completion); in f2fs_dir_crypt_complete()
74 DECLARE_F2FS_COMPLETION_RESULT(ecr); in f2fs_fname_encrypt()
111 f2fs_dir_crypt_complete, &ecr); in f2fs_fname_encrypt()
127 BUG_ON(req->base.data != &ecr); in f2fs_fname_encrypt()
128 wait_for_completion(&ecr.completion); in f2fs_fname_encrypt()
129 res = ecr.res; in f2fs_fname_encrypt()
152 DECLARE_F2FS_COMPLETION_RESULT(ecr); in f2fs_fname_decrypt()
172 f2fs_dir_crypt_complete, &ecr); in f2fs_fname_decrypt()
183 BUG_ON(req->base.data != &ecr); in f2fs_fname_decrypt()
184 wait_for_completion(&ecr.completion); in f2fs_fname_decrypt()
185 res = ecr.res; in f2fs_fname_decrypt()