mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-28 04:42:14 +01:00
** This is a clean patch against Master ** Version bump to 2.0.1 Init scripts improved to start ovsdb-server & ovs-vswitchd before networking comes up. ovs-dbserver is now a hard dependency for ovs-vswitchd to keep them in sync & prevent a hanging boot process. LXC Guests now autostart correctly on reboots. MACVLAN interfaces work out of the box with LXC. To use VETH interfaces with LXC do *NOT* set 'lxc.network.link' in /var/lib/lxc/guest/config - the VETH must be added manually with: ovs-vsctl --may-exist add-br $BRIDGE ovs-vsctl --may-exist add-port $BRIDGE $PORT I removed ovs-controller as it's not needed to run openvswitch & is no longer part of the current git. ovs-monitor will be removed from a default installation in the next release as it is poorly maintained & nobody really uses it. I've tested openvswitch 2.0.1 & have it bridging VETH across NAT & bridging MACVLAN interfaces internally without any problems. Bonding should also work.
32 lines
1.1 KiB
Diff
32 lines
1.1 KiB
Diff
--- openvswitch-2.0.0/tests/test-atomic.c
|
|
+++ openvswitch-2.0.0.alpine/tests/test-atomic.c
|
|
@@ -83,22 +83,26 @@
|
|
TEST_ATOMIC_TYPE(atomic_uint, unsigned int);
|
|
TEST_ATOMIC_TYPE(atomic_long, long int);
|
|
TEST_ATOMIC_TYPE(atomic_ulong, unsigned long int);
|
|
+#if 0
|
|
TEST_ATOMIC_TYPE(atomic_llong, long long int);
|
|
TEST_ATOMIC_TYPE(atomic_ullong, unsigned long long int);
|
|
+#endif
|
|
TEST_ATOMIC_TYPE(atomic_size_t, size_t);
|
|
TEST_ATOMIC_TYPE(atomic_ptrdiff_t, ptrdiff_t);
|
|
+#if 0
|
|
TEST_ATOMIC_TYPE(atomic_intmax_t, intmax_t);
|
|
TEST_ATOMIC_TYPE(atomic_uintmax_t, uintmax_t);
|
|
+#endif
|
|
TEST_ATOMIC_TYPE(atomic_intptr_t, intptr_t);
|
|
TEST_ATOMIC_TYPE(atomic_uintptr_t, uintptr_t);
|
|
- TEST_ATOMIC_TYPE(atomic_uint8_t, uint8_t);
|
|
- TEST_ATOMIC_TYPE(atomic_int8_t, int8_t);
|
|
TEST_ATOMIC_TYPE(atomic_uint16_t, uint16_t);
|
|
TEST_ATOMIC_TYPE(atomic_int16_t, int16_t);
|
|
TEST_ATOMIC_TYPE(atomic_uint32_t, uint32_t);
|
|
TEST_ATOMIC_TYPE(atomic_int32_t, int32_t);
|
|
+#if 0
|
|
TEST_ATOMIC_TYPE(atomic_uint64_t, uint64_t);
|
|
TEST_ATOMIC_TYPE(atomic_int64_t, int64_t);
|
|
+#endif
|
|
|
|
test_atomic_flag();
|
|
|