* [PATCH] Remove an unnecessary check on socket restart
@ 2009-10-01 22:04 Dan Smith
[not found] ` <1254434651-6540-1-git-send-email-danms-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
0 siblings, 1 reply; 3+ messages in thread
From: Dan Smith @ 2009-10-01 22:04 UTC (permalink / raw)
To: containers-qjLDD68F18O7TbgM5vRIOg
This check is removed because it cannot be true because of the
unsigned nature of the value being examined.
Signed-off-by: Dan Smith <danms-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
Cc: serue-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org
Cc: orenl-RdfvBDnrOixBDgjK7y7TUQ@public.gmane.org
---
net/checkpoint.c | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/net/checkpoint.c b/net/checkpoint.c
index a11ec7a..0087a8a 100644
--- a/net/checkpoint.c
+++ b/net/checkpoint.c
@@ -484,8 +484,7 @@ static int sock_cptrst(struct ckpt_ctx *ctx, struct sock *sk,
(h->sock.state >= TCP_MAX_STATES)) {
ckpt_debug("sock in invalid state: %i", h->sock.state);
return -EINVAL;
- } else if ((h->socket.state < SS_FREE) ||
- (h->socket.state > SS_DISCONNECTING)) {
+ } else if (h->socket.state > SS_DISCONNECTING) {
ckpt_debug("socket in invalid state: %i",
h->socket.state);
return -EINVAL;
--
1.6.0.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] Remove an unnecessary check on socket restart
[not found] ` <1254434651-6540-1-git-send-email-danms-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
@ 2009-10-01 22:25 ` Serge E. Hallyn
2009-10-01 23:07 ` Oren Laadan
1 sibling, 0 replies; 3+ messages in thread
From: Serge E. Hallyn @ 2009-10-01 22:25 UTC (permalink / raw)
To: Dan Smith; +Cc: containers-qjLDD68F18O7TbgM5vRIOg
Quoting Dan Smith (danms-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org):
> This check is removed because it cannot be true because of the
> unsigned nature of the value being examined.
>
> Signed-off-by: Dan Smith <danms-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
Thanks. I actually do keep missing real errors bc of the
noise (most of which comes from cred.h :( ), so I appreciate
every bit they can be reduced.
Acked-by: Serge Hallyn <serue-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
> Cc: serue-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org
> Cc: orenl-RdfvBDnrOixBDgjK7y7TUQ@public.gmane.org
> ---
> net/checkpoint.c | 3 +--
> 1 files changed, 1 insertions(+), 2 deletions(-)
>
> diff --git a/net/checkpoint.c b/net/checkpoint.c
> index a11ec7a..0087a8a 100644
> --- a/net/checkpoint.c
> +++ b/net/checkpoint.c
> @@ -484,8 +484,7 @@ static int sock_cptrst(struct ckpt_ctx *ctx, struct sock *sk,
> (h->sock.state >= TCP_MAX_STATES)) {
> ckpt_debug("sock in invalid state: %i", h->sock.state);
> return -EINVAL;
> - } else if ((h->socket.state < SS_FREE) ||
> - (h->socket.state > SS_DISCONNECTING)) {
> + } else if (h->socket.state > SS_DISCONNECTING) {
> ckpt_debug("socket in invalid state: %i",
> h->socket.state);
> return -EINVAL;
> --
> 1.6.0.4
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] Remove an unnecessary check on socket restart
[not found] ` <1254434651-6540-1-git-send-email-danms-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2009-10-01 22:25 ` Serge E. Hallyn
@ 2009-10-01 23:07 ` Oren Laadan
1 sibling, 0 replies; 3+ messages in thread
From: Oren Laadan @ 2009-10-01 23:07 UTC (permalink / raw)
To: Dan Smith; +Cc: containers-qjLDD68F18O7TbgM5vRIOg
To appear in ckpt-v18-dev, thanks.
Dan Smith wrote:
> This check is removed because it cannot be true because of the
> unsigned nature of the value being examined.
>
> Signed-off-by: Dan Smith <danms-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
> Cc: serue-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org
> Cc: orenl-RdfvBDnrOixBDgjK7y7TUQ@public.gmane.org
> ---
> net/checkpoint.c | 3 +--
> 1 files changed, 1 insertions(+), 2 deletions(-)
>
> diff --git a/net/checkpoint.c b/net/checkpoint.c
> index a11ec7a..0087a8a 100644
> --- a/net/checkpoint.c
> +++ b/net/checkpoint.c
> @@ -484,8 +484,7 @@ static int sock_cptrst(struct ckpt_ctx *ctx, struct sock *sk,
> (h->sock.state >= TCP_MAX_STATES)) {
> ckpt_debug("sock in invalid state: %i", h->sock.state);
> return -EINVAL;
> - } else if ((h->socket.state < SS_FREE) ||
> - (h->socket.state > SS_DISCONNECTING)) {
> + } else if (h->socket.state > SS_DISCONNECTING) {
> ckpt_debug("socket in invalid state: %i",
> h->socket.state);
> return -EINVAL;
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2009-10-01 23:07 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-10-01 22:04 [PATCH] Remove an unnecessary check on socket restart Dan Smith
[not found] ` <1254434651-6540-1-git-send-email-danms-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2009-10-01 22:25 ` Serge E. Hallyn
2009-10-01 23:07 ` 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.