Re: [PATCH] create a kstrdup library function

2005-04-13 Thread Paulo Marques
Paulo Marques wrote: Hi, This patch creates a new kstrdup library function and changes the "local" implementations in several places to use this function. Arkadiusz Miskiewicz reported that this breaks compilation under PPC. Apparently, PPC builds a bootloader that links against lib.a but doesn't

Re: [PATCH] create a kstrdup library function

2005-04-13 Thread Paulo Marques
Paulo Marques wrote: Hi, This patch creates a new kstrdup library function and changes the local implementations in several places to use this function. Arkadiusz Miskiewicz reported that this breaks compilation under PPC. Apparently, PPC builds a bootloader that links against lib.a but doesn't

Re: [PATCH] create a kstrdup library function

2005-04-05 Thread Paulo Marques
Paulo Marques wrote: Adrian Bunk wrote: This patch contains a small bug: [...] Andrew, do you want me to send a new patch with this fixed, so you can back out the current one and apply the new one, or can you simply merge this one from Adrian? Never mind, I can see the fix is already in rc2-mm1.

Re: [PATCH] create a kstrdup library function

2005-04-05 Thread Paulo Marques
Adrian Bunk wrote: This patch contains a small bug: <-- snip --> ... WARNING: /lib/modules/2.6.12-rc1-mm4/kernel/net/sunrpc/sunrpc.ko needs unknown symbol kstrdup WARNING: /lib/modules/2.6.12-rc1-mm4/kernel/net/ipv6/ipv6.ko needs unknown symbol kstrdup WARNING:

Re: [PATCH] create a kstrdup library function

2005-04-05 Thread Paulo Marques
Adrian Bunk wrote: This patch contains a small bug: -- snip -- ... WARNING: /lib/modules/2.6.12-rc1-mm4/kernel/net/sunrpc/sunrpc.ko needs unknown symbol kstrdup WARNING: /lib/modules/2.6.12-rc1-mm4/kernel/net/ipv6/ipv6.ko needs unknown symbol kstrdup WARNING:

Re: [PATCH] create a kstrdup library function

2005-04-05 Thread Paulo Marques
Paulo Marques wrote: Adrian Bunk wrote: This patch contains a small bug: [...] Andrew, do you want me to send a new patch with this fixed, so you can back out the current one and apply the new one, or can you simply merge this one from Adrian? Never mind, I can see the fix is already in rc2-mm1.

Re: [PATCH] create a kstrdup library function

2005-04-04 Thread Andres Salomon
On Mon, 04 Apr 2005 20:44:17 +0100, Paulo Marques wrote: > > Hi, > > This patch creates a new kstrdup library function and changes the > "local" implementations in several places to use this function. > > This is just a cleanup to allow reusing the strdup code, and to prevent > bugs in

Re: [PATCH] create a kstrdup library function

2005-04-04 Thread Adrian Bunk
This patch contains a small bug: <-- snip --> ... WARNING: /lib/modules/2.6.12-rc1-mm4/kernel/net/sunrpc/sunrpc.ko needs unknown symbol kstrdup WARNING: /lib/modules/2.6.12-rc1-mm4/kernel/net/ipv6/ipv6.ko needs unknown symbol kstrdup WARNING:

[PATCH] create a kstrdup library function

2005-04-04 Thread Paulo Marques
Hi, This patch creates a new kstrdup library function and changes the "local" implementations in several places to use this function. This is just a cleanup to allow reusing the strdup code, and to prevent bugs in future duplications of strdup. Most of the changes come from the sound and net

[PATCH] create a kstrdup library function

2005-04-04 Thread Paulo Marques
Hi, This patch creates a new kstrdup library function and changes the local implementations in several places to use this function. This is just a cleanup to allow reusing the strdup code, and to prevent bugs in future duplications of strdup. Most of the changes come from the sound and net

Re: [PATCH] create a kstrdup library function

2005-04-04 Thread Andres Salomon
On Mon, 04 Apr 2005 20:44:17 +0100, Paulo Marques wrote: Hi, This patch creates a new kstrdup library function and changes the local implementations in several places to use this function. This is just a cleanup to allow reusing the strdup code, and to prevent bugs in future