|
|
|
@ -1,8 +1,8 @@
|
|
|
|
|
# --- SDE-COPYRIGHT-NOTE-BEGIN ---
|
|
|
|
|
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
|
|
|
|
|
#
|
|
|
|
|
# Filename: package/.../mdadm/mdadm-2.6.7-no-susv3-legacy.patch
|
|
|
|
|
# Copyright (C) 2010 The OpenSDE Project
|
|
|
|
|
# Filename: package/.../mdadm/mdadm-3.2.2-no-susv3-legacy.patch
|
|
|
|
|
# Copyright (C) 2010 - 2011 The OpenSDE Project
|
|
|
|
|
#
|
|
|
|
|
# More information can be found in the files COPYING and README.
|
|
|
|
|
#
|
|
|
|
@ -19,16 +19,22 @@ Description: Replace usleep() with nanosleep()
|
|
|
|
|
usleep() was deprecated by SUSv3 and newer LIBCs are starting to enforce that
|
|
|
|
|
deprecation.
|
|
|
|
|
|
|
|
|
|
--- ./mdadm.h.orig 2010-09-25 22:49:01.040000255 +0200
|
|
|
|
|
+++ ./mdadm.h 2010-09-25 22:50:27.192000253 +0200
|
|
|
|
|
@@ -566,3 +566,10 @@
|
|
|
|
|
#define ALGORITHM_RIGHT_ASYMMETRIC 1
|
|
|
|
|
#define ALGORITHM_LEFT_SYMMETRIC 2
|
|
|
|
|
#define ALGORITHM_RIGHT_SYMMETRIC 3
|
|
|
|
|
--- mdadm-3.2.2/mdadm.h.orig 2011-08-21 01:13:43.876087027 +0200
|
|
|
|
|
+++ mdadm-3.2.2/mdadm.h 2011-08-21 01:20:20.980080863 +0200
|
|
|
|
|
@@ -1343,5 +1343,16 @@
|
|
|
|
|
*/
|
|
|
|
|
#ifndef PATH_MAX
|
|
|
|
|
#define PATH_MAX 4096
|
|
|
|
|
+
|
|
|
|
|
+#define usleep(x) xx_usleep(x)
|
|
|
|
|
+/* usleep() was deprecated by SUSv3 and newer LIBCs are starting to
|
|
|
|
|
+ * enforce that deprecation.
|
|
|
|
|
+ */
|
|
|
|
|
+#define usleep(x) xx_usleep(x)
|
|
|
|
|
+static inline void xx_usleep(unsigned k)
|
|
|
|
|
+{
|
|
|
|
|
+ const struct timespec t = { k/1000000UL, (k%1000000UL)*1000UL };
|
|
|
|
|
+ nanosleep(&t, NULL);
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
#endif
|
|
|
|
|
|