[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[commits] r10612 - in /fsf/glibc-2_11-branch/libc: ./ elf/ sunrpc/ sysdeps/unix/sysv/linux/sh/sh4/ sysdeps/x86_64/multiarch/



Author: eglibc
Date: Tue Jun  1 00:08:25 2010
New Revision: 10612

Log:
Import glibc-2.11 for 2010-06-01

Modified:
    fsf/glibc-2_11-branch/libc/ChangeLog
    fsf/glibc-2_11-branch/libc/elf/dl-runtime.c
    fsf/glibc-2_11-branch/libc/sunrpc/clnt_tcp.c
    fsf/glibc-2_11-branch/libc/sunrpc/clnt_udp.c
    fsf/glibc-2_11-branch/libc/sunrpc/clnt_unix.c
    fsf/glibc-2_11-branch/libc/sysdeps/unix/sysv/linux/sh/sh4/register-dump.h
    fsf/glibc-2_11-branch/libc/sysdeps/x86_64/multiarch/init-arch.c

Modified: fsf/glibc-2_11-branch/libc/ChangeLog
==============================================================================
--- fsf/glibc-2_11-branch/libc/ChangeLog (original)
+++ fsf/glibc-2_11-branch/libc/ChangeLog Tue Jun  1 00:08:25 2010
@@ -1,3 +1,29 @@
+2010-05-26  H.J. Lu  <hongjiu.lu@xxxxxxxxx>
+
+	[BZ #11640]
+	* sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
+	Properly check family and model.
+
+2010-05-26  Takashi Yoshii  <takashi.yoshii.zj@xxxxxxxxxxx>
+
+	* sysdeps/unix/sysv/linux/sh/sh4/register-dump.h: Fix iov[] size.
+
+2010-05-21  Ulrich Drepper  <drepper@xxxxxxxxxx>
+
+	* elf/dl-runtime.c (_dl_profile_fixup): Don't crash on unresolved weak
+	symbol reference.
+
+2010-05-19  Andreas Schwab  <schwab@xxxxxxxxxx>
+
+	* elf/dl-runtime.c (_dl_fixup): Don't crash on unresolved weak
+	symbol reference.
+
+2010-05-21  Andreas Schwab  <schwab@xxxxxxxxxx>
+
+	* sunrpc/clnt_tcp.c (clnttcp_control): Add missing break.
+	* sunrpc/clnt_udp.c (clntudp_control): Likewise.
+	* sunrpc/clnt_unix.c (clntunix_control): Likewise.
+
 2010-05-12  Andrew Stubbs  <ams@xxxxxxxxxxxxxxxx>
 
 	* sysdeps/sh/sh4/fpu/feholdexcpt.c (feholdexcept): Really disable all

Modified: fsf/glibc-2_11-branch/libc/elf/dl-runtime.c
==============================================================================
--- fsf/glibc-2_11-branch/libc/elf/dl-runtime.c (original)
+++ fsf/glibc-2_11-branch/libc/elf/dl-runtime.c Tue Jun  1 00:08:25 2010
@@ -1,5 +1,5 @@
 /* On-demand PLT fixup for shared objects.
-   Copyright (C) 1995-2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+   Copyright (C) 1995-2009, 2010 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
@@ -144,7 +144,8 @@
   /* And now perhaps the relocation addend.  */
   value = elf_machine_plt_value (l, reloc, value);
 
-  if (__builtin_expect (ELFW(ST_TYPE) (sym->st_info) == STT_GNU_IFUNC, 0))
+  if (sym != NULL
+      && __builtin_expect (ELFW(ST_TYPE) (sym->st_info) == STT_GNU_IFUNC, 0))
     value = ((DL_FIXUP_VALUE_TYPE (*) (void)) DL_FIXUP_VALUE_ADDR (value)) ();
 
   /* Finally, fix up the plt itself.  */
@@ -231,8 +232,9 @@
 				       ? LOOKUP_VALUE_ADDRESS (result)
 					 + defsym->st_value : 0);
 
-	  if (__builtin_expect (ELFW(ST_TYPE) (defsym->st_info)
-				== STT_GNU_IFUNC, 0))
+	  if (defsym != NULL
+	      && __builtin_expect (ELFW(ST_TYPE) (defsym->st_info)
+				   == STT_GNU_IFUNC, 0))
 	    value = ((DL_FIXUP_VALUE_TYPE (*) (void))
 		     DL_FIXUP_VALUE_ADDR (value)) ();
 	}
@@ -369,7 +371,7 @@
       struct audit_ifaces *afct = GLRO(dl_audit);
       for (unsigned int cnt = 0; cnt < GLRO(dl_naudit); ++cnt)
 	{
- 	  if (afct->ARCH_LA_PLTENTER != NULL
+	  if (afct->ARCH_LA_PLTENTER != NULL
 	      && (reloc_result->enterexit
 		  & (LA_SYMB_NOPLTENTER << (2 * (cnt + 1)))) == 0)
 	    {

Modified: fsf/glibc-2_11-branch/libc/sunrpc/clnt_tcp.c
==============================================================================
--- fsf/glibc-2_11-branch/libc/sunrpc/clnt_tcp.c (original)
+++ fsf/glibc-2_11-branch/libc/sunrpc/clnt_tcp.c Tue Jun  1 00:08:25 2010
@@ -399,6 +399,7 @@
       /* This will set the xid of the NEXT call */
       *(u_long *)ct->ct_mcall =  htonl (*(u_long *)info - 1);
       /* decrement by 1 as clnttcp_call() increments once */
+      break;
     case CLGET_VERS:
       /*
        * This RELIES on the information that, in the call body,

Modified: fsf/glibc-2_11-branch/libc/sunrpc/clnt_udp.c
==============================================================================
--- fsf/glibc-2_11-branch/libc/sunrpc/clnt_udp.c (original)
+++ fsf/glibc-2_11-branch/libc/sunrpc/clnt_udp.c Tue Jun  1 00:08:25 2010
@@ -582,6 +582,7 @@
       /* This will set the xid of the NEXT call */
       *(u_long *)cu->cu_outbuf =  htonl(*(u_long *)info - 1);
       /* decrement by 1 as clntudp_call() increments once */
+      break;
     case CLGET_VERS:
       /*
        * This RELIES on the information that, in the call body,

Modified: fsf/glibc-2_11-branch/libc/sunrpc/clnt_unix.c
==============================================================================
--- fsf/glibc-2_11-branch/libc/sunrpc/clnt_unix.c (original)
+++ fsf/glibc-2_11-branch/libc/sunrpc/clnt_unix.c Tue Jun  1 00:08:25 2010
@@ -376,6 +376,7 @@
       /* This will set the xid of the NEXT call */
       *(u_long *) ct->ct_mcall =  htonl (*(u_long *)info - 1);
       /* decrement by 1 as clntunix_call() increments once */
+      break;
     case CLGET_VERS:
       /*
        * This RELIES on the information that, in the call body,

Modified: fsf/glibc-2_11-branch/libc/sysdeps/unix/sysv/linux/sh/sh4/register-dump.h
==============================================================================
--- fsf/glibc-2_11-branch/libc/sysdeps/unix/sysv/linux/sh/sh4/register-dump.h (original)
+++ fsf/glibc-2_11-branch/libc/sysdeps/unix/sysv/linux/sh/sh4/register-dump.h Tue Jun  1 00:08:25 2010
@@ -1,5 +1,5 @@
 /* Dump registers.
-   Copyright (C) 1999, 2000, 2009 Free Software Foundation, Inc.
+   Copyright (C) 1999, 2000, 2009, 2010 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
@@ -58,7 +58,7 @@
 {
   char regs[22][8];
   char fpregs[34][8];
-  struct iovec iov[112];
+  struct iovec iov[22 * 2 + 34 * 2 + 2];
   size_t nr = 0;
 
 #define ADD_STRING(str) \

Modified: fsf/glibc-2_11-branch/libc/sysdeps/x86_64/multiarch/init-arch.c
==============================================================================
--- fsf/glibc-2_11-branch/libc/sysdeps/x86_64/multiarch/init-arch.c (original)
+++ fsf/glibc-2_11-branch/libc/sysdeps/x86_64/multiarch/init-arch.c Tue Jun  1 00:08:25 2010
@@ -62,12 +62,12 @@
       unsigned int eax = __cpu_features.cpuid[COMMON_CPUID_INDEX_1].eax;
       unsigned int extended_family = (eax >> 20) & 0xff;
       unsigned int extended_model = (eax >> 12) & 0xf0;
-      if (__cpu_features.family == 0x0f)
+      if (family == 0x0f)
 	{
 	  family += extended_family;
 	  model += extended_model;
 	}
-      else if (__cpu_features.family == 0x06)
+      else if (family == 0x06)
 	model += extended_model;
     }
   /* This spells out "AuthenticAMD".  */