<feed xmlns='http://www.w3.org/2005/Atom'>
<title>android_external_iproute2/ip/ipaddrlabel.c, branch stable/cm-12.1-YOG4P</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.
</subtitle>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/LineageOS/android_external_iproute2/'/>
<entry>
<title>libnetlink: remove unused junk callback</title>
<updated>2011-12-28T18:37:12+00:00</updated>
<author>
<name>Stephen Hemminger</name>
<email>shemminger@vyatta.com</email>
</author>
<published>2011-12-28T18:37:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/LineageOS/android_external_iproute2/commit/?id=cd70f3f522e04b4d2fa80ae10292379bf223a53b'/>
<id>cd70f3f522e04b4d2fa80ae10292379bf223a53b</id>
<content type='text'>
Both rtnl_talk and rtnl_dump had a callback for handling portions
of netlink message that do not match the correct pid or seq.
But this callback was never used by any part of iproute2 so remove
it.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Both rtnl_talk and rtnl_dump had a callback for handling portions
of netlink message that do not match the correct pid or seq.
But this callback was never used by any part of iproute2 so remove
it.
</pre>
</div>
</content>
</entry>
<entry>
<title>ip: addrlabel fix set never used warning</title>
<updated>2011-06-20T21:33:55+00:00</updated>
<author>
<name>Stephen Hemminger</name>
<email>shemminger@vyatta.com</email>
</author>
<published>2011-06-20T21:33:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/LineageOS/android_external_iproute2/commit/?id=cdf3585224fe8042582c27825eb29763d7dedcf9'/>
<id>cdf3585224fe8042582c27825eb29763d7dedcf9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>iproute2: fix addrlabel interface names handling</title>
<updated>2010-05-13T16:23:46+00:00</updated>
<author>
<name>Florian Westphal</name>
<email>fw@strlen.de</email>
</author>
<published>2010-05-07T11:31:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/LineageOS/android_external_iproute2/commit/?id=24abb62ee737f98b4b5a7afc8b817cdb6eb53a46'/>
<id>24abb62ee737f98b4b5a7afc8b817cdb6eb53a46</id>
<content type='text'>
ip addrlabel outputs if%d names due to missing init call:
$ ip addrlabel s
prefix a::42/128 dev if4 label 1000

Also, ip did not accept "if%d" interfaces on input.

Signed-off-by: Florian Westphal &lt;fw@strlen.de&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
ip addrlabel outputs if%d names due to missing init call:
$ ip addrlabel s
prefix a::42/128 dev if4 label 1000

Also, ip did not accept "if%d" interfaces on input.

Signed-off-by: Florian Westphal &lt;fw@strlen.de&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Display Correct Error For Addrlabel Info</title>
<updated>2008-07-25T20:36:25+00:00</updated>
<author>
<name>Varun Chandramohan</name>
<email>varunc@linux.vnet.ibm.com</email>
</author>
<published>2008-06-02T08:25:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/LineageOS/android_external_iproute2/commit/?id=6579feeac4ccc0f087fa402486b3b2fcbcabc77f'/>
<id>6579feeac4ccc0f087fa402486b3b2fcbcabc77f</id>
<content type='text'>
The command "ip addrlabel add/del" displays incorrect error message when provided with insufficient inputs. This patch fixes it in par with "ip addr add/del".

Currently:
# ./ip addrlabel add
RTNETLINK answers: Numerical result out of range

# ./ip addr add
Not enough information: "dev" argument is required.

After patch:
# ./ip addrlabel add
Not enough information: "prefix" argument is required.

Signed-off-by: Varun Chandramohan &lt;varunc@linux.vnet.ibm.com&gt;
Signed-off-by: Stephen Hemminger &lt;stephen.hemminger@vyatta.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The command "ip addrlabel add/del" displays incorrect error message when provided with insufficient inputs. This patch fixes it in par with "ip addr add/del".

Currently:
# ./ip addrlabel add
RTNETLINK answers: Numerical result out of range

# ./ip addr add
Not enough information: "dev" argument is required.

After patch:
# ./ip addrlabel add
Not enough information: "prefix" argument is required.

Signed-off-by: Varun Chandramohan &lt;varunc@linux.vnet.ibm.com&gt;
Signed-off-by: Stephen Hemminger &lt;stephen.hemminger@vyatta.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Add missing prefix bit length for addrlabel</title>
<updated>2008-02-14T16:30:25+00:00</updated>
<author>
<name>Varun Chandramohan</name>
<email>varunc@linux.vnet.ibm.com</email>
</author>
<published>2008-02-14T09:51:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/LineageOS/android_external_iproute2/commit/?id=3490740b98b83da556c593f63292993e6155b81b'/>
<id>3490740b98b83da556c593f63292993e6155b81b</id>
<content type='text'>
The prefix bit lenght value was not updated, resulting in incorrect addrlabel
entry. This patch fixes that issue.

Signed-off-by: Varun Chandramohan &lt;varunc@linux.vnet.ibm.com&gt;
Signed-off-by: Stephen Hemminger &lt;stephen.hemminger@vyatta.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The prefix bit lenght value was not updated, resulting in incorrect addrlabel
entry. This patch fixes that issue.

Signed-off-by: Varun Chandramohan &lt;varunc@linux.vnet.ibm.com&gt;
Signed-off-by: Stephen Hemminger &lt;stephen.hemminger@vyatta.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Add addrlabel sub-command.</title>
<updated>2008-02-13T20:36:57+00:00</updated>
<author>
<name>YOSHIFUJI Hideaki / 吉藤英明</name>
<email>yoshfuji@linux-ipv6.org</email>
</author>
<published>2008-02-13T16:20:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/LineageOS/android_external_iproute2/commit/?id=4759758c05b3bda53b743a1c3238f1479bb61b43'/>
<id>4759758c05b3bda53b743a1c3238f1479bb61b43</id>
<content type='text'>
Signed-off-by: YOSHIFUJI Hideaki &lt;yoshfuji@linux-ipv6.org&gt;
Signed-off-by: Stephen Hemminger &lt;stephen.hemminger@vyatta.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: YOSHIFUJI Hideaki &lt;yoshfuji@linux-ipv6.org&gt;
Signed-off-by: Stephen Hemminger &lt;stephen.hemminger@vyatta.com&gt;
</pre>
</div>
</content>
</entry>
</feed>
