On 10/27/25 23:53, [email protected] wrote: > + /* store the dmabuf imported object with its params to > + * the restore list > + */ > + memcpy(&bo->params, ¶ms, sizeof(params));
Nit: using memcpy is unnecessary for structs, "bo->params = params" would look cleaner -- Best regards, Dmitry
