On Fri 10 Nov 2017 09:31:11 PM CET, Max Reitz wrote: > +static inline const char *qcow2_cache_get_name(BDRVQcow2State *s, Qcow2Cache > *c) > +{ > + if (c == s->refcount_block_cache) { > + return "refcount block"; > + } else if (c == s->l2_table_cache) { > + return "L2 table"; > + } else { > + /* Do not abort, because this is not critical */ > + return "unknown"; > + } > +}
Why is an unknown cache not critical? Berto