summaryrefslogtreecommitdiffstats
path: root/sys/cam
diff options
context:
space:
mode:
authormav <mav@FreeBSD.org>2015-10-05 11:24:51 +0000
committermav <mav@FreeBSD.org>2015-10-05 11:24:51 +0000
commitf0e87e63ba1bf22d7cda3389b64c3e28d1e6fcd1 (patch)
tree6ea5e4af37665777a287a4f61bd62c5499946a77 /sys/cam
parentb37b5b0e0eac51779ff8977ecb64749f99865840 (diff)
downloadFreeBSD-src-f0e87e63ba1bf22d7cda3389b64c3e28d1e6fcd1.zip
FreeBSD-src-f0e87e63ba1bf22d7cda3389b64c3e28d1e6fcd1.tar.gz
MFC r288247: Pass to sobind() copy of the address, not the original.
Diffstat (limited to 'sys/cam')
-rw-r--r--sys/cam/ctl/ctl_ha.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/sys/cam/ctl/ctl_ha.c b/sys/cam/ctl/ctl_ha.c
index 49eb49e..5e31b41 100644
--- a/sys/cam/ctl/ctl_ha.c
+++ b/sys/cam/ctl/ctl_ha.c
@@ -427,6 +427,7 @@ static int
ctl_ha_connect(struct ha_softc *softc)
{
struct thread *td = curthread;
+ struct sockaddr_in sa;
struct socket *so;
int error;
@@ -440,7 +441,8 @@ ctl_ha_connect(struct ha_softc *softc)
softc->ha_so = so;
ctl_ha_sock_setup(softc);
- error = soconnect(so, (struct sockaddr *)&softc->ha_peer_in, td);
+ memcpy(&sa, &softc->ha_peer_in, sizeof(sa));
+ error = soconnect(so, (struct sockaddr *)&sa, td);
if (error != 0) {
printf("%s: soconnect() error %d\n", __func__, error);
goto out;
@@ -517,6 +519,7 @@ static int
ctl_ha_listen(struct ha_softc *softc)
{
struct thread *td = curthread;
+ struct sockaddr_in sa;
struct sockopt opt;
int error, val;
@@ -557,7 +560,8 @@ ctl_ha_listen(struct ha_softc *softc)
SOCKBUF_UNLOCK(&softc->ha_lso->so_rcv);
}
- error = sobind(softc->ha_lso, (struct sockaddr *)&softc->ha_peer_in, td);
+ memcpy(&sa, &softc->ha_peer_in, sizeof(sa));
+ error = sobind(softc->ha_lso, (struct sockaddr *)&sa, td);
if (error != 0) {
printf("%s: sobind() error %d\n", __func__, error);
goto out;
OpenPOWER on IntegriCloud