Re: [PATCH 2/5] Move the UTS namespace under the option

2007-10-31 Thread Pavel Emelyanov
Cedric Le Goater wrote: >> diff --git a/init/Kconfig b/init/Kconfig >> index fc76773..d592aa2 100644 >> --- a/init/Kconfig >> +++ b/init/Kconfig >> @@ -409,6 +409,13 @@ config NAMESPACES >>or same user id or pid may refer to different tasks when used in >>different namespaces. >> >>

Re: [PATCH 2/5] Move the UTS namespace under the option

2007-10-31 Thread Cedric Le Goater
> diff --git a/init/Kconfig b/init/Kconfig > index fc76773..d592aa2 100644 > --- a/init/Kconfig > +++ b/init/Kconfig > @@ -409,6 +409,13 @@ config NAMESPACES > or same user id or pid may refer to different tasks when used in > different namespaces. > > +config UTS_NS > + bool

[PATCH 2/5] Move the UTS namespace under the option

2007-10-31 Thread Pavel Emelyanov
Currently all the namespace management code is in the kernel/utsname.c file, so just compile it out and make stub in .h file. The init namespace itself is in init/version.c and is left in the kernel. Signed-off-by: Pavel Emelyanov <[EMAIL PROTECTED]> --- diff --git a/include/linux/utsname.h b/i