[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <alpine.LNX.2.00.0809051342360.18192@titan.stealer.net>
Date: Fri, 5 Sep 2008 13:46:00 +0200 (CEST)
From: Sven Wegener <sven.wegener@...aler.net>
To: horms@...ge.net.au
cc: netdev@...r.kernel.org, lvs-devel@...r.kernel.org,
horms@...ge.net.au, kaber@...sh.net, vbusam@...gle.com,
Julius Volz <juliusv@...gle.com>
Subject: [PATCH] ipvs: Use pointer to address from sync message
We want a pointer to it, not the value casted to a pointer.
Signed-off-by: Sven Wegener <sven.wegener@...aler.net>
---
net/ipv4/ipvs/ip_vs_sync.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
I've been too late with having a look at these patches. I'm going to
send follow-up patches for the issues I find.
Simon, please apply onto lvs-next-2.6.
diff --git a/net/ipv4/ipvs/ip_vs_sync.c b/net/ipv4/ipvs/ip_vs_sync.c
index 40647ed..28237a5 100644
--- a/net/ipv4/ipvs/ip_vs_sync.c
+++ b/net/ipv4/ipvs/ip_vs_sync.c
@@ -397,11 +397,11 @@ static void ip_vs_process_message(const char *buffer, const size_t buflen)
flags &= ~IP_VS_CONN_F_INACTIVE;
}
cp = ip_vs_conn_new(AF_INET, s->protocol,
- (union nf_inet_addr *)s->caddr,
+ (union nf_inet_addr *)&s->caddr,
s->cport,
- (union nf_inet_addr *)s->vaddr,
+ (union nf_inet_addr *)&s->vaddr,
s->vport,
- (union nf_inet_addr *)s->daddr,
+ (union nf_inet_addr *)&s->daddr,
s->dport,
flags, dest);
if (dest)
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists