<feed xmlns='http://www.w3.org/2005/Atom'>
<title>uClibc-alpine/libc/inet/rpc, branch master</title>
<subtitle>Where we track our uclibc patches
</subtitle>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/uClibc-alpine/'/>
<entry>
<title>sunrpc: fix spurious fall-through</title>
<updated>2011-03-09T14:34:28+00:00</updated>
<author>
<name>Mark Salter</name>
<email>msalter@redhat.com</email>
</author>
<published>2010-09-09T18:40:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/uClibc-alpine/commit/?id=cb96f5c1b34a36864b0da389599b95408cc9b4a2'/>
<id>cb96f5c1b34a36864b0da389599b95408cc9b4a2</id>
<content type='text'>
Fix spurious fall-through.

Signed-off-by: Mark Salter &lt;msalter@redhat.com&gt;
Signed-off-by: Bernd Schmidt &lt;bernds@codesourcery.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix spurious fall-through.

Signed-off-by: Mark Salter &lt;msalter@redhat.com&gt;
Signed-off-by: Bernd Schmidt &lt;bernds@codesourcery.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>simplify ffs* code</title>
<updated>2011-03-06T16:08:38+00:00</updated>
<author>
<name>Peter S. Mazinger</name>
<email>ps.m@gmx.net</email>
</author>
<published>2011-03-06T16:08:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/uClibc-alpine/commit/?id=cda3f2658389330999ad35390ed2676a7dc37325'/>
<id>cda3f2658389330999ad35390ed2676a7dc37325</id>
<content type='text'>
Remove __libc_ffs*, unneeded

Signed-off-by: Peter S. Mazinger &lt;ps.m@gmx.net&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Remove __libc_ffs*, unneeded

Signed-off-by: Peter S. Mazinger &lt;ps.m@gmx.net&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Implement ffsl and ffsll.</title>
<updated>2011-03-05T18:48:10+00:00</updated>
<author>
<name>Bernd Schmidt</name>
<email>bernds@codesourcery.com</email>
</author>
<published>2011-02-22T23:14:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/uClibc-alpine/commit/?id=2a19c1339d6bf46fe0f90fbd4e8dca6646d111ed'/>
<id>2a19c1339d6bf46fe0f90fbd4e8dca6646d111ed</id>
<content type='text'>
This imports and adapts ffsll.c from glibc. The same mechanism as in glibc
is used to choose between ffs and ffsll to implement ffsl. The single user
in libc is changed to use the hidden version __libc_ffs.

Signed-off-by: Bernd Schmidt &lt;bernds@codesourcery.com&gt;
Acked-by: Bernhard Reutner-Fischer &lt;aldot@uclibc.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This imports and adapts ffsll.c from glibc. The same mechanism as in glibc
is used to choose between ffs and ffsll to implement ffsl. The single user
in libc is changed to use the hidden version __libc_ffs.

Signed-off-by: Bernd Schmidt &lt;bernds@codesourcery.com&gt;
Acked-by: Bernhard Reutner-Fischer &lt;aldot@uclibc.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>guard IPv6 stuff</title>
<updated>2011-03-03T17:22:48+00:00</updated>
<author>
<name>Peter S. Mazinger</name>
<email>ps.m@gmx.net</email>
</author>
<published>2011-02-26T17:45:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/uClibc-alpine/commit/?id=9fa4711e364e9aa779d6b8d12220bbb63dbb1f3d'/>
<id>9fa4711e364e9aa779d6b8d12220bbb63dbb1f3d</id>
<content type='text'>
disable IPv6 related stuff if feature is disabled.

Signed-off-by: Peter S. Mazinger &lt;ps.m@gmx.net&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
disable IPv6 related stuff if feature is disabled.

Signed-off-by: Peter S. Mazinger &lt;ps.m@gmx.net&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>new helper funcs for alloca/malloc with mmu/nommu</title>
<updated>2010-07-27T18:33:42+00:00</updated>
<author>
<name>Mike Frysinger</name>
<email>vapier@gentoo.org</email>
</author>
<published>2010-07-27T05:48:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/uClibc-alpine/commit/?id=fd826c72f8362d054c2d0064bff2b0830d2f29d1'/>
<id>fd826c72f8362d054c2d0064bff2b0830d2f29d1</id>
<content type='text'>
The rpc rcmd code has some ugly ifdef mazes to handle mmu/nommu differences
just to select alloca or malloc.  Unify those with some helper macros in a
new header, and then convert the rcmd code over to it.

