]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
hv/hv_kvp_daemon: Pass NIC name to hv_get_dns_info as well
authorVitaly Kuznetsov <vkuznets@redhat.com>
Tue, 12 Nov 2024 15:04:01 +0000 (16:04 +0100)
committerWei Liu <wei.liu@kernel.org>
Mon, 9 Dec 2024 18:44:15 +0000 (18:44 +0000)
The reference implementation of hv_get_dns_info which is in the tree uses
/etc/resolv.conf to get DNS servers and this does not require to know which
NIC is queried. Distro specific implementations, however, may want to
provide per-NIC, fine grained information. E.g. NetworkManager keeps track
of DNS servers per connection.

Similar to hv_get_dhcp_info, pass NIC name as a parameter to
hv_get_dns_info script.

Signed-off-by: Vitaly Kuznetsov <vkuznets@redhat.com>
Link: https://lore.kernel.org/r/20241112150401.217094-1-vkuznets@redhat.com
Signed-off-by: Wei Liu <wei.liu@kernel.org>
Message-ID: <20241112150401.217094-1-vkuznets@redhat.com>

tools/hv/hv_kvp_daemon.c

index ae57bf69ad4af3aa51fd364e89676469dd87a14d..296a7a62c54d37a1c5d56019f1d3e4281100f0e8 100644 (file)
@@ -725,7 +725,7 @@ static void kvp_get_ipconfig_info(char *if_name,
         * .
         */
 
-       sprintf(cmd, KVP_SCRIPTS_PATH "%s",  "hv_get_dns_info");
+       sprintf(cmd, KVP_SCRIPTS_PATH "%s %s", "hv_get_dns_info", if_name);
 
        /*
         * Execute the command to gather DNS info.