Gonglei 1d45a705fc qdev: Add cleanup logic in device_set_realized() to avoid resource leak
At present, this function doesn't have partial cleanup implemented,
which will cause resource leaks in some scenarios.

Example:

1. Assume that "dc->realize(dev, &local_err)" executes successful
   and local_err == NULL;
2. device hotplug in hotplug_handler_plug() executes but fails
   (it is prone to occur). Then local_err != NULL;
3. error_propagate(errp, local_err) and return. But the resources
   which have been allocated in dc->realize() will be leaked.
Simple backtrace:
  dc->realize()
   |->device_realize
            |->pci_qdev_init()
                |->do_pci_register_device()
                |->etc.

Add fuller cleanup logic which assures that function can
goto appropriate error label as local_err population is
detected at each relevant point.

Signed-off-by: Gonglei <arei.gonglei@huawei.com>
Reviewed-by: Peter Crosthwaite <peter.crosthwaite@xilinx.com>
Cc: qemu-stable@nongnu.org
Signed-off-by: Andreas Färber <afaerber@suse.de>
2014-09-04 19:15:54 +02:00
..
2014-08-29 15:00:29 +01:00
2014-08-15 19:12:48 +04:00
2013-12-24 18:02:18 +01:00
2014-09-02 22:38:16 +04:00
2014-09-04 13:33:53 +01:00
2014-08-29 10:46:57 +01:00
2014-09-02 22:38:16 +04:00
2014-09-02 22:38:16 +04:00
2014-09-02 22:38:16 +04:00
2014-08-14 13:22:00 +02:00
2014-09-04 12:20:41 +01:00
2014-06-27 13:48:22 +02:00
2014-06-30 21:13:30 +02:00
2014-09-02 16:07:31 +01:00
2014-09-01 09:25:32 +02:00
2014-09-04 12:20:41 +01:00
2014-06-30 21:13:30 +02:00
2014-09-02 22:38:16 +04:00
2014-08-25 00:16:06 +02:00
2014-08-29 12:52:14 +02:00
2014-08-18 12:06:21 +02:00