Lines Matching refs:fops
69 const struct kexec_file_ops * const *fops;
72 for (fops = &kexec_file_loaders[0]; *fops && (*fops)->probe; ++fops) {
73 ret = (*fops)->probe(buf, buf_len);
75 image->fops = *fops;
85 if (!image->fops || !image->fops->load)
88 return image->fops->load(image, image->kernel_buf,
96 if (!image->fops || !image->fops->cleanup)
99 return image->fops->cleanup(image->image_loader_data);
166 if (!image->fops || !image->fops->verify_sig) {
171 return image->fops->verify_sig(buf, buf_len);