Linux Container Development
 help / color / mirror / Atom feed
From: Dan Smith <danms-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
To: containers-qjLDD68F18O7TbgM5vRIOg@public.gmane.org
Subject: [PATCH 4/5] Export fill_fname() as ckpt_fill_fname()
Date: Mon, 10 Aug 2009 08:32:58 -0700	[thread overview]
Message-ID: <1249918379-29414-5-git-send-email-danms@us.ibm.com> (raw)
In-Reply-To: <1249918379-29414-1-git-send-email-danms-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>

Acked-by: Serge Hallyn <serue-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
Signed-off-by: Dan Smith <danms-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
---
 checkpoint/files.c         |    8 ++++----
 include/linux/checkpoint.h |    2 ++
 2 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/checkpoint/files.c b/checkpoint/files.c
index 78cd9b7..7aecac9 100644
--- a/checkpoint/files.c
+++ b/checkpoint/files.c
@@ -28,14 +28,14 @@
  */
 
 /**
- * fill_fname - return pathname of a given file
+ * ckpt_fill_fname - return pathname of a given file
  * @path: path name
  * @root: relative root
  * @buf: buffer for pathname
  * @len: buffer length (in) and pathname length (out)
  */
-static char *fill_fname(struct path *path, struct path *root,
-			char *buf, int *len)
+char *ckpt_fill_fname(struct path *path, struct path *root,
+		      char *buf, int *len)
 {
 	struct path tmp = *root;
 	char *fname;
@@ -79,7 +79,7 @@ int checkpoint_fname(struct ckpt_ctx *ctx, struct path *path, struct path *root)
 	if (!buf)
 		return -ENOMEM;
 
-	fname = fill_fname(path, root, buf, &flen);
+	fname = ckpt_fill_fname(path, root, buf, &flen);
 	if (!IS_ERR(fname))
 		ret = ckpt_write_obj_type(ctx, fname, flen,
 					  CKPT_HDR_FILE_NAME);
diff --git a/include/linux/checkpoint.h b/include/linux/checkpoint.h
index a6935b3..c3c9436 100644
--- a/include/linux/checkpoint.h
+++ b/include/linux/checkpoint.h
@@ -72,6 +72,8 @@ extern int ckpt_read_string(struct ckpt_ctx *ctx, char **str, int max);
 extern void *ckpt_read_obj_type(struct ckpt_ctx *ctx, int len, int type);
 extern void *ckpt_read_buf_type(struct ckpt_ctx *ctx, int len, int type);
 extern int ckpt_read_consume(struct ckpt_ctx *ctx, int len, int type);
+extern char *ckpt_fill_fname(struct path *path, struct path *root,
+			     char *buf, int *len);
 
 /* ckpt kflags */
 #define ckpt_set_ctx_kflag(__ctx, __kflag)  \
-- 
1.6.2.5

  parent reply	other threads:[~2009-08-10 15:32 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-08-10 15:32 C/R support of UNIX sockets Dan Smith
2009-08-10 15:32 ` [PATCH 3/5] Add common socket helpers to unify the security hooks Dan Smith
2009-08-10 15:32 ` [PATCH 5/5] c/r: Add AF_UNIX support (v8) Dan Smith
2009-08-10 21:02   ` Serge E. Hallyn
2009-08-10 21:06     ` Dan Smith
     [not found] ` <1249918379-29414-1-git-send-email-danms-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2009-08-10 15:32   ` [PATCH 1/5] Add an errno validation function (v2) Dan Smith
     [not found]     ` <1249918379-29414-2-git-send-email-danms-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2009-08-10 18:31       ` Serge E. Hallyn
     [not found]         ` <20090810183106.GA24373-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2009-08-10 18:34           ` Dan Smith
     [not found]             ` <87k51b5xi6.fsf-FLMGYpZoEPULwtHQx/6qkW3U47Q5hpJU@public.gmane.org>
2009-08-12  6:12               ` Oren Laadan
2009-08-10 15:32   ` [PATCH 2/5] Add a ckpt_read_string() function (v3) Dan Smith
     [not found]     ` <1249918379-29414-3-git-send-email-danms-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2009-08-12  6:17       ` Oren Laadan
2009-08-10 15:32   ` Dan Smith [this message]
2009-08-12  6:12   ` C/R support of UNIX sockets Oren Laadan
  -- strict thread matches above, loose matches on Subject: below --
2009-08-03 20:30 Dan Smith
     [not found] ` <1249331463-11887-1-git-send-email-danms-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2009-08-03 20:31   ` [PATCH 4/5] Export fill_fname() as ckpt_fill_fname() Dan Smith
     [not found]     ` <1249331463-11887-5-git-send-email-danms-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2009-08-04 19:24       ` Serge E. Hallyn

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1249918379-29414-5-git-send-email-danms@us.ibm.com \
    --to=danms-r/jw6+rmf7hqt0dzr+alfa@public.gmane.org \
    --cc=containers-qjLDD68F18O7TbgM5vRIOg@public.gmane.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox