All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/4] LSM checkpoint/restart: introduction
@ 2009-09-10 20:22 ` Serge E. Hallyn
  0 siblings, 0 replies; 14+ messages in thread
From: Serge E. Hallyn @ 2009-09-10 20:22 UTC (permalink / raw)
  To: Oren Laadan; +Cc: Linux Containers, linux-security-module, SELinux


Following is a respin of the LSM checkpoint/restart patchset,
hopefully addressing most of the feedback I've gotten.

The patchset includes one (1/4) patch which is not directly
LSM-related, one (2/4) which implements the generic LSM c/r
support, one (3/4) implementing support for Smack, one
(4/4) implementing support for SELinux, and one (1/1)
updating the userspace program which initiates restart.

At this point I'm hoping to get some acks and get them pushed
to the c/r kernel tree, which is branch ckpt-v17-dev in
git://git.ncl.cs.columbia.edu/pub/git/linux-cr.git/.  Comments
are of course appreciated.  Once they sit in the tree for a bit,
I'll tackle the socket related LSM c/r.

thanks,
-serge

^ permalink raw reply	[flat|nested] 14+ messages in thread
* [PATCH 1/5] cr: define ckpt_debug if CONFIG_CHECKPOINT=n
@ 2009-08-28 21:00 Serge E. Hallyn
  2009-08-28 21:02 ` [PATCH 2/5] cr: checkpoint the active LSM and add RESTART_KEEP_LSM flag Serge E. Hallyn
  0 siblings, 1 reply; 14+ messages in thread
From: Serge E. Hallyn @ 2009-08-28 21:00 UTC (permalink / raw)
  To: Oren Laadan; +Cc: Linux Containers

So not all c/r code has to be ifdefed...

See patch 5/5 (add selinux support) for its use.

Signed-off-by: Serge E. Hallyn <serue-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
---
 include/linux/checkpoint.h |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/include/linux/checkpoint.h b/include/linux/checkpoint.h
index 761cad5..06e3eb0 100644
--- a/include/linux/checkpoint.h
+++ b/include/linux/checkpoint.h
@@ -337,6 +337,9 @@ extern unsigned long ckpt_debug_level;
 
 #endif /* CONFIG_CHECKPOINT_DEBUG */
 
+#else /* CONFIG_CHECKPOINT */
+#define _ckpt_debug(level, fmt, args...)	do { } while (0)
+#define ckpt_debug(fmt, args...)		do { } while (0)
 #endif /* CONFIG_CHECKPOINT */
 #endif /* __KERNEL__ */
 
-- 
1.6.1

^ permalink raw reply related	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2009-09-10 20:23 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-09-10 20:22 [PATCH 0/4] LSM checkpoint/restart: introduction Serge E. Hallyn
2009-09-10 20:22 ` Serge E. Hallyn
2009-09-10 20:22 ` [PATCH 1/4] cr: define ckpt_debug if CONFIG_CHECKPOINT=n Serge E. Hallyn
2009-09-10 20:22   ` Serge E. Hallyn
2009-09-10 20:23 ` [PATCH 2/4] cr: add generic LSM c/r support Serge E. Hallyn
2009-09-10 20:23   ` Serge E. Hallyn
2009-09-10 20:23 ` [PATCH 3/4] cr: add smack support to lsm c/r Serge E. Hallyn
2009-09-10 20:23   ` Serge E. Hallyn
2009-09-10 20:23 ` [PATCH 4/4] cr: add selinux support Serge E. Hallyn
2009-09-10 20:23   ` Serge E. Hallyn
2009-09-10 20:23 ` [PATCH 1/1] mktree: accept the lsm_name field in header and add -k flag Serge E. Hallyn
2009-09-10 20:23   ` Serge E. Hallyn
  -- strict thread matches above, loose matches on Subject: below --
2009-08-28 21:00 [PATCH 1/5] cr: define ckpt_debug if CONFIG_CHECKPOINT=n Serge E. Hallyn
2009-08-28 21:02 ` [PATCH 2/5] cr: checkpoint the active LSM and add RESTART_KEEP_LSM flag Serge E. Hallyn
2009-08-28 21:03   ` [PATCH 1/1] mktree: accept the lsm_name field in header and add -k flag Serge E. Hallyn
2009-08-28 21:03     ` Serge E. Hallyn

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.