[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[commits] r11445 - in /fsf/trunk/libc: ./ debug/ libio/ sysdeps/powerpc/powerpc64/
- To: commits@xxxxxxxxxx
- Subject: [commits] r11445 - in /fsf/trunk/libc: ./ debug/ libio/ sysdeps/powerpc/powerpc64/
- From: eglibc@xxxxxxxxxx
- Date: Mon, 06 Sep 2010 07:03:00 -0000
Author: eglibc
Date: Mon Sep 6 00:02:58 2010
New Revision: 11445
Log:
Import glibc-mainline for 2010-09-06
Modified:
fsf/trunk/libc/ChangeLog
fsf/trunk/libc/debug/vdprintf_chk.c
fsf/trunk/libc/libio/iofdopen.c
fsf/trunk/libc/libio/iofopncook.c
fsf/trunk/libc/libio/iovdprintf.c
fsf/trunk/libc/libio/oldiofdopen.c
fsf/trunk/libc/sysdeps/powerpc/powerpc64/dl-machine.h
Modified: fsf/trunk/libc/ChangeLog
==============================================================================
--- fsf/trunk/libc/ChangeLog (original)
+++ fsf/trunk/libc/ChangeLog Mon Sep 6 00:02:58 2010
@@ -1,3 +1,14 @@
+2010-09-05 Andreas Schwab <schwab@xxxxxxxxxxxxxx>
+
+ * debug/vdprintf_chk.c (__vdprintf_chk): Remove undefined
+ operation.
+ * libio/iofdopen.c (_IO_new_fdopen): Likewise.
+ * libio/iofopncook.c (_IO_cookie_init): Likewise.
+ * libio/iovdprintf.c (_IO_vdprintf): Likewise.
+ * libio/oldiofdopen.c (_IO_old_fdopen): Likewise.
+ * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela):
+ Likewise.
+
2010-09-04 Ulrich Drepper <drepper@xxxxxxxxxx>
[BZ #11979]
Modified: fsf/trunk/libc/debug/vdprintf_chk.c
==============================================================================
--- fsf/trunk/libc/debug/vdprintf_chk.c (original)
+++ fsf/trunk/libc/debug/vdprintf_chk.c Mon Sep 6 00:02:58 2010
@@ -1,4 +1,4 @@
-/* Copyright (C) 1995, 1997-2000, 2001, 2002, 2003, 2006, 2008
+/* Copyright (C) 1995, 1997-2000, 2001, 2002, 2003, 2006, 2008, 2010
Free Software Foundation, Inc.
This file is part of the GNU C Library.
@@ -50,10 +50,10 @@
INTUSE(_IO_un_link) (&tmpfil);
return EOF;
}
- tmpfil.file._IO_file_flags =
- (_IO_mask_flags (&tmpfil.file, _IO_NO_READS,
- _IO_NO_READS+_IO_NO_WRITES+_IO_IS_APPENDING)
- | _IO_DELETE_DONT_CLOSE);
+ tmpfil.file._flags |= _IO_DELETE_DONT_CLOSE;
+
+ _IO_mask_flags (&tmpfil.file, _IO_NO_READS,
+ _IO_NO_READS+_IO_NO_WRITES+_IO_IS_APPENDING);
/* For flags > 0 (i.e. __USE_FORTIFY_LEVEL > 1) request that %n
can only come from read-only format strings. */
Modified: fsf/trunk/libc/libio/iofdopen.c
==============================================================================
--- fsf/trunk/libc/libio/iofdopen.c (original)
+++ fsf/trunk/libc/libio/iofdopen.c Mon Sep 6 00:02:58 2010
@@ -1,4 +1,4 @@
-/* Copyright (C) 1993,1994,1997,1998,1999,2000,2002,2003
+/* Copyright (C) 1993,1994,1997,1998,1999,2000,2002,2003,2010
Free Software Foundation, Inc.
This file is part of the GNU C Library.
@@ -172,9 +172,8 @@
}
new_f->fp.file._flags &= ~_IO_DELETE_DONT_CLOSE;
- new_f->fp.file._IO_file_flags =
- _IO_mask_flags (&new_f->fp.file, read_write,
- _IO_NO_READS+_IO_NO_WRITES+_IO_IS_APPENDING);
+ _IO_mask_flags (&new_f->fp.file, read_write,
+ _IO_NO_READS+_IO_NO_WRITES+_IO_IS_APPENDING);
return &new_f->fp.file;
}
Modified: fsf/trunk/libc/libio/iofopncook.c
==============================================================================
--- fsf/trunk/libc/libio/iofopncook.c (original)
+++ fsf/trunk/libc/libio/iofopncook.c Mon Sep 6 00:02:58 2010
@@ -1,4 +1,4 @@
-/* Copyright (C) 1993,95,97,99,2000,2002,2004, 2005
+/* Copyright (C) 1993,95,97,99,2000,2002,2004, 2005, 2010
Free Software Foundation, Inc.
This file is part of the GNU C Library.
@@ -154,9 +154,8 @@
INTUSE(_IO_file_init) (&cfile->__fp);
- cfile->__fp.file._IO_file_flags =
- _IO_mask_flags (&cfile->__fp.file, read_write,
- _IO_NO_READS+_IO_NO_WRITES+_IO_IS_APPENDING);
+ _IO_mask_flags (&cfile->__fp.file, read_write,
+ _IO_NO_READS+_IO_NO_WRITES+_IO_IS_APPENDING);
/* We use a negative number different from -1 for _fileno to mark that
this special stream is not associated with a real file, but still has
Modified: fsf/trunk/libc/libio/iovdprintf.c
==============================================================================
--- fsf/trunk/libc/libio/iovdprintf.c (original)
+++ fsf/trunk/libc/libio/iovdprintf.c Mon Sep 6 00:02:58 2010
@@ -53,10 +53,10 @@
INTUSE(_IO_un_link) (&tmpfil);
return EOF;
}
- tmpfil.file._IO_file_flags =
- (_IO_mask_flags (&tmpfil.file, _IO_NO_READS,
- _IO_NO_READS+_IO_NO_WRITES+_IO_IS_APPENDING)
- | _IO_DELETE_DONT_CLOSE);
+ tmpfil.file._flags |= _IO_DELETE_DONT_CLOSE;
+
+ _IO_mask_flags (&tmpfil.file, _IO_NO_READS,
+ _IO_NO_READS+_IO_NO_WRITES+_IO_IS_APPENDING);
done = INTUSE(_IO_vfprintf) (&tmpfil.file, format, arg);
Modified: fsf/trunk/libc/libio/oldiofdopen.c
==============================================================================
--- fsf/trunk/libc/libio/oldiofdopen.c (original)
+++ fsf/trunk/libc/libio/oldiofdopen.c Mon Sep 6 00:02:58 2010
@@ -130,9 +130,8 @@
}
new_f->fp.file._file._flags &= ~_IO_DELETE_DONT_CLOSE;
- new_f->fp.file._file._IO_file_flags =
- _IO_mask_flags (&new_f->fp.file._file, read_write,
- _IO_NO_READS+_IO_NO_WRITES+_IO_IS_APPENDING);
+ _IO_mask_flags (&new_f->fp.file._file, read_write,
+ _IO_NO_READS+_IO_NO_WRITES+_IO_IS_APPENDING);
return (_IO_FILE *) &new_f->fp;
}
Modified: fsf/trunk/libc/sysdeps/powerpc/powerpc64/dl-machine.h
==============================================================================
--- fsf/trunk/libc/sysdeps/powerpc/powerpc64/dl-machine.h (original)
+++ fsf/trunk/libc/sysdeps/powerpc/powerpc64/dl-machine.h Mon Sep 6 00:02:58 2010
@@ -1,6 +1,6 @@
/* Machine-dependent ELF dynamic relocation inline functions.
PowerPC64 version.
- Copyright 1995-2005, 2006, 2008 Free Software Foundation, Inc.
+ Copyright 1995-2005, 2006, 2008, 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
@@ -641,16 +641,14 @@
value = elf_machine_tprel (map, sym_map, sym, reloc);
if (dont_expect ((value & 3) != 0))
_dl_reloc_overflow (map, "R_PPC64_TPREL16_LO_DS", reloc_addr, refsym);
- *(Elf64_Half *) reloc_addr = BIT_INSERT (*(Elf64_Half *) reloc_addr,
- value, 0xfffc);
+ BIT_INSERT (*(Elf64_Half *) reloc_addr, value, 0xfffc);
break;
case R_PPC64_TPREL16_DS:
value = elf_machine_tprel (map, sym_map, sym, reloc);
if (dont_expect ((value + 0x8000) >= 0x10000 || (value & 3) != 0))
_dl_reloc_overflow (map, "R_PPC64_TPREL16_DS", reloc_addr, refsym);
- *(Elf64_Half *) reloc_addr = BIT_INSERT (*(Elf64_Half *) reloc_addr,
- value, 0xfffc);
+ BIT_INSERT (*(Elf64_Half *) reloc_addr, value, 0xfffc);
break;
case R_PPC64_TPREL16: