diff options
author | chandrasekar marimuthu - Sun Microsystems - Bangalore India <Chandrasekar.Marimuthu@Sun.COM> | 2010-08-03 22:50:37 -0700 |
---|---|---|
committer | chandrasekar marimuthu - Sun Microsystems - Bangalore India <Chandrasekar.Marimuthu@Sun.COM> | 2010-08-03 22:50:37 -0700 |
commit | 6be61d4ea129a94bdfe33533b2bc265d4447f05c (patch) | |
tree | d8c613a1dbca052164f956ff107c8d5ee3e44bf6 /usr/src/cmd/mdb/common/modules/genunix | |
parent | 32c3e7eeacbc9a513544d1b4f631fd628cec7da3 (diff) | |
download | illumos-gate-6be61d4ea129a94bdfe33533b2bc265d4447f05c.tar.gz |
6912476 SCTP Observability issues with sctp_faddr_s & sctp_reass_s
6912478 SCTP_COMM_LOST notification is generated even if sctp association is not established
Diffstat (limited to 'usr/src/cmd/mdb/common/modules/genunix')
-rw-r--r-- | usr/src/cmd/mdb/common/modules/genunix/vfs.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr/src/cmd/mdb/common/modules/genunix/vfs.c b/usr/src/cmd/mdb/common/modules/genunix/vfs.c index 8001c41b3c..3ea333ddf8 100644 --- a/usr/src/cmd/mdb/common/modules/genunix/vfs.c +++ b/usr/src/cmd/mdb/common/modules/genunix/vfs.c @@ -19,8 +19,7 @@ * CDDL HEADER END */ /* - * Copyright 2009 Sun Microsystems, Inc. All rights reserved. - * Use is subject to license terms. + * Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved. */ #include <mdb/mdb_modapi.h> @@ -723,7 +722,7 @@ sctp_getpeeraddr(sctp_t *sctp, struct sockaddr *addr) mdb_warn("failed to read sctp primary faddr"); return (-1); } - faddr = sctp_primary.faddr; + faddr = sctp_primary.sf_faddr; switch (connp->conn_family) { case AF_INET: |