diff mbox

[1/1] vmstate-static-checker: update whitelist

Message ID f9084daf256c50ed12d06e704d5646d43855738b.1421845616.git.amit.shah@redhat.com
State New
Headers show

Commit Message

Amit Shah Jan. 21, 2015, 1:06 p.m. UTC
Commit 22382bb96c8bd88370c1ff0cb28c3ee6bee79ed3 renamed the
'hw_cursor_x' and 'hw_cursor_y' fields in cirrus_vga.  Update the static
checker's whitelist to allow matching against the old and new names.

Signed-off-by: Amit Shah <amit.shah@redhat.com>
---
 scripts/vmstate-static-checker.py | 2 ++
 1 file changed, 2 insertions(+)

Comments

Gerd Hoffmann Jan. 21, 2015, 1:37 p.m. UTC | #1
On Mi, 2015-01-21 at 18:36 +0530, Amit Shah wrote:
> Commit 22382bb96c8bd88370c1ff0cb28c3ee6bee79ed3 renamed the
> 'hw_cursor_x' and 'hw_cursor_y' fields in cirrus_vga.  Update the
> static
> checker's whitelist to allow matching against the old and new names.
> 
> Signed-off-by: Amit Shah <amit.shah@redhat.com>

Reviewed-by: Gerd Hoffmann <kraxel@redhat.com>

cheers,
  Gerd
diff mbox

Patch

diff --git a/scripts/vmstate-static-checker.py b/scripts/vmstate-static-checker.py
index f7ce3fc..b6c0bbe 100755
--- a/scripts/vmstate-static-checker.py
+++ b/scripts/vmstate-static-checker.py
@@ -53,6 +53,8 @@  def check_fields_match(name, s_field, d_field):
                                        'parent_obj.parent_obj.parent_obj',
                                        'port.br.dev.exp.aer_log',
                                 'parent_obj.parent_obj.parent_obj.exp.aer_log'],
+        'cirrus_vga': ['hw_cursor_x', 'vga.hw_cursor_x',
+                       'hw_cursor_y', 'vga.hw_cursor_y'],
         'lsiscsi': ['dev', 'parent_obj'],
         'mch': ['d', 'parent_obj'],
         'pci_bridge': ['bridge.dev', 'parent_obj', 'bridge.dev.shpc', 'shpc'],