/* * Immutable driver (backend) parameters. The driver may attach private * data to it (e.g. driver representation of the dictionary, etc.). * * This data is kept per-comp and is shared among execution contexts.
*/ struct zcomp_params { void *dict;
size_t dict_sz;
s32 level; union { struct deflate_params deflate;
};
void *drv_data;
};
/* * Run-time driver context - scratch buffers, etc. It is modified during * request execution (compression/decompression), cannot be shared, so * it's in per-CPU area.
*/ struct zcomp_ctx { void *context;
};
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.