This is all geared towards fixing the getdents helper functions which only
use alloca() atm.  Now that we have helper functions, convert the getdents
functions over too.

Signed-off-by: Mike Frysinger &lt;vapier@gentoo.org&gt;
Reviewed-by: Steven J. Magnani &lt;steve@digidescorp.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The rpc rcmd code has some ugly ifdef mazes to handle mmu/nommu differences
just to select alloca or malloc.  Unify those with some helper macros in a
new header, and then convert the rcmd code over to it.

This is all geared towards fixing the getdents helper functions which only
use alloca() atm.  Now that we have helper functions, convert the getdents
functions over too.

Signed-off-by: Mike Frysinger &lt;vapier@gentoo.org&gt;
Reviewed-by: Steven J. Magnani &lt;steve@digidescorp.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>libc: Remove compiler warning due to old-style function definition</title>
<updated>2010-04-25T08:14:48+00:00</updated>
<author>
<name>Carmelo Amoroso</name>
<email>carmelo.amoroso@st.com</email>
</author>
<published>2010-04-25T08:14:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/uClibc-alpine/commit/?id=f71bcf0f42bf6926477cc3e3faa006cf74e59c45'/>
<id>f71bcf0f42bf6926477cc3e3faa006cf74e59c45</id>
<content type='text'>
Signed-off-by: Carmelo Amoroso &lt;carmelo.amoroso@st.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Carmelo Amoroso &lt;carmelo.amoroso@st.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>prettify make clean</title>
<updated>2010-03-25T14:39:02+00:00</updated>
<author>
<name>Bernhard Reutner-Fischer</name>
<email>rep.dot.nop@gmail.com</email>
</author>
<published>2010-03-25T14:17:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/uClibc-alpine/commit/?id=abdbaa897b3d7b5b72c8521a38aa84cada242837'/>
<id>abdbaa897b3d7b5b72c8521a38aa84cada242837</id>
<content type='text'>
Signed-off-by: Bernhard Reutner-Fischer &lt;rep.dot.nop@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Bernhard Reutner-Fischer &lt;rep.dot.nop@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>fix typo in version mismatch msg</title>
<updated>2010-01-21T09:36:13+00:00</updated>
<author>
<name>Bernhard Reutner-Fischer</name>
<email>rep.dot.nop@gmail.com</email>
</author>
<published>2010-01-21T09:36:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/uClibc-alpine/commit/?id=0d30e6a7666c3cab001e7343a71bfa2d3e5abbd4'/>
<id>0d30e6a7666c3cab001e7343a71bfa2d3e5abbd4</id>
<content type='text'>
Signed-off-by: Bernhard Reutner-Fischer &lt;rep.dot.nop@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Bernhard Reutner-Fischer &lt;rep.dot.nop@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Include bits/libc-lock.h to get __libc_once_define</title>
<updated>2009-12-11T17:46:27+00:00</updated>
<author>
<name>Khem Raj</name>
<email>raj.khem@gmail.com</email>
</author>
<published>2009-12-11T17:40:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/uClibc-alpine/commit/?id=a92f0c261364774d4f844300dd2c3b11e9deaf02'/>
<id>a92f0c261364774d4f844300dd2c3b11e9deaf02</id>
<content type='text'>
Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
Acked-by: Austin Foxley &lt;austinf@cetoncorp.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
Acked-by: Austin Foxley &lt;austinf@cetoncorp.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>convert // comments to /**/; remove empty #if/#endif pairs. no code changes</title>
<updated>2009-09-18T21:07:26+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2009-09-18T21:07:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/uClibc-alpine/commit/?id=93f8a2e834eed69aff7ef3be8c2baba14bab0658'/>
<id>93f8a2e834eed69aff7ef3be8c2baba14bab0658</id>
<content type='text'>
Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</pre>
</div>
</content>
</entry>
</feed>
