[uml-devel] [PATCH 1/2] um: umid: Use tab instead of spaces

2015-07-08 Thread Christophe JAILLET
Turn some spaces into a tab to be consistent with the rest of the code. Signed-off-by: Christophe JAILLET --- arch/um/os-Linux/umid.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/um/os-Linux/umid.c b/arch/um/os-Linux/umid.c index c1dc892..b514ead 100644 --- a/arch/um/

[uml-devel] [PATCH 2/2] um: umid: Use strdup to simplify code

2015-07-08 Thread Christophe JAILLET
Replace a malloc+strcpy by an equivalent strdup in order to improve readability. Signed-off-by: Christophe JAILLET --- arch/um/os-Linux/umid.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/arch/um/os-Linux/umid.c b/arch/um/os-Linux/umid.c index b514ead..cc9ac2e 100644

Re: [uml-devel] [PATCH] um: umid: Use strdup to simplify code

2015-07-08 Thread Jeff Dike
On Wed, Jul 08, 2015 at 10:01:23PM +0200, Richard Weinberger wrote: > BTW: I'd like to move away from sf.net soon. Maybe to lists.infradead.org. > Is that okay for you? Fine by me - it's your call. Jeff -

[uml-devel] [PATCH] um: umid: Use strdup to simplify code

2015-07-08 Thread Christophe JAILLET
Replace a malloc+strcpy by an equivalent strdup in order to improve readability. Turn a some spaces into a tab to be consistent with the rest of the code. Signed-off-by: Christophe JAILLET --- arch/um/os-Linux/umid.c | 7 +++ 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/arch

Re: [uml-devel] [PATCH] um: umid: Use strdup to simplify code

2015-07-08 Thread Richard Weinberger
Hi Jeff, Am 08.07.2015 um 21:56 schrieb Jeff Dike: > ... Nice patch elided ... > > I have a bit of a problem here - Christophe isn't a member of > uml-devel, so Mailman is sitting on his post until it's approved by a > list moderator, namely me. > > So far, so good, except that my uml-devel pass

Re: [uml-devel] [PATCH] um: umid: Use strdup to simplify code

2015-07-08 Thread Jeff Dike
... Nice patch elided ... I have a bit of a problem here - Christophe isn't a member of uml-devel, so Mailman is sitting on his post until it's approved by a list moderator, namely me. So far, so good, except that my uml-devel password stopped working, so I now have no ability to approve this (an

Re: [uml-devel] [PATCH] um: umid: Use strdup to simplify code

2015-07-08 Thread Richard Weinberger
Am 08.07.2015 um 21:15 schrieb Christophe JAILLET: > Replace a malloc+strcpy by an equivalent strdup in order to improve > readability. Makes sense! > Turn a some spaces into a tab to be consistent with the rest of the code. Do this in an extra patch. One logical change per patch please. Thanks