This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] Always set l_used for vDSO (BZ #13706)


On 02/20/2012 01:31 PM, Joseph S. Myers wrote:
> Remember the [BZ #N] number in the ChangeLog entry.  It's more useful to put
> it there when sending a patch than to include a patch adding it to NEWS;
> patches adding bug numbers to NEWS are just as unlikely to apply directly
> when the patch is committed as are patches to the ChangeLog file (hence the
> convention of including ChangeLog entries in plain text rather than as
> diffs).

Ugh, right, sorry.

2012-02-20  Marek Polacek  <polacek@redhat.com>

	[BZ #13706]
	* elf/rtld.c (dl_main): Always set l_used to 1 for vDSO.

--- libc/elf/rtld.c.mp	2012-02-20 10:03:06.799226404 +0100
+++ libc/elf/rtld.c	2012-02-20 10:03:18.732248427 +0100
@@ -1,5 +1,5 @@
 /* Run time dynamic linker.
-   Copyright (C) 1995-2010, 2011 Free Software Foundation, Inc.
+   Copyright (C) 1995-2012 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -1375,6 +1375,9 @@ of this helper program; chances are you
 	  _dl_setup_hash (l);
 	  l->l_relocated = 1;
 
+	  /* The vDSO is always used.  */
+	  l->l_used = 1;
+
 	  /* Initialize l_local_scope to contain just this map.  This allows
 	     the use of dl_lookup_symbol_x to resolve symbols within the vdso.
 	     So we create a single entry list pointing to l_real as its only

	Marek


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]