SHA256
1
0
forked from pool/xen

-Fix bnc#466899 - numa enabled xen fails to start/create vms

adjust_vcpuaffinity_more_cpu.patch 

- Update to changeset 21022 Xen 4.0.0 RC6.

- bnc#586510 - cpupool fixes
  cpu-pools-update.patch

OBS-URL: https://build.opensuse.org/package/show/Virtualization/xen?expand=0&rev=35
This commit is contained in:
Charles Arnold
2010-03-19 17:16:56 +00:00
committed by Git OBS Bridge
parent 5e5f163f43
commit a9bb3bc2f5
21 changed files with 866 additions and 141 deletions

View File

@@ -2,9 +2,9 @@ Index: xen-4.0.0-testing/tools/hotplug/Linux/network-bridge
===================================================================
--- xen-4.0.0-testing.orig/tools/hotplug/Linux/network-bridge
+++ xen-4.0.0-testing/tools/hotplug/Linux/network-bridge
@@ -241,6 +241,9 @@ op_start () {
return
fi
@@ -245,6 +245,9 @@ op_start () {
claim_lock "network-bridge"
+ local bonded=""
+ [ -e /sys/class/net/${netdev}/bonding ] && bonded="yes"
@@ -12,7 +12,7 @@ Index: xen-4.0.0-testing/tools/hotplug/Linux/network-bridge
vlans=$(find_active_vlans "${netdev}")
for vlan in $vlans ; do ifdown $vlan ; done
@@ -258,18 +261,32 @@ op_start () {
@@ -262,18 +265,32 @@ op_start () {
ip link set ${netdev} down
ip addr flush ${netdev}
fi