This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Ganeti core".
The branch, master has been updated
via cdda271dc7e6ea7e358b9a13c636146e83e205c6 (commit)
via 51620a2f7034e057886d28a15bfef44d293011a0 (commit)
via f1e2d4f4f74a6ba4fbb44a831fc0553bcabe8980 (commit)
via 91f2d02ca44c1d361b76a63f7be4ed0c6e9001b9 (commit)
via 17daebc30ddb75bdf80fe4d992a3f6cb473ca080 (commit)
via 128f067936d0c8ae8667111466abfa564fd611d0 (commit)
via 7df61acefc92a61aacd1fde1dd52910d3f74ef93 (commit)
via fff9607c18b48f7178888ba68d59afcc22e7f8db (commit)
via 845868232610febc857960c09d2d1bc7e1f858df (commit)
via 7c58bd7e0f9fffb19faeb0dd1521922aaf223938 (commit)
via 1e25ff0a5b5f4f710ac6df8fa39bd31156409926 (commit)
via cb5e23ec030acbfcbb4db2b8fd1de20247f70b25 (commit)
via b4f2f739457afb517400be655d507bcde9b5808f (commit)
via 88bef78240d2b181cdbb48b2ffe9d4cf8054918e (commit)
via e63f1e7430964663231ba13526551fd061fd6e9c (commit)
via 0e22b420ccf588386d9ff571621f76989ba90cbf (commit)
via bd4d9db36ae674c6b21160b96c2d099325bcfe72 (commit)
via 5c501ba18a27c5a94e4ad58e5122a10294cec045 (commit)
via 1fb45c21ba66bfd1d1ce2b654937213723f542fe (commit)
via a80a860577dd9f14115869977ffb01802e8f426b (commit)
via c776bef5ff253d84f9e2ff29e8f97f3c14ce3f97 (commit)
via 35c3b67b0b63445cc85862e18c7fec733b72bcae (commit)
via 9e26a355496e75ab657813929293669c208f9873 (commit)
via 79050c53e475cd0e7c00017fe01905630fa67e50 (commit)
via 154455532bea1353c4a0089dc3836aa602913114 (commit)
via 4c513aab72ea05ac64cc2f83311533356054b001 (commit)
via 16f4bee6b722918fdd7bf924b2a6e177137274ad (commit)
via c5297eceaa322341f41c863c0b5664da29f63fcf (commit)
via 5a79d857e3c7baa489ecf2f2b9b1c646bd9f07e3 (commit)
via d5dc810fa57cad1acd4818d1e0d2f8b487ecb45c (commit)
via 9abb1e38c9b53946a5e6555b954d9d43b29290b8 (commit)
via b8c9f8c18b954dd7fdc64b0655eda2831c27c26e (commit)
via 6a4289167c8a4882a26f690e51b523f016a4803e (commit)
via d6056fc7062984ae783891a31ef29942959ba479 (commit)
via a813462d79f36546f12e688cda306e4e1ca90da7 (commit)
via f11d939684d2153ec5031707362bc3398d8cf5f8 (commit)
via 4da68dfe57593e7b6522629e4a2ff03797a381da (commit)
via cfca1546f65f9e8c4126171c7cf71083e008cdc7 (commit)
from dbe468125c5189513022ddf6639bae7b209ea0e5 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit cdda271dc7e6ea7e358b9a13c636146e83e205c6
Merge: dbe4681 51620a2
Author: Klaus Aehlig <[email protected]>
Date: Thu Dec 4 16:13:55 2014 +0100
Merge branch 'stable-2.13' into master
* stable-2.13
kvm: Delegate socket handling to monitor module
kvm: Use vhostfds obtained by OpenTap
hotplug: Retry VerifyHotplugCommand up to 5 times
Update hotplug design doc
qa: Re-enable NIC hotplug tests
qmp: Log qmp commands and responses
hotplug: Is not supported for QEMU < 1.7
hotplug: Remove unused code after refacoring
hotplug: Use QMP during HotDelDevice
hotplug: Use QMP during HotAddDevice
kvm: Use the new interface during instance start
monitor: Extend HotAddNic() for advanced features
kvm: Refactor _GetNetworkDeviceFeatures() helper
netdev: Refactor OpenTap for future use
hotplug: Use QMP in VerifyHotplugCommand
hotplug: Use QMP in VerifyHotplugSupport
monitor: Close socket fd if already connected
kvm: New _with_qmp decorator
qmp: Add Disk hotplugging related method
qmp: Add NIC hotplugging related methods
qmp: Helper methods for parsing query-pci outpu
qmp: Add helper methods to verify hotplug support
qmp: Add GetFd() wrapper around getfd command
qmp: Refactor of add-fd and remove-fd commands
utils: Introduce GetFreeSlot() function
kvm: Minor refactor of MonitorSocket
* stable-2.12
Check disk size ipolicy during "gnt-instance grow-disk"
Test function ComputeIPolicyDiskSizesViolation
Add a helper function for checking the disk size ipolicy
Add "ignore-ipolicy" option to gnt-instance grow-disk
Fix the installation instructions for the DRBD module
Update install docs - DRBD module parameters
* stable-2.11
(no changes)
* stable-2.10
Fix hlint warnings found by hlint 1.9.11
Only check header for non-generated files
Signed-off-by: Klaus Aehlig <[email protected]>
Reviewed-by: Niklas Hambuechen <[email protected]>
-----------------------------------------------------------------------
Summary of changes:
Makefile.am | 7 +-
doc/design-hotplug.rst | 29 +-
doc/install.rst | 6 +-
lib/client/gnt_instance.py | 7 +-
lib/cmdlib/common.py | 27 ++
lib/cmdlib/instance_storage.py | 26 ++
lib/hypervisor/hv_kvm/__init__.py | 318 +++++++------------
lib/hypervisor/hv_kvm/monitor.py | 333 +++++++++++++++++---
lib/hypervisor/hv_kvm/netdev.py | 35 ++-
lib/tools/burnin.py | 3 +-
lib/utils/__init__.py | 1 +
lib/{wconfd.py => utils/bitarrays.py} | 62 ++--
qa/qa_instance.py | 11 +-
src/Ganeti/OpCodes.hs | 1 +
test/hs/Test/Ganeti/OpCodes.hs | 2 +-
test/py/cmdlib/cmdlib_unittest.py | 99 ++++++
...ttest.py => ganeti.utils.bitarrays_unittest.py} | 46 ++--
17 files changed, 675 insertions(+), 338 deletions(-)
copy lib/{wconfd.py => utils/bitarrays.py} (56%)
copy test/py/{ganeti.utils.mlock_unittest.py =>
ganeti.utils.bitarrays_unittest.py} (62%)
hooks/post-receive
--
Ganeti core
--
---
You received this message because you are subscribed to the Google Groups
"ganeti-commits" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.