This is the mail archive of the libc-ports@sources.redhat.com mailing list for the libc-ports 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: name_to_handle_at, open_by_handle etc.


I've applied this further update now one of the new functions has been 
renamed in libc.

diff --git a/ChangeLog.arm b/ChangeLog.arm
index e655775..31f478e 100644
--- a/ChangeLog.arm
+++ b/ChangeLog.arm
@@ -1,3 +1,8 @@
+2011-04-01  Joseph Myers  <joseph@codesourcery.com>
+
+	* sysdeps/unix/sysv/linux/arm/bits/fcntl.h: Rename open_by_handle
+	to open_by_handle_at.
+
 2011-04-01  Ryosei Takagi  <ryosei@sm.sony.co.jp>
 
 	* sysdeps/unix/sysv/linux/arm/eabi/____longjmp_chk.S:
diff --git a/ChangeLog.mips b/ChangeLog.mips
index fd9d992..01703e8 100644
--- a/ChangeLog.mips
+++ b/ChangeLog.mips
@@ -1,5 +1,10 @@
 2011-04-01  Joseph Myers  <joseph@codesourcery.com>
 
+	* sysdeps/unix/sysv/linux/mips/bits/fcntl.h: Rename open_by_handle
+	to open_by_handle_at.
+
+2011-04-01  Joseph Myers  <joseph@codesourcery.com>
+
 	* sysdeps/unix/sysv/linux/mips/bits/fcntl.h (O_PATH): Define.
 
 2011-04-01  Joseph Myers  <joseph@codesourcery.com>
diff --git a/sysdeps/unix/sysv/linux/arm/bits/fcntl.h b/sysdeps/unix/sysv/linux/arm/bits/fcntl.h
index aa2d36c..cf8e32a 100644
--- a/sysdeps/unix/sysv/linux/arm/bits/fcntl.h
+++ b/sysdeps/unix/sysv/linux/arm/bits/fcntl.h
@@ -314,8 +314,8 @@ extern int name_to_handle_at (int __dfd, const char *__name,
 
    This function is a possible cancellation point and therefore not
    marked with __THROW.  */
-extern int open_by_handle (int __mountdirfd, struct file_handle *__handle,
-			   int __flags);
+extern int open_by_handle_at (int __mountdirfd, struct file_handle *__handle,
+			      int __flags);
 
 #endif
 
diff --git a/sysdeps/unix/sysv/linux/mips/bits/fcntl.h b/sysdeps/unix/sysv/linux/mips/bits/fcntl.h
index 2edc7a2..1da1576 100644
--- a/sysdeps/unix/sysv/linux/mips/bits/fcntl.h
+++ b/sysdeps/unix/sysv/linux/mips/bits/fcntl.h
@@ -327,8 +327,8 @@ extern int name_to_handle_at (int __dfd, const char *__name,
 
    This function is a possible cancellation point and therefore not
    marked with __THROW.  */
-extern int open_by_handle (int __mountdirfd, struct file_handle *__handle,
-			   int __flags);
+extern int open_by_handle_at (int __mountdirfd, struct file_handle *__handle,
+			      int __flags);
 
 #endif
 

-- 
Joseph S. Myers
joseph@codesourcery.com


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