Sunday, January 02, 2022

GPU rendering not working for video, desktop on Linux with UHD 630



I ran across some issues with Fedora 34 (and 35) running on a z590 + UHD 630 platform. The first problem was that it could not run Wayland, instead it would fall back to Xorg. An easy way to see if you are using X11 or wayland:


$ echo $XDG_SESSION_TYPE

x11

$ 


After  poking around on web searches and a bit of fiddling, I still could not get Wayland to work, so assumed my hardware was not supported, as a), it was fairly new at the time, and b), I seem to recall that when I booted off the USB drive into the Fedora installer it gave me a black screen, and I had to choose 'basic graphics' to be able go through with the GUI install.


Once I'd gotten the OS installed, I found a second problem: it was not using the GPU to render the desktop or decode video. Just moving a terminal window around, with no other windows running, would use 150% of CPU, as shown on 'top' (this was a core-i9 10900T, with 10 cores, 20 threads). Playing back a 1080p x264 video would show 800% of CPU in top, with the gnome-shell itself using another 200% as well. I tried various different video players, such as VLC, Totem and MPV, all showed the same high CPU usage. I looked at various options in VLC to see if I was perhaps missing hardware decoding, but could not find anything obvious. Using MPV on the command line gave me a hint, as it reported that it was using a software renderer: 


$ mpv --vo=gpu --hwdec=vaapi myvideo.mkv


 (+) Video --vid=1 (*) (h264 1920x1040 23.976fps)

libEGL warning: DRI2: failed to authenticate

[vo/gpu/opengl] Suspected software renderer or indirect context.

[vo/gpu/opengl] Suspected software renderer or indirect context.

[vo/gpu] VT_GETMODE failed: Inappropriate ioctl for device

[vo/gpu/opengl] Failed to set up VT switcher. Terminal switching will be unavailable.

[vo/gpu/opengl] Listing DRM devices with drmGetDevices failed! (No such file or directory)

[vo/gpu/opengl] Failed to find a usable DRM primary node!

[vo/gpu/opengl] Failed to create KMS.

[vo/gpu/vulkan/libplacebo] Found no suitable device, giving up.

[vo/gpu/vulkan/libplacebo] Failed initializing vulkan device

Failed to open VDPAU backend libvdpau_nvidia.so: cannot open shared object file: No such file or directory

[vo/vdpau] Error when calling vdp_device_create_x11: 1

[vo/xv] No Xvideo support found.

[vo/sdl] Using opengl

[vo/sdl] Warning: this legacy VO has bad performance. Consider fixing your graphics drivers, or not forcing the sdl VO.

AO: [pulse] 48000Hz 5.1(side) 6ch float

VO: [sdl] 1920x1040 yuv420p

AV: 00:00:04 / 01:47:24 (0%) A-V:  0.000

Exiting... (Quit)

$ 


As above, I tried specifying vaapi (the Intel video acceleration API) and vo=gpu and it made no difference to performance (the result was the same without specifying any decoder or vo option). Playing the same mkv on another desktop machine (which had an Nvidia geforce GT 710) showed the equivalent of about 80% of one hardware thread being used.


Some tools for checking hardware and driver info:


$ inxi -GxxS

System:    Host: fedora Kernel: 5.14.16-301.fc35.x86_64 x86_64 bits: 64 compiler: gcc v: 2.37-10.fc35 Desktop: GNOME 41.1

           tk: GTK 3.24.30 wm: gnome-shell dm: GDM Distro: Fedora release 35 (Thirty Five)

Graphics:  Device-1: Intel CometLake-S GT2 [UHD Graphics 630] vendor: Micro-Star MSI driver: N/A bus-ID: 00:02.0

           chip-ID: 8086:9bc5

           Display: x11 server: X.Org 1.20.11 compositor: gnome-shell driver: loaded: vesa unloaded: fbdev,modesetting

           resolution: 2560x1440~93Hz s-dpi: 96

           OpenGL: renderer: llvmpipe (LLVM 13.0.0 256 bits) v: 4.5 Mesa 21.3.2 direct render: Yes

$


i915 driver is loaded:


# lsmod|grep i915

i915                 2936832  0

i2c_algo_bit           16384  1 i915

ttm                    86016  1 i915

drm_kms_helper        303104  1 i915

cec                    61440  2 drm_kms_helper,i915

drm                   630784  3 drm_kms_helper,i915,ttm

video                  57344  1 i915

#


I also ran a modinfo on the i915 kernel module (I forgot to put the output here prior to fixing the issue so that's why I haven't posted it. Plus it is a lot of text)


The xorg driver version (from an rpm -qa|grep xorg):


xorg-x11-drv-intel-2.99.917-51.20200205.fc35.x86_64


I had the userspace VA Intel driver packages installed:


$ rpm -qa|grep libva

libva-2.13.0-1.fc35.x86_64

libva-intel-driver-2.4.1-6.fc35.x86_64

libva-utils-2.13.0-1.fc35.x86_64

$


However, vainfo reported:


$ vainfo

libva info: VA-API version 1.13.0

libva error: vaGetDriverNameByIndex() failed with unknown libva error, driver_name = (null)

vaInitialize failed with error code -1 (unknown libva error),exit

$


$ export LIBVA_DRIVER_NAME=i915 LIBVA_TRACE=1

$ vainfo --display x11

libva info: Open new log file 1.125217.thd-0x00037e8c for the thread 0x00037e8c

libva info: LIBVA_TRACE is on, save log into 1.125217.thd-0x00037e8c

libva info: VA-API version 1.13.0

libva info: User environment variable requested driver 'i965'

libva info: Trying to open /usr/lib64/dri/i915_drv_video.so

libva info: Found init function __vaDriverInit_1_12

libva error: /usr/lib64/dri/i915_drv_video.so init failed

libva info: va_openDriver() returns -1

vaInitialize failed with error code -1 (unknown libva error),exit

$


So it is looking for the 'i915' driver, but can't initialize it, though it is present: 


$ ls -l /usr/lib64/dri/i915_drv_video.so

-rwxr-xr-x 1 root root 8233672 Aug  3 11:09 /usr/lib64/dri/i915_drv_video.so

$


and is provided by 


$ rpm -qf /usr/lib64/dri/i915_drv_video.so

libva-intel-driver-2.4.1-6.fc35.x86_64

$


$ xdpyinfo | grep DRI

    DRI2

$


There were various posts mentioning using the i965 driver. The user space i965 driver is supplied by the libva-intel-driver. There is no kernel module for the i965, just the i915. I also tried specifying the i965 driver with LIBVA_DRIVER_NAME, but the same result. I saw a post that says that when using the UHD 630, the 'intel-media-driver' package should be used, which was installed. It provides the Intel HD (iHD) driver:


/usr/lib64/dri/iHD_drv_video.so


$ export LIBVA_DRIVER_NAME=iHD LIBVA_TRACE=1


$ vainfo


libva info: Open new log file 1.131754.thd-0x00001fc2 for the thread 0x00001fc2

libva info: LIBVA_TRACE is on, save log into 1.131754.thd-0x00001fc2

libva info: VA-API version 1.13.0

libva info: User environment variable requested driver 'iHD'

libva info: Trying to open /usr/lib64/dri/iHD_drv_video.so

libva info: Found init function __vaDriverInit_1_13

libva error: /usr/lib64/dri/iHD_drv_video.so init failed

libva info: va_openDriver() returns 2

vaInitialize failed with error code 2 (resource allocation failed),exit


$


Same problem.

/usr/lib64/dri/iHD_drv_video.so exists:


$ ls -l /usr/lib64/dri/iHD_drv_video.so

-rwxr-xr-x 1 root root 36802680 Dec 19 19:36 /usr/lib64/dri/iHD_drv_video.so

$


Since I already have the intel-media-driver package installed already, maybe uninstalling the libva-intel-driver would help? I did that (it wouldn't allow me to uninstall libva, as it would remove gnome!). I then rebooted to see if it might use the iHD user-space driver. It seemed to do a lot of stuff at boot (I couldn't see what it was doing as I didn't have a monitor attached, but from the disk activity LED being so busy I think it was rebuilding the initrd). Sadly this didn't fix the issue, and the vainfo was the same as above for iHD. 


I'm not quite sure whether GL is relevant here at all (I thought that was only used for 3D stuff - perhaps only if using something like Compiz?). But perhaps the report can be useful as it shows the state of 3D support from the hardware. I didn't save the output before fixing the issue, but it reported a lot of 'slow' and 'none' on the registers in the full output. Comparing this with a functioning Nvidia setup, all those registers are 'none'. Here's the top portion of output from glxinfo which I captured, though not showing the register info, which is very extensive):


$ LIBGL_DEBUG=1 glxinfo -B


name of display: :1

libGL: Can't open configuration file /etc/drirc: No such file or directory.

libGL: Can't open configuration file /home/cm/.drirc: No such file or directory.

libGL: Can't open configuration file /etc/drirc: No such file or directory.

libGL: Can't open configuration file /home/cm/.drirc: No such file or directory.

display: :1  screen: 0

direct rendering: Yes

Extended renderer info (GLX_MESA_query_renderer):

    Vendor: Mesa/X.org (0xffffffff)

    Device: llvmpipe (LLVM 13.0.0, 256 bits) (0xffffffff)

    Version: 21.3.2

    Accelerated: no

    Video memory: 31917MB

    Unified memory: no

    Preferred profile: core (0x1)

    Max core profile version: 4.5

    Max compat profile version: 4.5

    Max GLES1 profile version: 1.1

    Max GLES[23] profile version: 3.2



Back to a web search then. I found a few posts mentioning 'nomodeset' causing issues, e.g., https://ask.fedoraproject.org/t/f33-and-uhd-graphics-630/12919. Nothing specific for my issue though. But I'd run out of ideas. So what is 'nomodeset'?


From https://itectec.com/ubuntu/ubuntu-what-do-the-nomodeset-quiet-and-splash-kernel-parameters-mean/:


"The newest kernels have moved the video mode setting into the kernel. So all the programming of the hardware specific clock rates and registers on the video card happen in the kernel rather than in the X driver when the X server starts.. This makes it possible to have high resolution nice looking splash (boot) screens and flicker free transitions from boot splash to login screen. Unfortunately, on some cards this doesn't work properly and you end up with a black screen. Adding the nomodeset parameter instructs the kernel to not load video drivers and use BIOS modes instead until X is loaded."


As I mentioned earlier in this post, I have a recollection that I got a black screen when booting off the USB, and so tried 'basic graphics' as the option to get it to work. I'm wondering if this was responsible for my system being set with 'nomodeset' on the kernel command line (or is it the default?): 


$ cat /proc/cmdline 


BOOT_IMAGE=(hd4,gpt2)/vmlinuz-5.15.12-200.fc35.x86_64 root=UUID=11fa5325-3852-49f0-9408-010943263592 ro rootflags=subvol=root nomodeset rhgb quiet selinux=0



I edited the GRUB configuration (/etc/default/grub) by finding the the string nomodeset and deleting it, saving and rebuilding grub.cfg:


$ sudo grub2-mkconfig -o /etc/grub2-efi.cfg 


I rebooted and it came up quickly (no initrd rebuilds).


It was running wayland!


$ echo $XDG_SESSION_TYPE

wayland


Also the version of DRI was now v3 instead of v2:


$ xdpyinfo | grep DRI

   DRI3


And vainfo looked healthier:


$ vainfo

libva info: Open new log file 1.135117.thd-0x00001826 for the thread 0x00001826

libva info: LIBVA_TRACE is on, save log into 1.135117.thd-0x00001826

libva info: VA-API version 1.13.0

libva info: User environment variable requested driver 'iHD'

libva info: Trying to open /usr/lib64/dri/iHD_drv_video.so

libva info: Found init function __vaDriverInit_1_13

libva info: va_openDriver() returns 0

vainfo: VA-API version: 1.13 (libva 2.13.0)

vainfo: Driver version: Intel iHD driver for Intel(R) Gen Graphics - 21.4.3 ()

vainfo: Supported profile and entrypoints

      VAProfileNone                   : VAEntrypointVideoProc

      VAProfileNone                   : VAEntrypointStats

      VAProfileMPEG2Simple            : VAEntrypointVLD

      VAProfileMPEG2Simple            : VAEntrypointEncSlice

      VAProfileMPEG2Main              : VAEntrypointVLD

      VAProfileMPEG2Main              : VAEntrypointEncSlice

      VAProfileH264Main               : VAEntrypointVLD

      VAProfileH264Main               : VAEntrypointEncSlice

      VAProfileH264Main               : VAEntrypointFEI

      VAProfileH264Main               : VAEntrypointEncSliceLP

      VAProfileH264High               : VAEntrypointVLD

      VAProfileH264High               : VAEntrypointEncSlice

      VAProfileH264High               : VAEntrypointFEI

      VAProfileH264High               : VAEntrypointEncSliceLP

      VAProfileVC1Simple              : VAEntrypointVLD

      VAProfileVC1Main                : VAEntrypointVLD

      VAProfileVC1Advanced            : VAEntrypointVLD

      VAProfileJPEGBaseline           : VAEntrypointVLD

      VAProfileJPEGBaseline           : VAEntrypointEncPicture

      VAProfileH264ConstrainedBaseline: VAEntrypointVLD

      VAProfileH264ConstrainedBaseline: VAEntrypointEncSlice

      VAProfileH264ConstrainedBaseline: VAEntrypointFEI

      VAProfileH264ConstrainedBaseline: VAEntrypointEncSliceLP

      VAProfileVP8Version0_3          : VAEntrypointVLD

      VAProfileVP8Version0_3          : VAEntrypointEncSlice

      VAProfileHEVCMain               : VAEntrypointVLD

      VAProfileHEVCMain               : VAEntrypointEncSlice

      VAProfileHEVCMain               : VAEntrypointFEI

      VAProfileHEVCMain10             : VAEntrypointVLD

      VAProfileHEVCMain10             : VAEntrypointEncSlice

      VAProfileVP9Profile0            : VAEntrypointVLD

      VAProfileVP9Profile2            : VAEntrypointVLD

$


The gnome shell was using negligible CPU to move windows around, and to play back the x264 video that previously used massive amounts of CPU now showed 40-60% usage of one hardware thread. Result!


Saturday, July 21, 2018

Friday, September 15, 2017

Friday, June 02, 2017

virt-viewer on EL 6.8 + ovirt 4.1

I updated the version of oVirt to 4.1 and clients launching a console in EL 6.8 would get:

"At least Remote Viewer version 99.0-1 is required to setup this connection"


This version of remote viewer does not, and may never exist. Something else was going on here.  When I ran remote-viewer in debug mode, it seems that it is deliberately disabling rhel6 by setting the version to a non-existent version (remote-viewer /path/to/console.vv):

(remote-viewer:23829): remote-viewer-DEBUG: Minimum version '2.0-160'
for OS id 'rhev-win64'
(remote-viewer:23829): remote-viewer-DEBUG: Minimum version '2.0-160'
for OS id 'rhev-win32'
(remote-viewer:23829): remote-viewer-DEBUG: Minimum version '2.0-6'
for OS id 'rhel7'
(remote-viewer:23829): remote-viewer-DEBUG: Minimum version '99.0-1'
for OS id 'rhel6'

I'd seen a post on Redhat's support site that said you should just RHEL7. That wasn't an option however. A downgrade of virt-viewer on EL 6.8 fixes the issue, but I contacted oVirt to ask them what was going on. The issue is that certain new features in 4.1 are only supported in EL7, though it will still work with reduced functionality in EL6 (such as a basic console). There is a setting in the engine properties that controls this, and it can be adjusted. Use 'engine-config' to change the value, then restart ovirt-engine service. I found the relevant key in /etc/ovirt-engine/engine-config/engine-config.properties

To get the current setting:

engine-config -g RemoteViewerSupportedVersions


RemoteViewerSupportedVersions: rhev-win64:2.0-160;rhev-win32:2.0-160;rhel7:2.0-6;rhel6:2.0-6 version: general

To set:

engine-config -s RemoteViewerSupportedVersions="rhev-win64:2.0-160;rhev-win32:2.0-160;rhel7:2.0-6;rhel6:2.0-6"

Then 'systemctl restart ovirt-engine'.

PS: The oVirt devel team have told me that the reason it works in 6.7 is because the version of virt-viewer in 6.7 "doesn't support the mechanism to check for the minimum required version"

Friday, May 19, 2017

Recent oVirt errors when doing a minor update on a 4.1 engine host


 Had two problems after doing an engine update on 4.1.0.4-1.el7.centos:

First was that the engine service would not start due missing python-dateutil (no idea why this package wasn't included if it was needed in the update, and the engine service was working fine before the update). ABRT and journalctl provided useful info as to what needed fixing:


   ovirt-engine-dwhd.service                                                                   loaded activating auto-restart oVirt Engine Data Warehouse
* ovirt-engine.service                                                                        loaded failed     failed       oVirt Engine
* ovirt-fence-kdump-listener.service                                                          loaded failed     failed       oVirt Engine fence_kdump listener
  ovirt-imageio-proxy.service                                                                 loaded active     running      oVirt ImageIO Proxy
  ovirt-vmconsole-proxy-sshd.service                                                          loaded active     running      oVirt VM Console SSH server daemon
* ovirt-websocket-proxy.service                                                               loaded failed     failed       oVirt Engine websockets proxy
  polkit.service                                                                              loaded active     running      Authorization Manager


ABRT has detected 4 problem(s). For more info run: abrt-cli list --since 1495130066
[root@ovirt-engine ~]# abrt-cli list --since 1495130066
id 07e7e054795adf76b6260aed93a81420fe16e4cc
reason:         service.py:35:<module>:ImportError: No module named dateutil
time:           Thu May 18 18:57:04 2017
cmdline:        /usr/bin/python /usr/share/ovirt-engine-dwh/services/ovirt-engine-dwhd/ovirt-engine-dwhd.py --redirect-output --systemd=notify start
package:        ovirt-engine-dwh-4.1.0-1.el7.centos
uid:            108 (ovirt)
count:          1
Directory:      /var/spool/abrt/Python-2017-05-18-18:57:04-2765

id 107b6035ce460c7c4cabdbb8b9b2c5cee02f7b2c
reason:         service.py:35:<module>:ImportError: No module named dateutil
time:           Thu May 18 18:57:04 2017
cmdline:        /usr/bin/python /usr/share/ovirt-engine/services/ovirt-fence-kdump-listener/ovirt-fence-kdump-listener.py --systemd=notify start
package:        ovirt-engine-tools-4.1.0.4-1.el7.centos
uid:            108 (ovirt)
count:          1
Directory:      /var/spool/abrt/Python-2017-05-18-18:57:04-2766

id 02916623c009e9277ec757c70ca1e1bc32020c62
reason:         service.py:35:<module>:ImportError: No module named dateutil
time:           Thu May 18 18:57:04 2017
cmdline:        /usr/bin/python /usr/share/ovirt-engine/services/ovirt-engine/ovirt-engine.py --redirect-output --systemd=notify start
package:        ovirt-engine-backend-4.1.0.4-1.el7.centos
uid:            108 (ovirt)
count:          1
Directory:      /var/spool/abrt/Python-2017-05-18-18:57:04-2767

id 588e5eb1889bfde67787877bc8d1156953eeae1e
reason:         service.py:35:<module>:ImportError: No module named dateutil
time:           Thu May 18 18:57:04 2017
cmdline:        /usr/bin/python /usr/share/ovirt-engine/services/ovirt-websocket-proxy/ovirt-websocket-proxy.py --systemd=notify start
package:        ovirt-engine-websocket-proxy-4.1.0.4-1.el7.centos
uid:            108 (ovirt)
count:          1
Directory:      /var/spool/abrt/Python-2017-05-18-18:57:04-1391

The Autoreporting feature is disabled. Please consider enabling it by issuing
'abrt-auto-reporting enabled' as a user with root privileges
[root@ovirt-engine ~]#



 May 18 18:57:04 ovirt-engine systemd[1]: Starting oVirt Engine...
May 18 18:57:04 ovirt-engine python[2767]: detected unhandled Python exception in '/usr/share/ovirt-engine/services/ovirt-engine/ovirt-engine.py'
May 18 18:57:06 ovirt-engine ovirt-engine.py[2767]: Traceback (most recent call last):
May 18 18:57:06 ovirt-engine ovirt-engine.py[2767]: File "/usr/share/ovirt-engine/services/ovirt-engine/ovirt-engine.py", line 32, in <module>
May 18 18:57:06 ovirt-engine ovirt-engine.py[2767]: from ovirt_engine import service
May 18 18:57:06 ovirt-engine ovirt-engine.py[2767]: File "/usr/lib/python2.7/site-packages/ovirt_engine/service.py", line 35, in <module>
May 18 18:57:06 ovirt-engine ovirt-engine.py[2767]: from dateutil import tz
May 18 18:57:06 ovirt-engine ovirt-engine.py[2767]: ImportError: No module named dateutil
May 18 18:57:06 ovirt-engine systemd[1]: ovirt-engine.service: main process exited, code=exited, status=1/FAILURE
May 18 18:57:06 ovirt-engine systemd[1]: Failed to start oVirt Engine.
May 18 18:57:06 ovirt-engine systemd[1]: Unit ovirt-engine.service entered failed state.
May 18 18:57:06 ovirt-engine systemd[1]: ovirt-engine.service failed.





Installed python-dateutil:

yum install python-dateutil

The second issue was vdsmd not being able to start. Once again, journalctl provided useful information on what to do (logging on vdsmd is very helpful):


* vdsmd.service                                                                                  loaded failed failed    Virtual Desktop Server Manager


May 18 19:02:42 ovirt-engine systemd[1]: Starting Virtual Desktop Server Manager...
May 18 19:02:42 ovirt-engine vdsmd_init_common.sh[2746]: vdsm: Running mkdirs
May 18 19:02:42 ovirt-engine vdsmd_init_common.sh[2746]: vdsm: Running configure_coredump
May 18 19:02:42 ovirt-engine vdsmd_init_common.sh[2746]: vdsm: Running configure_vdsm_logs
May 18 19:02:42 ovirt-engine vdsmd_init_common.sh[2746]: vdsm: Running wait_for_network
May 18 19:02:42 ovirt-engine vdsmd_init_common.sh[2746]: vdsm: Running run_init_hooks
May 18 19:02:42 ovirt-engine vdsmd_init_common.sh[2746]: vdsm: Running upgraded_version_check
May 18 19:02:42 ovirt-engine vdsmd_init_common.sh[2746]: vdsm: Running check_is_configured
May 18 19:02:43 ovirt-engine vdsmd_init_common.sh[2746]: Error:
May 18 19:02:43 ovirt-engine vdsmd_init_common.sh[2746]: One of the modules is not configured to work with VDSM.
May 18 19:02:43 ovirt-engine vdsmd_init_common.sh[2746]: To configure the module use the following:
May 18 19:02:43 ovirt-engine vdsmd_init_common.sh[2746]: 'vdsm-tool configure [--module module-name]'.
May 18 19:02:43 ovirt-engine vdsmd_init_common.sh[2746]: If all modules are not configured try to use:
May 18 19:02:43 ovirt-engine vdsmd_init_common.sh[2746]: 'vdsm-tool configure --force'
May 18 19:02:43 ovirt-engine vdsmd_init_common.sh[2746]: (The force flag will stop the module's service and start it
May 18 19:02:43 ovirt-engine vdsmd_init_common.sh[2746]: afterwards automatically to load the new configuration.)
May 18 19:02:43 ovirt-engine vdsmd_init_common.sh[2746]: multipath requires configuration
May 18 19:02:43 ovirt-engine vdsmd_init_common.sh[2746]: libvirt is not configured for vdsm yet
May 18 19:02:43 ovirt-engine vdsmd_init_common.sh[2746]: Modules certificates, sebool, multipath, passwd, sanlock, libvirt are not configured
May 18 19:02:43 ovirt-engine systemd[1]: vdsmd.service: control process exited, code=exited status=1
May 18 19:02:43 ovirt-engine systemd[1]: Failed to start Virtual Desktop Server Manager.
May 18 19:02:43 ovirt-engine systemd[1]: Unit vdsmd.service entered failed state.
May 18 19:02:43 ovirt-engine systemd[1]: vdsmd.service failed.


So I used vdsm-tool to configure the services it listed as needing configuring, e.g.:

[root@ovirt-engine ~]# vdsm-tool configure --module certificates

Checking configuration status...


Running configure...
Reconfiguration of certificates is done.

Done configuring modules to VDSM.
[root@ovirt-engine ~]# vdsm-tool configure --module sebool    

Checking configuration status...


Running configure...
Reconfiguration of sebool is done.

Done configuring modules to VDSM.
[root@ovirt-engine ~]# vdsm-tool configure --module multipath

Checking configuration status...

multipath requires configuration

Running configure...
Reconfiguration of multipath is done.

Done configuring modules to VDSM.
[root@ovirt-engine ~]# vdsm-tool configure --module passwd 

Checking configuration status...


Running configure...
Reconfiguration of passwd is done.

Done configuring modules to VDSM.


Some services needed to be stopped first before they could be configured:

[root@ovirt-engine ~]# vdsm-tool configure --module sanlock

Checking configuration status...

Error:

Cannot configure while service 'sanlock' is running.
 Stop the service manually or use the --force flag.
 


[root@ovirt-engine ~]#



 e.g., stop sanlock:

[root@ovirt-engine ~]# vdsm-tool service-stop sanlock