* [PATCH user-cr] define MNT_DETACH in older userspace
@ 2010-02-22 17:47 Serge E. Hallyn
[not found] ` <20100222174755.GA8329-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
0 siblings, 1 reply; 5+ messages in thread
From: Serge E. Hallyn @ 2010-02-22 17:47 UTC (permalink / raw)
To: Oren Laadan; +Cc: Linux Containers
Reported-by: Nathan T Lynch <natlynch-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
Signed-off-by: Serge Hallyn <serue-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
---
nsexec.c | 4 ++++
restart.c | 4 ++++
2 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/nsexec.c b/nsexec.c
index 79fcc70..90db229 100644
--- a/nsexec.c
+++ b/nsexec.c
@@ -21,6 +21,10 @@
#include "eclone.h"
#include "genstack.h"
+#ifndef MNT_DETACH
+#define MNT_DETACH 2
+#endif
+
extern pid_t getpgid(pid_t pid);
extern pid_t getsid(pid_t pid);
diff --git a/restart.c b/restart.c
index 166a499..5d781c2 100644
--- a/restart.c
+++ b/restart.c
@@ -39,6 +39,10 @@
#include "eclone.h"
#include "genstack.h"
+#ifndef MNT_DETACH
+#define MNT_DETACH 2
+#endif
+
static char usage_str[] =
"usage: restart [opts]\n"
" restart restores from a checkpoint image by first creating in userspace\n"
--
1.7.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH user-cr] define MNT_DETACH in older userspace
[not found] ` <20100222174755.GA8329-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
@ 2010-02-22 17:57 ` Nathan Lynch
[not found] ` <1266861478.3760.2.camel-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
0 siblings, 1 reply; 5+ messages in thread
From: Nathan Lynch @ 2010-02-22 17:57 UTC (permalink / raw)
To: Serge E. Hallyn; +Cc: Linux Containers
Thanks, I had already put together a local fix which adds a compat
header -- please use this instead of duplicating the work across files?
From 9d8b8774d4c471f04203b589f49ffe59e1d0cf39 Mon Sep 17 00:00:00 2001
From: Nathan Lynch <ntl-e+AXbWqSrlAAvxtiuMwx3w@public.gmane.org>
Date: Mon, 22 Feb 2010 11:50:46 -0600
Subject: [PATCH 1/1] user-cr: add compat.h; define MNT_DETACH
"nsexec: remount proc and devpts" introduced usage of the MNT_DETACH
umount2 flag, which is not defined even in some relatively recent
glibc headers (e.g. Fedora 10/glibc 2.9-3). Add a compat.h header
where we can add fixups like this for older build environments.
Signed-off-by: Nathan Lynch <ntl-e+AXbWqSrlAAvxtiuMwx3w@public.gmane.org>
---
include/compat.h | 7 +++++++
nsexec.c | 1 +
restart.c | 1 +
3 files changed, 9 insertions(+), 0 deletions(-)
create mode 100644 include/compat.h
diff --git a/include/compat.h b/include/compat.h
new file mode 100644
index 0000000..0d5ade4
--- /dev/null
+++ b/include/compat.h
@@ -0,0 +1,7 @@
+#ifndef USER_CR_COMPAT_H
+
+#ifndef MNT_DETACH
+#define MNT_DETACH 2
+#endif
+
+#endif /* USER_CR_COMPAT_H */
diff --git a/nsexec.c b/nsexec.c
index 7a0294c..1cf9c97 100644
--- a/nsexec.c
+++ b/nsexec.c
@@ -20,6 +20,7 @@
#include "clone.h"
#include "eclone.h"
#include "genstack.h"
+#include "compat.h"
extern pid_t getpgid(pid_t pid);
extern pid_t getsid(pid_t pid);
diff --git a/restart.c b/restart.c
index 166a499..f5d23bb 100644
--- a/restart.c
+++ b/restart.c
@@ -38,6 +38,7 @@
#include "eclone.h"
#include "genstack.h"
+#include "compat.h"
static char usage_str[] =
"usage: restart [opts]\n"
--
1.6.0.6
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH user-cr] define MNT_DETACH in older userspace
[not found] ` <1266861478.3760.2.camel-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
@ 2010-02-22 18:03 ` Serge E. Hallyn
2010-02-22 18:07 ` Nathan Lynch
1 sibling, 0 replies; 5+ messages in thread
From: Serge E. Hallyn @ 2010-02-22 18:03 UTC (permalink / raw)
To: Nathan Lynch; +Cc: Linux Containers
Quoting Nathan Lynch (ntl-e+AXbWqSrlAAvxtiuMwx3w@public.gmane.org):
> Thanks, I had already put together a local fix which adds a compat
> header -- please use this instead of duplicating the work across files?
>
> >From 9d8b8774d4c471f04203b589f49ffe59e1d0cf39 Mon Sep 17 00:00:00 2001
> From: Nathan Lynch <ntl-e+AXbWqSrlAAvxtiuMwx3w@public.gmane.org>
> Date: Mon, 22 Feb 2010 11:50:46 -0600
> Subject: [PATCH 1/1] user-cr: add compat.h; define MNT_DETACH
>
> "nsexec: remount proc and devpts" introduced usage of the MNT_DETACH
> umount2 flag, which is not defined even in some relatively recent
> glibc headers (e.g. Fedora 10/glibc 2.9-3). Add a compat.h header
> where we can add fixups like this for older build environments.
>
> Signed-off-by: Nathan Lynch <ntl-e+AXbWqSrlAAvxtiuMwx3w@public.gmane.org>
Acked-by: Serge Hallyn <serue-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
thanks,
-serge
> ---
> include/compat.h | 7 +++++++
> nsexec.c | 1 +
> restart.c | 1 +
> 3 files changed, 9 insertions(+), 0 deletions(-)
> create mode 100644 include/compat.h
>
> diff --git a/include/compat.h b/include/compat.h
> new file mode 100644
> index 0000000..0d5ade4
> --- /dev/null
> +++ b/include/compat.h
> @@ -0,0 +1,7 @@
> +#ifndef USER_CR_COMPAT_H
> +
> +#ifndef MNT_DETACH
> +#define MNT_DETACH 2
> +#endif
> +
> +#endif /* USER_CR_COMPAT_H */
> diff --git a/nsexec.c b/nsexec.c
> index 7a0294c..1cf9c97 100644
> --- a/nsexec.c
> +++ b/nsexec.c
> @@ -20,6 +20,7 @@
> #include "clone.h"
> #include "eclone.h"
> #include "genstack.h"
> +#include "compat.h"
>
> extern pid_t getpgid(pid_t pid);
> extern pid_t getsid(pid_t pid);
> diff --git a/restart.c b/restart.c
> index 166a499..f5d23bb 100644
> --- a/restart.c
> +++ b/restart.c
> @@ -38,6 +38,7 @@
>
> #include "eclone.h"
> #include "genstack.h"
> +#include "compat.h"
>
> static char usage_str[] =
> "usage: restart [opts]\n"
> --
> 1.6.0.6
>
>
>
> _______________________________________________
> Containers mailing list
> Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
> https://lists.linux-foundation.org/mailman/listinfo/containers
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH user-cr] define MNT_DETACH in older userspace
[not found] ` <1266861478.3760.2.camel-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
2010-02-22 18:03 ` Serge E. Hallyn
@ 2010-02-22 18:07 ` Nathan Lynch
[not found] ` <1266862049.12720.1.camel-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
1 sibling, 1 reply; 5+ messages in thread
From: Nathan Lynch @ 2010-02-22 18:07 UTC (permalink / raw)
To: Serge E. Hallyn; +Cc: Linux Containers
On Mon, 2010-02-22 at 11:58 -0600, Nathan Lynch wrote:
> Thanks, I had already put together a local fix which adds a compat
> header -- please use this instead of duplicating the work across files?
Sorry, please use this one instead - fixed include guard in compat.h
From c0869556338592a92bad3b587d394add82267f99 Mon Sep 17 00:00:00 2001
From: Nathan Lynch <ntl-e+AXbWqSrlAAvxtiuMwx3w@public.gmane.org>
Date: Mon, 22 Feb 2010 11:50:46 -0600
Subject: [PATCH 1/1] user-cr: add compat.h; define MNT_DETACH
"nsexec: remount proc and devpts" introduced usage of the MNT_DETACH
umount2 flag, which is not defined even in some relatively recent
glibc headers (e.g. Fedora 10/glibc 2.9-3). Add a compat.h header
where we can add fixups like this for older build environments.
Signed-off-by: Nathan Lynch <ntl-e+AXbWqSrlAAvxtiuMwx3w@public.gmane.org>
---
include/compat.h | 8 ++++++++
nsexec.c | 1 +
restart.c | 1 +
3 files changed, 10 insertions(+), 0 deletions(-)
create mode 100644 include/compat.h
diff --git a/include/compat.h b/include/compat.h
new file mode 100644
index 0000000..bcdd149
--- /dev/null
+++ b/include/compat.h
@@ -0,0 +1,8 @@
+#ifndef USER_CR_COMPAT_H
+#define USER_CR_COMPAT_H
+
+#ifndef MNT_DETACH
+#define MNT_DETACH 2
+#endif
+
+#endif /* USER_CR_COMPAT_H */
diff --git a/nsexec.c b/nsexec.c
index 7a0294c..1cf9c97 100644
--- a/nsexec.c
+++ b/nsexec.c
@@ -20,6 +20,7 @@
#include "clone.h"
#include "eclone.h"
#include "genstack.h"
+#include "compat.h"
extern pid_t getpgid(pid_t pid);
extern pid_t getsid(pid_t pid);
diff --git a/restart.c b/restart.c
index 166a499..f5d23bb 100644
--- a/restart.c
+++ b/restart.c
@@ -38,6 +38,7 @@
#include "eclone.h"
#include "genstack.h"
+#include "compat.h"
static char usage_str[] =
"usage: restart [opts]\n"
--
1.6.0.6
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH user-cr] define MNT_DETACH in older userspace
[not found] ` <1266862049.12720.1.camel-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
@ 2010-02-22 22:51 ` Oren Laadan
0 siblings, 0 replies; 5+ messages in thread
From: Oren Laadan @ 2010-02-22 22:51 UTC (permalink / raw)
To: Nathan Lynch; +Cc: Linux Containers
Thanks, applied.
Nathan Lynch wrote:
> On Mon, 2010-02-22 at 11:58 -0600, Nathan Lynch wrote:
>> Thanks, I had already put together a local fix which adds a compat
>> header -- please use this instead of duplicating the work across files?
>
> Sorry, please use this one instead - fixed include guard in compat.h
>
>>From c0869556338592a92bad3b587d394add82267f99 Mon Sep 17 00:00:00 2001
> From: Nathan Lynch <ntl-e+AXbWqSrlAAvxtiuMwx3w@public.gmane.org>
> Date: Mon, 22 Feb 2010 11:50:46 -0600
> Subject: [PATCH 1/1] user-cr: add compat.h; define MNT_DETACH
>
> "nsexec: remount proc and devpts" introduced usage of the MNT_DETACH
> umount2 flag, which is not defined even in some relatively recent
> glibc headers (e.g. Fedora 10/glibc 2.9-3). Add a compat.h header
> where we can add fixups like this for older build environments.
>
> Signed-off-by: Nathan Lynch <ntl-e+AXbWqSrlAAvxtiuMwx3w@public.gmane.org>
> ---
> include/compat.h | 8 ++++++++
> nsexec.c | 1 +
> restart.c | 1 +
> 3 files changed, 10 insertions(+), 0 deletions(-)
> create mode 100644 include/compat.h
>
> diff --git a/include/compat.h b/include/compat.h
> new file mode 100644
> index 0000000..bcdd149
> --- /dev/null
> +++ b/include/compat.h
> @@ -0,0 +1,8 @@
> +#ifndef USER_CR_COMPAT_H
> +#define USER_CR_COMPAT_H
> +
> +#ifndef MNT_DETACH
> +#define MNT_DETACH 2
> +#endif
> +
> +#endif /* USER_CR_COMPAT_H */
> diff --git a/nsexec.c b/nsexec.c
> index 7a0294c..1cf9c97 100644
> --- a/nsexec.c
> +++ b/nsexec.c
> @@ -20,6 +20,7 @@
> #include "clone.h"
> #include "eclone.h"
> #include "genstack.h"
> +#include "compat.h"
>
> extern pid_t getpgid(pid_t pid);
> extern pid_t getsid(pid_t pid);
> diff --git a/restart.c b/restart.c
> index 166a499..f5d23bb 100644
> --- a/restart.c
> +++ b/restart.c
> @@ -38,6 +38,7 @@
>
> #include "eclone.h"
> #include "genstack.h"
> +#include "compat.h"
>
> static char usage_str[] =
> "usage: restart [opts]\n"
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2010-02-22 22:51 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-22 17:47 [PATCH user-cr] define MNT_DETACH in older userspace Serge E. Hallyn
[not found] ` <20100222174755.GA8329-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2010-02-22 17:57 ` Nathan Lynch
[not found] ` <1266861478.3760.2.camel-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
2010-02-22 18:03 ` Serge E. Hallyn
2010-02-22 18:07 ` Nathan Lynch
[not found] ` <1266862049.12720.1.camel-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
2010-02-22 22:51 ` Oren Laadan
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.