Skip to content

Commit

Permalink
Add support for cluster level 4.8
Browse files Browse the repository at this point in the history
This patch adds support for cluster compatibility level 4.8. Support for cluster compatibility level 4.8 is reported when the libvirt version >= 9.5.0. This version of libvirt adds support for the discard-no-unref option in qemu.

Signed-off-by: Brooklyn Dewolf <[email protected]>
  • Loading branch information
BrooklynDewolf committed Apr 16, 2024
1 parent 09b4add commit 3c728ac
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/vdsm/common/dsaversion.py.in
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ def version_info():

if libvirt_version >= (8, 0):
cluster_levels.append('4.7')
if libvirt_version >= (9, 5):
cluster_levels.append('4.8')

return {
'version_name': version_name,
Expand Down

0 comments on commit 3c728ac

Please sign in to comment.