summaryrefslogtreecommitdiff
path: root/azurelinuxagent/common/rdma.py
diff options
context:
space:
mode:
authorƁukasz 'sil2100' Zemczak <lukasz.zemczak@ubuntu.com>2017-01-16 10:10:41 +0100
committerusd-importer <ubuntu-server@lists.ubuntu.com>2017-01-17 17:53:13 +0000
commitdd73af563850762aad64e7ed2a9897377830af10 (patch)
tree33f34ccce29a5a11227741dbe6a8fce20deeeaba /azurelinuxagent/common/rdma.py
parenta05019d9343d0fde153d75a8e61fb6f99d1d3ff3 (diff)
parent558111e33720eb8f1eaacf571cf4fadae2430286 (diff)
downloadvyos-walinuxagent-dd73af563850762aad64e7ed2a9897377830af10.tar.gz
vyos-walinuxagent-dd73af563850762aad64e7ed2a9897377830af10.zip
Import patches-applied version 2.2.2-0ubuntu1 to applied/ubuntu/zesty-proposed
Imported using git-ubuntu import. Changelog parent: a05019d9343d0fde153d75a8e61fb6f99d1d3ff3 Unapplied parent: 558111e33720eb8f1eaacf571cf4fadae2430286 New changelog entries: * New upstream release (LP: #1651128) - d/patches/fix-auto-update.patch, d/patches/lp1623570-adjust-walinuxagent-service-after-and-wants.patch: - Dropped as changes have been applied upstream - Refreshed debian/patches/disable_import_test.patch
Diffstat (limited to 'azurelinuxagent/common/rdma.py')
-rw-r--r--azurelinuxagent/common/rdma.py57
1 files changed, 49 insertions, 8 deletions
diff --git a/azurelinuxagent/common/rdma.py b/azurelinuxagent/common/rdma.py
index 0c17e38..ba9a029 100644
--- a/azurelinuxagent/common/rdma.py
+++ b/azurelinuxagent/common/rdma.py
@@ -86,8 +86,7 @@ class RDMAHandler(object):
driver_info_source = '/var/lib/hyperv/.kvp_pool_0'
base_kernel_err_msg = 'Kernel does not provide the necessary '
- base_kernel_err_msg += 'information or the hv_kvp_daemon is not '
- base_kernel_err_msg += 'running.'
+ base_kernel_err_msg += 'information or the kvp daemon is not running.'
if not os.path.isfile(driver_info_source):
error_msg = 'RDMA: Source file "%s" does not exist. '
error_msg += base_kernel_err_msg
@@ -110,6 +109,26 @@ class RDMAHandler(object):
logger.error(error_msg % driver_info_source)
return
+ @staticmethod
+ def is_kvp_daemon_running():
+ """Look for kvp daemon names in ps -ef output and return True/False
+ """
+ # for centos, the hypervkvpd and the hv_kvp_daemon both are ok.
+ # for suse, it uses hv_kvp_daemon
+ kvp_daemon_names = ['hypervkvpd', 'hv_kvp_daemon']
+
+ exitcode, ps_out = shellutil.run_get_output("ps -ef")
+ if exitcode != 0:
+ raise Exception('RDMA: ps -ef failed: %s' % ps_out)
+ for n in kvp_daemon_names:
+ if n in ps_out:
+ logger.info('RDMA: kvp daemon (%s) is running' % n)
+ return True
+ else:
+ logger.verbose('RDMA: kvp daemon (%s) is not running' % n)
+ return False
+
+
def load_driver_module(self):
"""Load the kernel driver, this depends on the proper driver
to be installed with the install_driver() method"""
@@ -178,12 +197,33 @@ class RDMADeviceHandler(object):
threading.Thread(target=self.process).start()
def process(self):
- RDMADeviceHandler.wait_rdma_device(
- self.rdma_dev, self.device_check_timeout_sec, self.device_check_interval_sec)
- RDMADeviceHandler.update_dat_conf(dapl_config_paths, self.ipv4_addr)
- RDMADeviceHandler.write_rdma_config_to_device(
- self.rdma_dev, self.ipv4_addr, self.mac_addr)
- RDMADeviceHandler.update_network_interface(self.mac_addr, self.ipv4_addr)
+ try:
+ RDMADeviceHandler.update_dat_conf(dapl_config_paths, self.ipv4_addr)
+
+ skip_rdma_device = False
+ retcode,out = shellutil.run_get_output("modinfo hv_network_direct")
+ if retcode == 0:
+ version = re.search("version:\s+(\d+)\.(\d+)\.(\d+)\D", out, re.IGNORECASE)
+ if version:
+ v1 = int(version.groups(0)[0])
+ v2 = int(version.groups(0)[1])
+ if v1>4 or v1==4 and v2>0:
+ logger.info("Skip setting /dev/hvnd_rdma on 4.1 or later")
+ skip_rdma_device = True
+ else:
+ logger.info("RDMA: hv_network_direct driver version not present, assuming 4.0.x or older.")
+ else:
+ logger.warn("RDMA: failed to get module info on hv_network_direct.")
+
+ if not skip_rdma_device:
+ RDMADeviceHandler.wait_rdma_device(
+ self.rdma_dev, self.device_check_timeout_sec, self.device_check_interval_sec)
+ RDMADeviceHandler.write_rdma_config_to_device(
+ self.rdma_dev, self.ipv4_addr, self.mac_addr)
+
+ RDMADeviceHandler.update_network_interface(self.mac_addr, self.ipv4_addr)
+ except Exception as e:
+ logger.error("RDMA: device processing failed: {0}".format(e))
@staticmethod
def update_dat_conf(paths, ipv4_addr):
@@ -221,6 +261,7 @@ class RDMADeviceHandler(object):
logger.info(
"RDMA: Updating device with configuration: {0}".format(data))
with open(path, "w") as f:
+ logger.info("RDMA: Device opened for writing")
f.write(data)
logger.info("RDMA: Updated device with IPv4/MAC addr successfully")