qemu with hax to log dma reads & writes jcs.org/2018/11/12/vfio

scripts/tracetool: Update maintainer email address

There is an effort in progress to generate a QEMU Python
package. As I'm not sure this old email is still valid,
update it to not produce package with broken maintainer
email.

Patch created mechanically by running:

$ sed -i 's,\(__email__ *= "\)stefanha@linux.vnet.ibm.com",\1stefanha@redhat.com",' \
$(git grep -l 'email.*stefanha@linux.vnet.ibm.com')

Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: John Snow <jsnow@redhat.com>
Message-id: 20200511082816.696-1-philmd@redhat.com
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>

authored by

Philippe Mathieu-Daudé and committed by
Stefan Hajnoczi
f892b494 d88d5a38

+18 -18
+1 -1
scripts/tracetool.py
··· 10 10 __license__ = "GPL version 2 or (at your option) any later version" 11 11 12 12 __maintainer__ = "Stefan Hajnoczi" 13 - __email__ = "stefanha@linux.vnet.ibm.com" 13 + __email__ = "stefanha@redhat.com" 14 14 15 15 16 16 import sys
+1 -1
scripts/tracetool/__init__.py
··· 9 9 __license__ = "GPL version 2 or (at your option) any later version" 10 10 11 11 __maintainer__ = "Stefan Hajnoczi" 12 - __email__ = "stefanha@linux.vnet.ibm.com" 12 + __email__ = "stefanha@redhat.com" 13 13 14 14 15 15 import re
+1 -1
scripts/tracetool/backend/__init__.py
··· 50 50 __license__ = "GPL version 2 or (at your option) any later version" 51 51 52 52 __maintainer__ = "Stefan Hajnoczi" 53 - __email__ = "stefanha@linux.vnet.ibm.com" 53 + __email__ = "stefanha@redhat.com" 54 54 55 55 56 56 import os
+1 -1
scripts/tracetool/backend/dtrace.py
··· 9 9 __license__ = "GPL version 2 or (at your option) any later version" 10 10 11 11 __maintainer__ = "Stefan Hajnoczi" 12 - __email__ = "stefanha@linux.vnet.ibm.com" 12 + __email__ = "stefanha@redhat.com" 13 13 14 14 15 15 from tracetool import out
+1 -1
scripts/tracetool/backend/log.py
··· 9 9 __license__ = "GPL version 2 or (at your option) any later version" 10 10 11 11 __maintainer__ = "Stefan Hajnoczi" 12 - __email__ = "stefanha@linux.vnet.ibm.com" 12 + __email__ = "stefanha@redhat.com" 13 13 14 14 15 15 from tracetool import out
+1 -1
scripts/tracetool/backend/simple.py
··· 9 9 __license__ = "GPL version 2 or (at your option) any later version" 10 10 11 11 __maintainer__ = "Stefan Hajnoczi" 12 - __email__ = "stefanha@linux.vnet.ibm.com" 12 + __email__ = "stefanha@redhat.com" 13 13 14 14 15 15 from tracetool import out
+1 -1
scripts/tracetool/backend/ust.py
··· 9 9 __license__ = "GPL version 2 or (at your option) any later version" 10 10 11 11 __maintainer__ = "Stefan Hajnoczi" 12 - __email__ = "stefanha@linux.vnet.ibm.com" 12 + __email__ = "stefanha@redhat.com" 13 13 14 14 15 15 from tracetool import out
+1 -1
scripts/tracetool/format/__init__.py
··· 32 32 __license__ = "GPL version 2 or (at your option) any later version" 33 33 34 34 __maintainer__ = "Stefan Hajnoczi" 35 - __email__ = "stefanha@linux.vnet.ibm.com" 35 + __email__ = "stefanha@redhat.com" 36 36 37 37 38 38 import os
+1 -1
scripts/tracetool/format/c.py
··· 9 9 __license__ = "GPL version 2 or (at your option) any later version" 10 10 11 11 __maintainer__ = "Stefan Hajnoczi" 12 - __email__ = "stefanha@linux.vnet.ibm.com" 12 + __email__ = "stefanha@redhat.com" 13 13 14 14 15 15 from tracetool import out
+1 -1
scripts/tracetool/format/d.py
··· 9 9 __license__ = "GPL version 2 or (at your option) any later version" 10 10 11 11 __maintainer__ = "Stefan Hajnoczi" 12 - __email__ = "stefanha@linux.vnet.ibm.com" 12 + __email__ = "stefanha@redhat.com" 13 13 14 14 15 15 from tracetool import out
+1 -1
scripts/tracetool/format/h.py
··· 9 9 __license__ = "GPL version 2 or (at your option) any later version" 10 10 11 11 __maintainer__ = "Stefan Hajnoczi" 12 - __email__ = "stefanha@linux.vnet.ibm.com" 12 + __email__ = "stefanha@redhat.com" 13 13 14 14 15 15 from tracetool import out
+1 -1
scripts/tracetool/format/stap.py
··· 9 9 __license__ = "GPL version 2 or (at your option) any later version" 10 10 11 11 __maintainer__ = "Stefan Hajnoczi" 12 - __email__ = "stefanha@linux.vnet.ibm.com" 12 + __email__ = "stefanha@redhat.com" 13 13 14 14 15 15 from tracetool import out
+1 -1
scripts/tracetool/format/tcg_h.py
··· 9 9 __license__ = "GPL version 2 or (at your option) any later version" 10 10 11 11 __maintainer__ = "Stefan Hajnoczi" 12 - __email__ = "stefanha@linux.vnet.ibm.com" 12 + __email__ = "stefanha@redhat.com" 13 13 14 14 15 15 from tracetool import out, Arguments
+1 -1
scripts/tracetool/format/tcg_helper_c.py
··· 9 9 __license__ = "GPL version 2 or (at your option) any later version" 10 10 11 11 __maintainer__ = "Stefan Hajnoczi" 12 - __email__ = "stefanha@linux.vnet.ibm.com" 12 + __email__ = "stefanha@redhat.com" 13 13 14 14 15 15 from tracetool import Arguments, out
+1 -1
scripts/tracetool/format/tcg_helper_h.py
··· 9 9 __license__ = "GPL version 2 or (at your option) any later version" 10 10 11 11 __maintainer__ = "Stefan Hajnoczi" 12 - __email__ = "stefanha@linux.vnet.ibm.com" 12 + __email__ = "stefanha@redhat.com" 13 13 14 14 15 15 from tracetool import out
+1 -1
scripts/tracetool/format/tcg_helper_wrapper_h.py
··· 9 9 __license__ = "GPL version 2 or (at your option) any later version" 10 10 11 11 __maintainer__ = "Stefan Hajnoczi" 12 - __email__ = "stefanha@linux.vnet.ibm.com" 12 + __email__ = "stefanha@redhat.com" 13 13 14 14 15 15 from tracetool import out
+1 -1
scripts/tracetool/transform.py
··· 9 9 __license__ = "GPL version 2 or (at your option) any later version" 10 10 11 11 __maintainer__ = "Stefan Hajnoczi" 12 - __email__ = "stefanha@linux.vnet.ibm.com" 12 + __email__ = "stefanha@redhat.com" 13 13 14 14 15 15 def _transform_type(type_, trans):
+1 -1
scripts/tracetool/vcpu.py
··· 10 10 __license__ = "GPL version 2 or (at your option) any later version" 11 11 12 12 __maintainer__ = "Stefan Hajnoczi" 13 - __email__ = "stefanha@linux.vnet.ibm.com" 13 + __email__ = "stefanha@redhat.com" 14 14 15 15 16 16 from tracetool import Arguments, try_import