Skip to content

Commit

Permalink
fix: hotplug typo
Browse files Browse the repository at this point in the history
(cherry picked from commit a1fdea2)
  • Loading branch information
CertainLach authored and marmarek committed Dec 8, 2024
1 parent 06ac63e commit 317cb3e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion qubes/qmemman/domainstate.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def __init__(self, id):
self.mem_used = None # used memory, computed based on meminfo
self.id = id # domain id
self.last_target = 0 # the last memset target
self.use_hoplug = False # use memory hotplug for mem-set
self.use_hotplug = False # use memory hotplug for mem-set
self.no_progress = False # no react to memset
self.slow_memset_react = False # slow react to memset (after few
# tries still above target)
Expand Down
2 changes: 1 addition & 1 deletion qubes/tests/qmemman.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def construct_dominfo(id,
d.memory_actual = memory_actual
d.memory_current = memory_current
d.last_target = last_target
d.use_hoplug = use_hotplug
d.use_hotplug = use_hotplug
return d

class TC_00_Qmemman_algo(qubes.tests.QubesTestCase):
Expand Down

0 comments on commit 317cb3e

Please sign in to comment.