Lines Matching refs:comp_opts
91 void *buffer = NULL, *comp_opts;
101 comp_opts = ERR_PTR(-ENOMEM);
107 comp_opts = ERR_PTR(-ENOMEM);
115 comp_opts = ERR_PTR(length);
120 comp_opts = squashfs_comp_opts(msblk, buffer, length);
125 return comp_opts;
132 void *stream, *comp_opts = get_comp_opts(sb, flags);
134 if (IS_ERR(comp_opts))
135 return comp_opts;
137 stream = squashfs_decompressor_create(msblk, comp_opts);
139 kfree(comp_opts);