]> git.ipfire.org Git - thirdparty/libvirt.git/commit
network: fix connections count in case of allocate failure
authorLaine Stump <laine@laine.org>
Mon, 4 Nov 2013 15:01:17 +0000 (17:01 +0200)
committerLaine Stump <laine@laine.org>
Wed, 6 Nov 2013 11:14:57 +0000 (13:14 +0200)
commitb4e0299d4ff059c8707a760b7ec2063ccd57cc21
tree9fddbcd233945e691d10abf6da94d104227897b1
parent21685c955e546676a5b2a01f7b788d222e0ee0f5
network: fix connections count in case of allocate failure

This resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1020135

If networkAllocateActualDevice() had failed due to a pool of hostdev
or direct devices being depleted, the calling function could still
call networkReleaseActualDevice() as part of its cleanup, and that
function would then unconditionally decrement the connections count
for the network, even though it hadn't been incremented (due to
failure of allocate). This *was* necessary because the .actual member
of the netdef was allocated with a "lazy" algorithm, only being
created if there was a need to store data there (e.g. if a device was
allocated from a pool, or bandwidth was allocated for the device), so
there was no simple way for networkReleaseActualDevice() to tell if
something really had been allocated (i.e. if "connections++" had been
executed).

This patch changes networkAllocateDevice() to *always* allocate an
actual device for any netdef of type='network', even if it isn't
needed for any other reason. This has no ill effects anywhere else in
the code (except for using a small amount of memory), and
networkReleaseActualDevice() can then determine if there was a
previous successful allocate by checking for .actual != NULL (if not,
it skips the "connections--").
src/network/bridge_driver.c