Message ID | 20211007161716.453984-15-philmd@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | target/i386/sev: Housekeeping SEV + measured Linux SEV guest | expand |
* Philippe Mathieu-Daudé (philmd@redhat.com) wrote: > SEV is a x86 specific feature, and the "sev_i386.h" header > is already in target/i386/. Rename it as "sev.h" to simplify. > > Patch created mechanically using: > > $ git mv target/i386/sev_i386.h target/i386/sev.h > $ sed -i s/sev_i386.h/sev.h/ $(git grep -l sev_i386.h) > > Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com> > --- > target/i386/{sev_i386.h => sev.h} | 0 > hw/i386/x86.c | 2 +- > target/i386/cpu.c | 2 +- > target/i386/kvm/kvm.c | 2 +- > target/i386/monitor.c | 2 +- > target/i386/sev-stub.c | 2 +- > target/i386/sev-sysemu-stub.c | 2 +- > target/i386/sev.c | 2 +- > 8 files changed, 7 insertions(+), 7 deletions(-) > rename target/i386/{sev_i386.h => sev.h} (100%) > > diff --git a/target/i386/sev_i386.h b/target/i386/sev.h > similarity index 100% > rename from target/i386/sev_i386.h > rename to target/i386/sev.h > diff --git a/hw/i386/x86.c b/hw/i386/x86.c > index 0c7c054e3a0..76de7e2265e 100644 > --- a/hw/i386/x86.c > +++ b/hw/i386/x86.c > @@ -47,7 +47,7 @@ > #include "hw/i386/fw_cfg.h" > #include "hw/intc/i8259.h" > #include "hw/rtc/mc146818rtc.h" > -#include "target/i386/sev_i386.h" > +#include "target/i386/sev.h" > > #include "hw/acpi/cpu_hotplug.h" > #include "hw/irq.h" > diff --git a/target/i386/cpu.c b/target/i386/cpu.c > index b54b98551e9..8289dc87bd5 100644 > --- a/target/i386/cpu.c > +++ b/target/i386/cpu.c > @@ -26,7 +26,7 @@ > #include "sysemu/reset.h" > #include "sysemu/hvf.h" > #include "kvm/kvm_i386.h" > -#include "sev_i386.h" > +#include "sev.h" > #include "qapi/error.h" > #include "qapi/qapi-visit-machine.h" > #include "qapi/qmp/qerror.h" > diff --git a/target/i386/kvm/kvm.c b/target/i386/kvm/kvm.c > index f25837f63f4..a5f6ff63c81 100644 > --- a/target/i386/kvm/kvm.c > +++ b/target/i386/kvm/kvm.c > @@ -28,7 +28,7 @@ > #include "sysemu/kvm_int.h" > #include "sysemu/runstate.h" > #include "kvm_i386.h" > -#include "sev_i386.h" > +#include "sev.h" > #include "hyperv.h" > #include "hyperv-proto.h" > > diff --git a/target/i386/monitor.c b/target/i386/monitor.c > index ea836678f51..109e4e61c0a 100644 > --- a/target/i386/monitor.c > +++ b/target/i386/monitor.c > @@ -32,7 +32,7 @@ > #include "sysemu/kvm.h" > #include "sysemu/sev.h" > #include "qapi/error.h" > -#include "sev_i386.h" > +#include "sev.h" > #include "qapi/qapi-commands-misc-target.h" > #include "qapi/qapi-commands-misc.h" > #include "hw/i386/pc.h" > diff --git a/target/i386/sev-stub.c b/target/i386/sev-stub.c > index 170e9f50fee..7e8b6f9a259 100644 > --- a/target/i386/sev-stub.c > +++ b/target/i386/sev-stub.c > @@ -13,7 +13,7 @@ > > #include "qemu/osdep.h" > #include "qapi/error.h" > -#include "sev_i386.h" > +#include "sev.h" > > bool sev_enabled(void) > { > diff --git a/target/i386/sev-sysemu-stub.c b/target/i386/sev-sysemu-stub.c > index d556b4f091f..8082781febf 100644 > --- a/target/i386/sev-sysemu-stub.c > +++ b/target/i386/sev-sysemu-stub.c > @@ -14,7 +14,7 @@ > #include "qemu/osdep.h" > #include "qapi/qapi-commands-misc-target.h" > #include "qapi/error.h" > -#include "sev_i386.h" > +#include "sev.h" > > SevInfo *sev_get_info(void) > { > diff --git a/target/i386/sev.c b/target/i386/sev.c > index 5cbbcf0bb93..e43bbf3a17d 100644 > --- a/target/i386/sev.c > +++ b/target/i386/sev.c > @@ -25,7 +25,7 @@ > #include "qemu/uuid.h" > #include "crypto/hash.h" > #include "sysemu/kvm.h" > -#include "sev_i386.h" > +#include "sev.h" > #include "sysemu/sysemu.h" > #include "sysemu/runstate.h" > #include "trace.h" > -- > 2.31.1 >
diff --git a/target/i386/sev_i386.h b/target/i386/sev.h similarity index 100% rename from target/i386/sev_i386.h rename to target/i386/sev.h diff --git a/hw/i386/x86.c b/hw/i386/x86.c index 0c7c054e3a0..76de7e2265e 100644 --- a/hw/i386/x86.c +++ b/hw/i386/x86.c @@ -47,7 +47,7 @@ #include "hw/i386/fw_cfg.h" #include "hw/intc/i8259.h" #include "hw/rtc/mc146818rtc.h" -#include "target/i386/sev_i386.h" +#include "target/i386/sev.h" #include "hw/acpi/cpu_hotplug.h" #include "hw/irq.h" diff --git a/target/i386/cpu.c b/target/i386/cpu.c index b54b98551e9..8289dc87bd5 100644 --- a/target/i386/cpu.c +++ b/target/i386/cpu.c @@ -26,7 +26,7 @@ #include "sysemu/reset.h" #include "sysemu/hvf.h" #include "kvm/kvm_i386.h" -#include "sev_i386.h" +#include "sev.h" #include "qapi/error.h" #include "qapi/qapi-visit-machine.h" #include "qapi/qmp/qerror.h" diff --git a/target/i386/kvm/kvm.c b/target/i386/kvm/kvm.c index f25837f63f4..a5f6ff63c81 100644 --- a/target/i386/kvm/kvm.c +++ b/target/i386/kvm/kvm.c @@ -28,7 +28,7 @@ #include "sysemu/kvm_int.h" #include "sysemu/runstate.h" #include "kvm_i386.h" -#include "sev_i386.h" +#include "sev.h" #include "hyperv.h" #include "hyperv-proto.h" diff --git a/target/i386/monitor.c b/target/i386/monitor.c index ea836678f51..109e4e61c0a 100644 --- a/target/i386/monitor.c +++ b/target/i386/monitor.c @@ -32,7 +32,7 @@ #include "sysemu/kvm.h" #include "sysemu/sev.h" #include "qapi/error.h" -#include "sev_i386.h" +#include "sev.h" #include "qapi/qapi-commands-misc-target.h" #include "qapi/qapi-commands-misc.h" #include "hw/i386/pc.h" diff --git a/target/i386/sev-stub.c b/target/i386/sev-stub.c index 170e9f50fee..7e8b6f9a259 100644 --- a/target/i386/sev-stub.c +++ b/target/i386/sev-stub.c @@ -13,7 +13,7 @@ #include "qemu/osdep.h" #include "qapi/error.h" -#include "sev_i386.h" +#include "sev.h" bool sev_enabled(void) { diff --git a/target/i386/sev-sysemu-stub.c b/target/i386/sev-sysemu-stub.c index d556b4f091f..8082781febf 100644 --- a/target/i386/sev-sysemu-stub.c +++ b/target/i386/sev-sysemu-stub.c @@ -14,7 +14,7 @@ #include "qemu/osdep.h" #include "qapi/qapi-commands-misc-target.h" #include "qapi/error.h" -#include "sev_i386.h" +#include "sev.h" SevInfo *sev_get_info(void) { diff --git a/target/i386/sev.c b/target/i386/sev.c index 5cbbcf0bb93..e43bbf3a17d 100644 --- a/target/i386/sev.c +++ b/target/i386/sev.c @@ -25,7 +25,7 @@ #include "qemu/uuid.h" #include "crypto/hash.h" #include "sysemu/kvm.h" -#include "sev_i386.h" +#include "sev.h" #include "sysemu/sysemu.h" #include "sysemu/runstate.h" #include "trace.h"
SEV is a x86 specific feature, and the "sev_i386.h" header is already in target/i386/. Rename it as "sev.h" to simplify. Patch created mechanically using: $ git mv target/i386/sev_i386.h target/i386/sev.h $ sed -i s/sev_i386.h/sev.h/ $(git grep -l sev_i386.h) Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> --- target/i386/{sev_i386.h => sev.h} | 0 hw/i386/x86.c | 2 +- target/i386/cpu.c | 2 +- target/i386/kvm/kvm.c | 2 +- target/i386/monitor.c | 2 +- target/i386/sev-stub.c | 2 +- target/i386/sev-sysemu-stub.c | 2 +- target/i386/sev.c | 2 +- 8 files changed, 7 insertions(+), 7 deletions(-) rename target/i386/{sev_i386.h => sev.h} (100%)