I am using xen 3.0.2. Booting it it will tell short before init that i''ve got /lib/tls and should disable it. But i did not got such a directory - what to do now (glibc-2.4-r3 is used, nptl). kind regards _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
On Wed, Oct 18, 2006 at 06:02:14AM +0200, Torsten Krah wrote:> I am using xen 3.0.2. > > Booting it it will tell short before init that i''ve got /lib/tls and > should disable it. > But i did not got such a directory - what to do now (glibc-2.4-r3 is > used, nptl).You probably have one in your initrd or initramfs. Yours Tony linux.conf.au http://linux.conf.au/ || http://lca2007.linux.org.au/ Jan 15-20 2007 The Australian Linux Technical Conference! _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Torsten Krah
2006-Oct-18 04:22 UTC
Re: [Xen-users] /lib/tls -> not there but xen complains
Got no initrd and no initramfs. kind regards Am Mittwoch, den 18.10.2006, 14:11 +1000 schrieb Tony Breeds:> On Wed, Oct 18, 2006 at 06:02:14AM +0200, Torsten Krah wrote: > > I am using xen 3.0.2. > > > > Booting it it will tell short before init that i''ve got /lib/tls and > > should disable it. > > But i did not got such a directory - what to do now (glibc-2.4-r3 is > > used, nptl). > > You probably have one in your initrd or initramfs. > > Yours Tony > > linux.conf.au http://linux.conf.au/ || http://lca2007.linux.org.au/ > Jan 15-20 2007 The Australian Linux Technical Conference! >_______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Fajar A. Nugraha
2006-Oct-18 04:54 UTC
Re: [Xen-users] /lib/tls -> not there but xen complains
Torsten Krah wrote:> Got no initrd and no initramfs. > > kind regards > > Am Mittwoch, den 18.10.2006, 14:11 +1000 schrieb Tony Breeds: > >> On Wed, Oct 18, 2006 at 06:02:14AM +0200, Torsten Krah wrote: >> >>> I am using xen 3.0.2. >>> >>> Booting it it will tell short before init that i''ve got /lib/tls and >>> should disable it. >>> But i did not got such a directory - what to do now (glibc-2.4-r3 is >>> used, nptl). >>>Are you using gentoo, by any chance? It doesn''t matter actually, whether glibc nptl is located on /lib/tls or just /lib. The point is, if you want to use nptl glibc, you have to compile it with -mno-tls-direct-seg-refs. See http://wiki.xensource.com/xenwiki/XenSpecificGlibc Since usually the nptl version is located on /lib/tls, Xen issues a warning about /lib/tls. -- Fajar _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Xen should be giving you an ''offending process'' name or ID with that warning, typically its linuxrc in the initrd, but you said you weren''t using one. Any indication on the offending process ? It should be just under the ******* box the warning displays in. Best, -Tim On Wed, 2006-10-18 at 06:02 +0200, Torsten Krah wrote:> I am using xen 3.0.2. > > Booting it it will tell short before init that i''ve got /lib/tls and > should disable it. > But i did not got such a directory - what to do now (glibc-2.4-r3 is > used, nptl). > > kind regards > > > _______________________________________________ > Xen-users mailing list > Xen-users@lists.xensource.com > http://lists.xensource.com/xen-users > >_______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Torsten Krah
2006-Oct-18 06:49 UTC
Re: [Xen-users] /lib/tls -> not there but xen complains
Yeah i am using gentoo. Ok thats the point - i''ll recompile my glibc with this parameter and hope it works ( i''ll will post then ). thx for help. Am Mittwoch, den 18.10.2006, 11:54 +0700 schrieb Fajar A. Nugraha:> Torsten Krah wrote: > > Got no initrd and no initramfs. > > > > kind regards > > > > Am Mittwoch, den 18.10.2006, 14:11 +1000 schrieb Tony Breeds: > > > >> On Wed, Oct 18, 2006 at 06:02:14AM +0200, Torsten Krah wrote: > >> > >>> I am using xen 3.0.2. > >>> > >>> Booting it it will tell short before init that i''ve got /lib/tls and > >>> should disable it. > >>> But i did not got such a directory - what to do now (glibc-2.4-r3 is > >>> used, nptl). > >>> > Are you using gentoo, by any chance? > It doesn''t matter actually, whether glibc nptl is located on /lib/tls or > just /lib. > The point is, if you want to use nptl glibc, you have to compile it with > -mno-tls-direct-seg-refs. See > http://wiki.xensource.com/xenwiki/XenSpecificGlibc > Since usually the nptl version is located on /lib/tls, Xen issues a > warning about /lib/tls. >_______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Petersson, Mats
2006-Oct-18 10:26 UTC
RE: [Xen-users] /lib/tls -> not there but xen complains
> -----Original Message----- > From: xen-users-bounces@lists.xensource.com > [mailto:xen-users-bounces@lists.xensource.com] On Behalf Of > Torsten Krah > Sent: 18 October 2006 05:02 > To: xen-users@lists.xensource.com > Subject: [Xen-users] /lib/tls -> not there but xen complains > > I am using xen 3.0.2. > > Booting it it will tell short before init that i''ve got /lib/tls and > should disable it.That''s because some part of your initrd contains a linked in library that has tls enabled. Most likely nash or some other "shell". Since it''s statically linked, it''s not using the lib/tls shared library, but the one it''s been linked with at build-time. You can either ignore it (recommended) or build a new version of nash or whatever other initrd content that is causing the problem (advanced solution). Since it''s only happening once per boot, I wouldn''t bother to "fix it". -- Mats> But i did not got such a directory - what to do now (glibc-2.4-r3 is > used, nptl). > > kind regards > > > _______________________________________________ > Xen-users mailing list > Xen-users@lists.xensource.com > http://lists.xensource.com/xen-users > > >_______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users