<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/NetworkManager.git/src/platform, branch th/cli-strsplit</title>
<subtitle>gitlab.freedesktop.org: NetworkManager/NetworkManager.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/NetworkManager.git/'/>
<entry>
<title>platform: fix TC to-string/hash/cmp functions to include the action</title>
<updated>2017-12-11T10:08:41+00:00</updated>
<author>
<name>Thomas Haller</name>
<email>thaller@redhat.com</email>
</author>
<published>2017-12-10T11:52:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/NetworkManager.git/commit/?id=fe3d7209e70944ec218d133cd66aa946e28c5a94'/>
<id>fe3d7209e70944ec218d133cd66aa946e28c5a94</id>
<content type='text'>
Also add a define NM_PLATFORM_ACTION_KIND_SIMPLE. It makes the
uses of "simple" grepable.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also add a define NM_PLATFORM_ACTION_KIND_SIMPLE. It makes the
uses of "simple" grepable.
</pre>
</div>
</content>
</entry>
<entry>
<title>platform: add support for traffic filters</title>
<updated>2017-12-11T10:08:41+00:00</updated>
<author>
<name>Lubomir Rintel</name>
<email>lkundrak@v3.sk</email>
</author>
<published>2017-11-15T19:36:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/NetworkManager.git/commit/?id=b0fd3ecbaf800c7c70104f0809b0f1e2fb18e1f8'/>
<id>b0fd3ecbaf800c7c70104f0809b0f1e2fb18e1f8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>platform/tests: tests qdisc caching behavior</title>
<updated>2017-12-11T09:52:22+00:00</updated>
<author>
<name>Lubomir Rintel</name>
<email>lkundrak@v3.sk</email>
</author>
<published>2017-11-15T19:36:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/NetworkManager.git/commit/?id=0b0fb045bcf65e55ae13bbc01dfd849e25e18014'/>
<id>0b0fb045bcf65e55ae13bbc01dfd849e25e18014</id>
<content type='text'>
Just the most rudimentary tests.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Just the most rudimentary tests.
</pre>
</div>
</content>
</entry>
<entry>
<title>platform: add support for queueing disciplines</title>
<updated>2017-12-11T09:52:22+00:00</updated>
<author>
<name>Lubomir Rintel</name>
<email>lkundrak@v3.sk</email>
</author>
<published>2017-11-15T19:36:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/NetworkManager.git/commit/?id=ff9f27eb1231a8a6cb6e0ca5f172da61da136e96'/>
<id>ff9f27eb1231a8a6cb6e0ca5f172da61da136e96</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>platform: add &lt;linux/tc_act/tc_defact.h&gt; header</title>
<updated>2017-12-11T09:50:43+00:00</updated>
<author>
<name>Thomas Haller</name>
<email>thaller@redhat.com</email>
</author>
<published>2017-12-11T08:42:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/NetworkManager.git/commit/?id=82befe3c409cd0459768642895d41ad50ca295cc'/>
<id>82befe3c409cd0459768642895d41ad50ca295cc</id>
<content type='text'>
We're going to need that one for TC filter &amp; action support.

&lt;linux/tc_act/tc_defact.h&gt; was moved to user-space API only in 2013
by commit 5bc3db5c9ca8407f52918b6504d3b27230defedc. Our travis CI currently
fails to build due to that.

Re-implement the header.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We're going to need that one for TC filter &amp; action support.

&lt;linux/tc_act/tc_defact.h&gt; was moved to user-space API only in 2013
by commit 5bc3db5c9ca8407f52918b6504d3b27230defedc. Our travis CI currently
fails to build due to that.

Re-implement the header.
</pre>
</div>
</content>
</entry>
<entry>
<title>platform: merge nm_platform_*_delete() delete functions</title>
<updated>2017-12-11T09:30:26+00:00</updated>
<author>
<name>Thomas Haller</name>
<email>thaller@redhat.com</email>
</author>
<published>2017-11-29T12:10:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/NetworkManager.git/commit/?id=7573594a2182d141e85b5fc1cb376b7e78a40853'/>
<id>7573594a2182d141e85b5fc1cb376b7e78a40853</id>
<content type='text'>
It only makes sense to call delete() with NMPObjects that
we obtained from the platform cache. Otherwise, if we didn't
get it from the cache in the first place, we wouldn't know
what to delete.

Hence, the input argument is (almost) always an NMPObject
in the first place. That is different from add(), where
we might create a new specific NMPlatform* instance on the
stack. For add() it makes slightly more sense to have different
functions depending on the type. For delete(), it doesn't.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It only makes sense to call delete() with NMPObjects that
we obtained from the platform cache. Otherwise, if we didn't
get it from the cache in the first place, we wouldn't know
what to delete.

Hence, the input argument is (almost) always an NMPObject
in the first place. That is different from add(), where
we might create a new specific NMPlatform* instance on the
stack. For add() it makes slightly more sense to have different
functions depending on the type. For delete(), it doesn't.
</pre>
</div>
</content>
</entry>
<entry>
<title>platform/nmp-object: (trivial) keep enum ordered by a numeric value</title>
<updated>2017-12-11T09:30:26+00:00</updated>
<author>
<name>Lubomir Rintel</name>
<email>lkundrak@v3.sk</email>
</author>
<published>2017-11-16T10:58:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/NetworkManager.git/commit/?id=44be0dfca7f1bc525bb56cbf36a6ed840ba42346'/>
<id>44be0dfca7f1bc525bb56cbf36a6ed840ba42346</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>platform/linux: stringify also NLMSG_* in logs</title>
<updated>2017-12-11T09:30:26+00:00</updated>
<author>
<name>Lubomir Rintel</name>
<email>lkundrak@v3.sk</email>
</author>
<published>2017-11-10T09:39:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/NetworkManager.git/commit/?id=ffe89f86e0116c49eb93cb2b19894f1715f66148'/>
<id>ffe89f86e0116c49eb93cb2b19894f1715f66148</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>platform/trivial: s/ADDRROUTE/OBJECT/ for the cache lookup</title>
<updated>2017-12-11T09:30:26+00:00</updated>
<author>
<name>Lubomir Rintel</name>
<email>lkundrak@v3.sk</email>
</author>
<published>2017-11-23T14:41:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/NetworkManager.git/commit/?id=93ac0e455b35269df8a053a86ca2a43cafa4d3ee'/>
<id>93ac0e455b35269df8a053a86ca2a43cafa4d3ee</id>
<content type='text'>
It's going to be useful for other objects that have a type (of course)
and an ifindex.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It's going to be useful for other objects that have a type (of course)
and an ifindex.
</pre>
</div>
</content>
</entry>
<entry>
<title>platform/tests: add a missing copyright notice</title>
<updated>2017-12-11T09:30:25+00:00</updated>
<author>
<name>Lubomir Rintel</name>
<email>lkundrak@v3.sk</email>
</author>
<published>2017-12-09T10:19:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/NetworkManager.git/commit/?id=0583f8bb3cb80e1216e2b42b957f38500ecb59bb'/>
<id>0583f8bb3cb80e1216e2b42b957f38500ecb59bb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
