vmstate: Add support for alias ID
commit4d2ffa08b601bdd40d9ccf225480c0a7e90ca078
authorJan Kiszka <jan.kiszka@siemens.com>
Sat, 15 May 2010 11:32:40 +0000 (15 13:32 +0200)
committerBlue Swirl <blauwirbel@gmail.com>
Sat, 15 May 2010 14:23:31 +0000 (15 14:23 +0000)
treec58243f040336217efae96032a3fb666d5bcae98
parentec86f3e1af558a9a6f8476b9c1903cb6f152b771
vmstate: Add support for alias ID

Some legacy users (mostly PC devices) of vmstate_register manage
instance IDs on their own, and that unfortunately in a way that is
incompatible with automatically generated ones. This so far prevents
switching those users to vmstates that are registered by qdev.

To establish a migration path, this patch introduces the concept of
alias IDs. They can be passed to an extended vmstate registration
service, and qdev provides a set service to be used during device init.
find_se will consider the alias in addition to the default ID. We can
then start generating the default ID automatically and writing it on
vmsave, thus converting that format without breaking support for upward
migration.

The user is required specify the highest vmstate version for which the
alias is required. Once this version falls behind the minimum required
for a specific vmstate, an assertion triggers to motivate cleaning up
the obsolete alias.

Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
hw/hw.h
hw/qdev.c
hw/qdev.h
savevm.c