[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20070126185822.GA18361@sergelap.austin.ibm.com>
Date: Fri, 26 Jan 2007 12:58:22 -0600
From: "Serge E. Hallyn" <serue@...ibm.com>
To: Michal Piotrowski <michal.k.k.piotrowski@...il.com>
Cc: "Serge E. Hallyn" <serue@...ibm.com>, linux-kernel@...r.kernel.org,
Andrew Morton <akpm@...l.org>, clg@...ibm.com,
herbert@...hfloor.at, oleg@...sign.ru, daniel@...ac.com
Subject: Re: mm snapshot broken-out-2007-01-26-00-36.tar.gz uploaded
Quoting Michal Piotrowski (michal.k.k.piotrowski@...il.com):
> On 26/01/07, Serge E. Hallyn <serue@...ibm.com> wrote:
> >Can you send me your series file for broken-out-2007-01-26-00-36.tar.gz,
> >and I'll try to iron these out? This is due to an older patch of
> >Cedric's being applied at the same time as the preexit_task_namespaces
> >one, and I just need to properly integrate them.
>
> ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/mm/broken-out-2007-01-26-00-36.tar.gz
>
> Series file is in the archive, but not in broken-out dir as usually.
Ah! Sorry.
Ok, this patch should hopefully resolve the conflict between the two
patches, however I can't compile due to some noisy atomic64_xchg
problem and a few other failures.
-serge
From: "Serge E. Hallyn" <serue@...ibm.com>
Subject: [PATCH] namespaces: resolve conflicts between two patches
Two patches affecting nsproxy conflicted preventing compilation.
Hopefully this resolves all the problems.
Signed-off-by: Serge E. Hallyn <serue@...ibm.com>
---
include/linux/nsproxy.h | 8 ++------
kernel/nsproxy.c | 5 +++++
2 files changed, 7 insertions(+), 6 deletions(-)
300377d87b9889b5c2f5822bfb458f00ef3addd5
diff --git a/include/linux/nsproxy.h b/include/linux/nsproxy.h
index 45f68de..d519290 100644
--- a/include/linux/nsproxy.h
+++ b/include/linux/nsproxy.h
@@ -51,11 +51,7 @@ static inline void put_and_finalize_nspr
finalize_put_nsproxy(put_nsproxy(ns));
}
-static inline struct nsproxy *preexit_task_namespaces(struct task_struct *p)
-{
- return put_nsproxy(p->nsproxy);
-}
-
-extern void exit_task_namespaces(struct task_struct *p);
+extern struct nsproxy *preexit_task_namespaces(struct task_struct *p);
+extern void exit_task_namespaces(struct task_struct *p, struct nsproxy *ns);
#endif
diff --git a/kernel/nsproxy.c b/kernel/nsproxy.c
index afdb9fb..bbe94df 100644
--- a/kernel/nsproxy.c
+++ b/kernel/nsproxy.c
@@ -167,6 +167,11 @@ struct nsproxy *put_nsproxy(struct nspro
return NULL;
}
+struct nsproxy *preexit_task_namespaces(struct task_struct *p)
+{
+ return put_nsproxy(p->nsproxy);
+}
+
void free_nsproxy(struct nsproxy *ns)
{
if (ns->mnt_ns)
--
1.1.6
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists