Browse Source

Clean up includes some more

Manually drop redundant includes that scripts/clean-includes misses,
e.g. because they're hidden in generator programs, or they use the
wrong kind of delimiter.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
pull/51/head
Markus Armbruster 11 years ago
committed by Paolo Bonzini
parent
commit
c80f6e9caa
  1. 2
      hw/net/vmxnet_rx_pkt.h
  2. 2
      hw/net/vmxnet_tx_pkt.h
  3. 1
      hw/scsi/virtio-scsi-dataplane.c
  4. 1
      include/hw/acpi/pcihp.h
  5. 1
      include/qemu/range.h
  6. 1
      qga/main.c
  7. 1
      qga/vss-win32/requester.cpp
  8. 5
      scripts/qapi-types.py
  9. 6
      scripts/tracetool/backend/log.py
  10. 2
      scripts/tracetool/format/events_h.py
  11. 1
      scripts/tracetool/format/h.py
  12. 2
      scripts/tracetool/format/tcg_h.py
  13. 1
      scripts/tracetool/format/ust_events_c.py
  14. 2
      stubs/gdbstub.c
  15. 1
      stubs/target-get-monitor-def.c
  16. 1
      stubs/target-monitor-defs.c
  17. 4
      tests/tcg/test-i386-fprem.c

2
hw/net/vmxnet_rx_pkt.h

@ -18,8 +18,6 @@
#ifndef VMXNET_RX_PKT_H
#define VMXNET_RX_PKT_H
#include "stdint.h"
#include "stdbool.h"
#include "net/eth.h"
/* defines to enable packet dump functions */

2
hw/net/vmxnet_tx_pkt.h

@ -18,8 +18,6 @@
#ifndef VMXNET_TX_PKT_H
#define VMXNET_TX_PKT_H
#include "stdint.h"
#include "stdbool.h"
#include "net/eth.h"
#include "exec/hwaddr.h"

1
hw/scsi/virtio-scsi-dataplane.c

@ -19,7 +19,6 @@
#include <block/scsi.h>
#include <hw/virtio/virtio-bus.h>
#include "hw/virtio/virtio-access.h"
#include "stdio.h"
/* Context: QEMU global mutex held */
void virtio_scsi_set_iothread(VirtIOSCSI *s, IOThread *iothread)

1
include/hw/acpi/pcihp.h

@ -27,7 +27,6 @@
#ifndef HW_ACPI_PCIHP_H
#define HW_ACPI_PCIHP_H
#include <qemu/typedefs.h>
#include "hw/acpi/acpi.h"
#include "migration/vmstate.h"

1
include/qemu/range.h

@ -1,7 +1,6 @@
#ifndef QEMU_RANGE_H
#define QEMU_RANGE_H
#include <qemu/typedefs.h>
#include "qemu/queue.h"
/*

1
qga/main.c

@ -24,7 +24,6 @@
#include "qapi/qmp/qjson.h"
#include "qga/guest-agent-core.h"
#include "qemu/module.h"
#include "signal.h"
#include "qapi/qmp/qerror.h"
#include "qapi/qmp/dispatch.h"
#include "qga/channel.h"

1
qga/vss-win32/requester.cpp

@ -13,7 +13,6 @@
#include "qemu/osdep.h"
#include "vss-common.h"
#include "requester.h"
#include "assert.h"
#include "inc/win2003/vswriter.h"
#include "inc/win2003/vsbackup.h"

5
scripts/qapi-types.py

@ -294,11 +294,6 @@ fdef.write(mcgen('''
''',
prefix=prefix))
# To avoid circular headers, use only typedefs.h here, not qobject.h
fdecl.write(mcgen('''
#include "qemu/typedefs.h"
'''))
schema = QAPISchema(input_file)
gen = QAPISchemaGenTypeVisitor()
schema.visit(gen)

6
scripts/tracetool/backend/log.py

@ -20,11 +20,7 @@ PUBLIC = True
def generate_h_begin(events):
out('#include <stdio.h>',
'#include <sys/time.h>',
'#include <sys/types.h>',
'#include <unistd.h>',
'#include "trace/control.h"',
out('#include "trace/control.h"',
'#include "qemu/log.h"',
'')

2
scripts/tracetool/format/events_h.py

@ -21,8 +21,6 @@ def generate(events, backend):
'',
'#ifndef TRACE__GENERATED_EVENTS_H',
'#define TRACE__GENERATED_EVENTS_H',
'',
'#include <stdbool.h>',
'')
# event identifiers

1
scripts/tracetool/format/h.py

@ -23,7 +23,6 @@ def generate(events, backend):
'#define TRACE__GENERATED_TRACERS_H',
'',
'#include "qemu-common.h"',
'#include "qemu/typedefs.h"',
'')
backend.generate_begin(events)

2
scripts/tracetool/format/tcg_h.py

@ -34,8 +34,6 @@ def generate(events, backend):
'#ifndef TRACE__GENERATED_TCG_TRACERS_H',
'#define TRACE__GENERATED_TCG_TRACERS_H',
'',
'#include <stdint.h>',
'',
'#include "trace.h"',
'#include "exec/helper-proto.h"',
'',

1
scripts/tracetool/format/ust_events_c.py

@ -32,5 +32,4 @@ def generate(events, backend):
' */',
'#pragma GCC diagnostic ignored "-Wredundant-decls"',
'',
'#include "qemu/typedefs.h"',
'#include "generated-ust-provider.h"')

2
stubs/gdbstub.c

@ -1,6 +1,4 @@
#include "qemu/osdep.h"
#include "stdbool.h" /* bool (in exec/gdbstub.h) */
#include "stddef.h" /* NULL */
#include "exec/gdbstub.h" /* xml_builtin */
const char *const xml_builtin[][2] = {

1
stubs/target-get-monitor-def.c

@ -20,7 +20,6 @@
*/
#include "qemu/osdep.h"
#include "stdint.h"
int target_get_monitor_def(CPUState *cs, const char *name, uint64_t *pval);

1
stubs/target-monitor-defs.c

@ -1,5 +1,4 @@
#include "qemu/osdep.h"
#include "stddef.h"
const MonitorDef *target_monitor_defs(void);

4
tests/tcg/test-i386-fprem.c

@ -22,10 +22,8 @@
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
#include "qemu/compiler.h"
#include "qemu/osdep.h"
#include <stdio.h>
#include <inttypes.h>
/*
* Inspired by <ieee754.h>'s union ieee854_long_double, but with single

Loading…
Cancel
Save