diff options
| author | K. Y. Srinivasan <kys@microsoft.com> | 2012-08-16 18:32:15 -0700 | 
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-08-17 08:23:57 -0700 | 
| commit | 0d5b6b197f9b9a58ead8ac5e68e38c068c31ba4c (patch) | |
| tree | f61fb47f15d12fc6d6146b4c0cc8be4a73554f21 /tools/hv | |
| parent | af733015c9f59a0993cb9a64e6904aed8612e8b3 (diff) | |
| download | linux-0d5b6b197f9b9a58ead8ac5e68e38c068c31ba4c.tar.bz2 | |
Tools: hv: Gather address family information
Now, gather address family information for the specified interface.
Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Reviewed-by: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'tools/hv')
| -rw-r--r-- | tools/hv/hv_kvp_daemon.c | 11 | 
1 files changed, 11 insertions, 0 deletions
| diff --git a/tools/hv/hv_kvp_daemon.c b/tools/hv/hv_kvp_daemon.c index 3dc989f57dc8..13ae098a0114 100644 --- a/tools/hv/hv_kvp_daemon.c +++ b/tools/hv/hv_kvp_daemon.c @@ -589,6 +589,17 @@ kvp_get_ip_address(int family, char *if_name, int op,  			continue;  		} +		if (op == KVP_OP_GET_IP_INFO) { +			/* +			 * Gather info other than the IP address. +			 * IP address info will be gathered later. +			 */ +			if (curp->ifa_addr->sa_family == AF_INET) +				ip_buffer->addr_family |= ADDR_FAMILY_IPV4; +			else +				ip_buffer->addr_family |= ADDR_FAMILY_IPV6; +		} +  		error = kvp_process_ip_address(curp->ifa_addr,  						curp->ifa_addr->sa_family,  						buffer, |