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

r3413 - in glibc-package/trunk/debian: . patches patches/any



Author: aurel32
Date: 2009-04-23 21:04:00 +0000 (Thu, 23 Apr 2009)
New Revision: 3413

Added:
   glibc-package/trunk/debian/patches/any/submitted-mount_h.diff
Modified:
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/patches/series
Log:
  * any/submitted-mount_h.diff: new patch to add MNT_DETACH and MNT_EXPIRE to
    sys/mount.h.  Closes: #523952.



Modified: glibc-package/trunk/debian/changelog
===================================================================
--- glibc-package/trunk/debian/changelog	2009-04-23 19:18:06 UTC (rev 3412)
+++ glibc-package/trunk/debian/changelog	2009-04-23 21:04:00 UTC (rev 3413)
@@ -4,6 +4,8 @@
   * Update Swedish debconf translation, by Martin Bagger.  Closes: #522982.
   * mips/cvs-context.diff: new patch from upstream to add getcontext, 
     setcontext, makecontext, swapcontext.
+  * any/submitted-mount_h.diff: new patch to add MNT_DETACH and MNT_EXPIRE to
+    sys/mount.h.  Closes: #523952.
 
   [ Petr Salinger ]
   * kfreebsd/local-sysdeps.diff: update to revision 2450 (from glibc-bsd).

Added: glibc-package/trunk/debian/patches/any/submitted-mount_h.diff
===================================================================
--- glibc-package/trunk/debian/patches/any/submitted-mount_h.diff	                        (rev 0)
+++ glibc-package/trunk/debian/patches/any/submitted-mount_h.diff	2009-04-23 21:04:00 UTC (rev 3413)
@@ -0,0 +1,23 @@
+2009-04-23  Aurelien Jarno  <aurelien@aurel32.net>
+
+	* sysdeps/unix/sysv/linux/sys/mount.h: add MNT_DETACH and
+	MNT_EXPIRE.
+
+diff --git a/sysdeps/unix/sysv/linux/sys/mount.h b/sysdeps/unix/sysv/linux/sys/mount.h
+index b305549..0e75dbf 100644
+--- a/sysdeps/unix/sysv/linux/sys/mount.h
++++ b/sysdeps/unix/sysv/linux/sys/mount.h
+@@ -96,8 +96,12 @@ enum
+ /* Possible value for FLAGS parameter of `umount2'.  */
+ enum
+ {
+-  MNT_FORCE = 1			/* Force unmounting.  */
++  MNT_FORCE = 1,		/* Force unmounting.  */
+ #define MNT_FORCE MNT_FORCE
++  MNT_DETACH = 2,		/* Just detach from the tree */
++#define MNT_DETACH MNT_DETACH
++  MNT_EXPIRE = 4		/* Mark for expiry */
++#define MNT_EXPIRE MNT_EXPIRE
+ };
+ 
+ 

Modified: glibc-package/trunk/debian/patches/series
===================================================================
--- glibc-package/trunk/debian/patches/series	2009-04-23 19:18:06 UTC (rev 3412)
+++ glibc-package/trunk/debian/patches/series	2009-04-23 21:04:00 UTC (rev 3413)
@@ -196,3 +196,4 @@
 any/cvs-bz7058-nss_nss-nis.diff
 any/local-disable-gethostbyname4.diff
 any/submitted-getaddrinfo-lo.diff
+any/submitted-mount_h.diff


Reply to: