From: "Serge E. Hallyn" <serue-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
To: Dan Smith <danms-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
Cc: containers-qjLDD68F18O7TbgM5vRIOg@public.gmane.org
Subject: Re: [PATCH 1/5] Add an errno validation function (v2)
Date: Tue, 4 Aug 2009 14:10:12 -0500 [thread overview]
Message-ID: <20090804191012.GA10275@us.ibm.com> (raw)
In-Reply-To: <1249331463-11887-2-git-send-email-danms-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
Quoting Dan Smith (danms-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org):
> Signed-off-by: Dan Smith <danms-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
>
> Changes in v2:
> - Compare against MAX_ERRNO instead of more stringent but obscure
> constant
> ---
> include/linux/checkpoint.h | 6 +++++-
> 1 files changed, 5 insertions(+), 1 deletions(-)
>
> diff --git a/include/linux/checkpoint.h b/include/linux/checkpoint.h
> index 60d1116..b2c86a3 100644
> --- a/include/linux/checkpoint.h
> +++ b/include/linux/checkpoint.h
> @@ -28,7 +28,7 @@
> #include <linux/user_namespace.h>
> #include <linux/checkpoint_types.h>
> #include <linux/checkpoint_hdr.h>
> -
> +#include <linux/err.h>
>
> /* ckpt_ctx: kflags */
> #define CKPT_CTX_CHECKPOINT_BIT 0
> @@ -257,6 +257,10 @@ extern void *restore_sighand(struct ckpt_ctx *ctx);
> memcpy(LIVE, SAVE, count * sizeof(*SAVE)); \
> } while (0)
>
> +static inline int ckpt_validate_errno(int errno)
> +{
> + return (errno >= 0) && (errno < MAX_ERRNO);
> +}
Maybe i should take a break and re-read in a few minutes, but
don't you want this to be:
return (errno > 0) && (errno <= MAX_ERRNO));
>
> /* debugging flags */
> #define CKPT_DBASE 0x1 /* anything */
> --
> 1.6.2.5
>
> _______________________________________________
> Containers mailing list
> Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
> https://lists.linux-foundation.org/mailman/listinfo/containers
next prev parent reply other threads:[~2009-08-04 19:10 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-08-03 20:30 C/R support of UNIX sockets Dan Smith
2009-08-03 20:31 ` [PATCH 3/5] Add common socket helpers to unify the security hooks Dan Smith
2009-08-04 19:20 ` Serge E. Hallyn
2009-08-04 19:43 ` Dan Smith
2009-08-04 19:58 ` Serge E. Hallyn
[not found] ` <1249331463-11887-1-git-send-email-danms-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2009-08-03 20:30 ` [PATCH 1/5] Add an errno validation function (v2) Dan Smith
[not found] ` <1249331463-11887-2-git-send-email-danms-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2009-08-04 19:10 ` Serge E. Hallyn [this message]
2009-08-03 20:31 ` [PATCH 2/5] Add a ckpt_read_string() " Dan Smith
[not found] ` <1249331463-11887-3-git-send-email-danms-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2009-08-04 19:13 ` Serge E. Hallyn
[not found] ` <20090804191334.GB10275-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2009-08-04 19:20 ` Dan Smith
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
2009-08-03 20:31 ` [PATCH 5/5] c/r: Add AF_UNIX support (v7) Dan Smith
2009-08-04 19:57 ` Serge E. Hallyn
2009-08-04 20:52 ` Serge E. Hallyn
2009-08-04 21:02 ` Dan Smith
2009-08-04 21:17 ` Serge E. Hallyn
2009-08-04 22:24 ` Dan Smith
2009-08-04 22:31 ` Serge E. Hallyn
2009-08-04 22:47 ` Dan Smith
2009-08-05 13:29 ` Serge E. Hallyn
-- strict thread matches above, loose matches on Subject: below --
2009-08-10 15:32 C/R support of UNIX sockets 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
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=20090804191012.GA10275@us.ibm.com \
--to=serue-r/jw6+rmf7hqt0dzr+alfa@public.gmane.org \
--cc=containers-qjLDD68F18O7TbgM5vRIOg@public.gmane.org \
--cc=danms-r/Jw6+rmf7HQT0dZR+AlfA@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