ide: add IDEBus struct, cleanups
authorGerd Hoffmann <kraxel@redhat.com>
Thu, 20 Aug 2009 13:22:17 +0000 (15:22 +0200)
committerAnthony Liguori <aliguori@us.ibm.com>
Fri, 28 Aug 2009 01:43:33 +0000 (20:43 -0500)
commitbcbdc4d3542bf390ec6ab9463c160a65bb3bcfdb
tree6fc3c50cf6fb0eaabea064454dc266a153b8449a
parent286c2321ec52d978b389aff3094132995bf343d2
ide: add IDEBus struct, cleanups

The current IDE code uses an array of two IDEState structs to maintain
the IDE bus.  This patch adds a IDEBus to be used instead and does a
bunch of cleanups:

 * move ide bus state from IDEState to IDEBus.
 * drop a bunch of ugly pointer arithmetics to figure the active
   interface, explicitly save the interface number instead.
 * add helper functions to save/restore idebus state.

It also fixes a save/restore bug: loadvm allways stores the command in
the master's IDEState, even when it was saved from the slave.

Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
hw/ide.c