![]() |
lvs-devel
|
| To: | horms@xxxxxxxxxxxx |
|---|---|
| Subject: | [PATCH] ipvs: Use pointer to address from sync message |
| Cc: | netdev@xxxxxxxxxxxxxxx, lvs-devel@xxxxxxxxxxxxxxx, horms@xxxxxxxxxxxx, kaber@xxxxxxxxx, vbusam@xxxxxxxxxx, Julius Volz <juliusv@xxxxxxxxxx> |
| From: | Sven Wegener <sven.wegener@xxxxxxxxxxx> |
| Date: | Fri, 5 Sep 2008 13:46:00 +0200 (CEST) |
We want a pointer to it, not the value casted to a pointer.
Signed-off-by: Sven Wegener <sven.wegener@xxxxxxxxxxx>
---
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 lvs-devel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
|
| Previous by Date: | Re: [PATCH 2/2] ipvs: load balance ipv6 connections from a local process, Julius Volz |
|---|---|
| Next by Date: | [PATCH] ipvs: Return negative error values from ip_vs_edit_service(), Sven Wegener |
| Previous by Thread: | [PATCHv3 12/24] IPVS: Extend functions for getting/creating connections, Julius Volz |
| Next by Thread: | Re: [PATCH] ipvs: Use pointer to address from sync message, Julius Volz |
| Indexes: | [Date] [Thread] [Top] [All Lists] |