<feed xmlns='http://www.w3.org/2005/Atom'>
<title>aports/testing/openvswitch, branch 3.7-stable</title>
<subtitle>Main aports tree
</subtitle>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/'/>
<entry>
<title>main/openvswitch: move from testing</title>
<updated>2014-10-09T16:06:12+00:00</updated>
<author>
<name>Natanael Copa</name>
<email>ncopa@alpinelinux.org</email>
</author>
<published>2014-10-09T16:06:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=c2fa69955ac724d03c7c50f155e1a2dabc125c3c'/>
<id>c2fa69955ac724d03c7c50f155e1a2dabc125c3c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>testing/openvswitch: add ifupdown script and misc clean up</title>
<updated>2014-10-09T07:35:08+00:00</updated>
<author>
<name>Natanael Copa</name>
<email>ncopa@alpinelinux.org</email>
</author>
<published>2014-10-09T07:33:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=b5ab30544804ed97779d3f7b77d1e18fa8d8f690'/>
<id>b5ab30544804ed97779d3f7b77d1e18fa8d8f690</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>testing/openvswitch: fix creation/upgrade of database</title>
<updated>2014-10-06T14:12:21+00:00</updated>
<author>
<name>Natanael Copa</name>
<email>ncopa@alpinelinux.org</email>
</author>
<published>2014-10-06T14:12:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=21dbf20f52bed1e9ca112acc550013be68e5c17b'/>
<id>21dbf20f52bed1e9ca112acc550013be68e5c17b</id>
<content type='text'>
Instead of create/update database from install script we do it from
init.d script. This is becase:

 - we need /dev/urandom, which might not exist til until the mdev/udev
   service is started. We cannot assume those are running during
   install

 - in case of upgrade, if the service is running (which is normally is)
   we will get locking error because the db is in use.

We solve both those things by creating/upgrading the database before
starting it, from the init.d script.

fixes #3417
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Instead of create/update database from install script we do it from
init.d script. This is becase:

 - we need /dev/urandom, which might not exist til until the mdev/udev
   service is started. We cannot assume those are running during
   install

 - in case of upgrade, if the service is running (which is normally is)
   we will get locking error because the db is in use.

We solve both those things by creating/upgrading the database before
starting it, from the init.d script.

fixes #3417
</pre>
</div>
</content>
</entry>
<entry>
<title>testing/openvswitch: fix the stacksize patch</title>
<updated>2014-10-02T11:40:58+00:00</updated>
<author>
<name>Timo Teräs</name>
<email>timo.teras@iki.fi</email>
</author>
<published>2014-10-02T11:39:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=8b4939898592ffa22fb2ea436aa73258ada75fad'/>
<id>8b4939898592ffa22fb2ea436aa73258ada75fad</id>
<content type='text'>
Remember to pass the attributes to pthread_create(), duh.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Remember to pass the attributes to pthread_create(), duh.
</pre>
</div>
</content>
</entry>
<entry>
<title>testing/openvswitch: fix the stacksize patch</title>
<updated>2014-08-25T09:20:16+00:00</updated>
<author>
<name>Natanael Copa</name>
<email>ncopa@alpinelinux.org</email>
</author>
<published>2014-08-25T09:20:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=68a024577cfa745ca45ee422b6c4d8860ef57433'/>
<id>68a024577cfa745ca45ee422b6c4d8860ef57433</id>
<content type='text'>
we need call pthread_attr_destroy when done with the attr.
On musl its a no-op but we want be correct.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
we need call pthread_attr_destroy when done with the attr.
On musl its a no-op but we want be correct.
</pre>
</div>
</content>
</entry>
<entry>
<title>testing/openvswitch: increase stacksize</title>
<updated>2014-08-25T09:00:05+00:00</updated>
<author>
<name>Natanael Copa</name>
<email>ncopa@alpinelinux.org</email>
</author>
<published>2014-08-25T08:58:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=e3ba1a6715d351f382d64e7bd91652ecb2739de4'/>
<id>e3ba1a6715d351f382d64e7bd91652ecb2739de4</id>
<content type='text'>
Upstream are interested in adjusting the stacksize too, and make it
configurable. Set it hard to 1MB for now.

http://permalink.gmane.org/gmane.linux.network.openvswitch.general/5831

fixes #3309
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Upstream are interested in adjusting the stacksize too, and make it
configurable. Set it hard to 1MB for now.

http://permalink.gmane.org/gmane.linux.network.openvswitch.general/5831

fixes #3309
</pre>
</div>
</content>
</entry>
<entry>
<title>testing/openvswitch: add -dbg subpackage</title>
<updated>2014-08-25T07:23:19+00:00</updated>
<author>
<name>Natanael Copa</name>
<email>ncopa@alpinelinux.org</email>
</author>
<published>2014-08-25T07:23:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=693908d02b509d9703b177449740b930c046104b'/>
<id>693908d02b509d9703b177449740b930c046104b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>testing/openvswitch: upgrade to 2.3.0</title>
<updated>2014-08-15T10:46:58+00:00</updated>
<author>
<name>Carlo Landmeter</name>
<email>clandmeter@gmail.com</email>
</author>
<published>2014-08-15T10:46:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=457325442c60430be7661e0986c9c945f00d6379'/>
<id>457325442c60430be7661e0986c9c945f00d6379</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>testing/openvswitch: upgrade to 2.1.2</title>
<updated>2014-05-19T14:34:52+00:00</updated>
<author>
<name>Stuart Cardall</name>
<email>developer@it-offshore.co.uk</email>
</author>
<published>2014-05-10T22:28:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=673d0435589bff4e933d20d00dccbb5a6935212f'/>
<id>673d0435589bff4e933d20d00dccbb5a6935212f</id>
<content type='text'>
2.1.2 is a Bug Fix Release.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
2.1.2 is a Bug Fix Release.
</pre>
</div>
</content>
</entry>
<entry>
<title>/testing/openvswitch - version bump to 2.1.0</title>
<updated>2014-04-04T09:06:08+00:00</updated>
<author>
<name>Stuart Cardall</name>
<email>developer@it-offshore.co.uk</email>
</author>
<published>2014-04-03T23:28:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=263ad7e987648b9d45f59c3eec82310adcf4e80b'/>
<id>263ad7e987648b9d45f59c3eec82310adcf4e80b</id>
<content type='text'>
Openvswitch version bump to 2.1.0 (from 2.0.1)

Removed 8 byte patch no longer needed
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Openvswitch version bump to 2.1.0 (from 2.0.1)

Removed 8 byte patch no longer needed
</pre>
</div>
</content>
</entry>
</feed>
