Il 15/06/2012 19:45, Eric Blake ha scritto: >> > +++ b/qapi-schema.json >> > @@ -429,7 +429,7 @@ >> > # >> > # Since: 1.0 >> > ## >> > -{ 'enum': 'BlockDeviceIoStatus', 'data': [ 'ok', 'failed', 'nospace' ] } >> > +{ 'enum': 'BlockDeviceIoStatus', 'data': [ 'ok', 'nospace', 'failed' ] } > Isn't this an ABI change? Do we have any generated or client code where > 'failed' mapping to 1 (pre-patch) vs. 2 (post-patch) would cause us > back-compat grief?
No, we do not generate any code (yet?) for consumption outside QEMU itself. In particular we do not install any generated header nor do we use the generated enums in a (static or shared) library. Paolo