Lines Matching refs:comp_opts
90 void *buffer = NULL, *comp_opts;
100 comp_opts = ERR_PTR(-ENOMEM);
106 comp_opts = ERR_PTR(-ENOMEM);
114 comp_opts = ERR_PTR(length);
119 comp_opts = squashfs_comp_opts(msblk, buffer, length);
124 return comp_opts;
131 void *stream, *comp_opts = get_comp_opts(sb, flags);
133 if (IS_ERR(comp_opts))
134 return comp_opts;
136 stream = msblk->thread_ops->create(msblk, comp_opts);
138 kfree(comp_opts);