util: Clean up includes

Clean up includes so that osdep.h is included first and headers
which it implies are not included manually.

This commit was created with scripts/clean-includes.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Message-id: 1454089805-5470-6-git-send-email-peter.maydell@linaro.org
This commit is contained in:
Peter Maydell 2016-01-29 17:49:55 +00:00
parent 9c058332f3
commit aafd758410
50 changed files with 50 additions and 72 deletions

View File

@ -23,6 +23,7 @@
*/ */
#include "qemu/osdep.h"
#include "qemu-common.h" #include "qemu-common.h"
#include "qemu/acl.h" #include "qemu/acl.h"

View File

@ -18,6 +18,7 @@
* *
*/ */
#include "qemu/osdep.h"
#include <config-host.h> #include <config-host.h>
#include "qemu/base64.h" #include "qemu/base64.h"

View File

@ -9,6 +9,7 @@
* Version 2. * Version 2.
*/ */
#include "qemu/osdep.h"
#include "qemu/bitops.h" #include "qemu/bitops.h"
#include "qemu/bitmap.h" #include "qemu/bitmap.h"
#include "qemu/atomic.h" #include "qemu/atomic.h"

View File

@ -11,6 +11,7 @@
* 2 of the License, or (at your option) any later version. * 2 of the License, or (at your option) any later version.
*/ */
#include "qemu/osdep.h"
#include "qemu/bitops.h" #include "qemu/bitops.h"
#define BITOP_WORD(nr) ((nr) / BITS_PER_LONG) #define BITOP_WORD(nr) ((nr) / BITS_PER_LONG)

View File

@ -18,6 +18,7 @@
* *
*/ */
#include "qemu/osdep.h"
#include "qemu/buffer.h" #include "qemu/buffer.h"
#include "trace.h" #include "trace.h"

View File

@ -13,6 +13,7 @@
* GNU GPL, version 2 or (at your option) any later version. * GNU GPL, version 2 or (at your option) any later version.
*/ */
#include "qemu/osdep.h"
#include "qemu-common.h" #include "qemu-common.h"
#include "qemu/compatfd.h" #include "qemu/compatfd.h"
#include "qemu/thread.h" #include "qemu/thread.h"

View File

@ -18,6 +18,7 @@
* License along with this library; if not, see <http://www.gnu.org/licenses/>. * License along with this library; if not, see <http://www.gnu.org/licenses/>.
*/ */
#include "qemu/osdep.h"
#include <glib.h> #include <glib.h>
#include "qemu-common.h" #include "qemu-common.h"
#include "qemu/coroutine_int.h" #include "qemu/coroutine_int.h"

View File

@ -25,11 +25,9 @@
#ifdef _FORTIFY_SOURCE #ifdef _FORTIFY_SOURCE
#undef _FORTIFY_SOURCE #undef _FORTIFY_SOURCE
#endif #endif
#include <stdlib.h> #include "qemu/osdep.h"
#include <setjmp.h> #include <setjmp.h>
#include <stdint.h>
#include <pthread.h> #include <pthread.h>
#include <signal.h>
#include "qemu-common.h" #include "qemu-common.h"
#include "qemu/coroutine_int.h" #include "qemu/coroutine_int.h"

View File

@ -22,9 +22,8 @@
#ifdef _FORTIFY_SOURCE #ifdef _FORTIFY_SOURCE
#undef _FORTIFY_SOURCE #undef _FORTIFY_SOURCE
#endif #endif
#include <stdlib.h> #include "qemu/osdep.h"
#include <setjmp.h> #include <setjmp.h>
#include <stdint.h>
#include <ucontext.h> #include <ucontext.h>
#include "qemu-common.h" #include "qemu-common.h"
#include "qemu/coroutine_int.h" #include "qemu/coroutine_int.h"

View File

@ -22,6 +22,7 @@
* THE SOFTWARE. * THE SOFTWARE.
*/ */
#include "qemu/osdep.h"
#include "qemu-common.h" #include "qemu-common.h"
#include "qemu/coroutine_int.h" #include "qemu/coroutine_int.h"

View File

@ -25,6 +25,7 @@
* *
*/ */
#include "qemu/osdep.h"
#include "qemu-common.h" #include "qemu-common.h"
#include "qemu/crc32c.h" #include "qemu/crc32c.h"

View File

@ -21,11 +21,10 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE. * THE SOFTWARE.
*/ */
#include "qemu/osdep.h"
#include "qemu-common.h" #include "qemu-common.h"
#include "qemu/host-utils.h" #include "qemu/host-utils.h"
#include <math.h> #include <math.h>
#include <limits.h>
#include <errno.h>
#include "qemu/sockets.h" #include "qemu/sockets.h"
#include "qemu/iov.h" #include "qemu/iov.h"

View File

@ -1,3 +1,4 @@
#include "qemu/osdep.h"
#include "qemu-common.h" #include "qemu-common.h"
#include "qemu/queue.h" #include "qemu/queue.h"
#include "qemu/envlist.h" #include "qemu/envlist.h"

View File

@ -12,8 +12,8 @@
* the COPYING.LIB file in the top-level directory. * the COPYING.LIB file in the top-level directory.
*/ */
#include "qemu/osdep.h"
#include "qemu-common.h" #include "qemu-common.h"
#include "qapi/error.h"
#include "qemu/error-report.h" #include "qemu/error-report.h"
struct Error struct Error

View File

@ -10,6 +10,7 @@
* See the COPYING file in the top-level directory. * See the COPYING file in the top-level directory.
*/ */
#include "qemu/osdep.h"
#include "qemu-common.h" #include "qemu-common.h"
#include "qemu/event_notifier.h" #include "qemu/event_notifier.h"
#include "sysemu/char.h" #include "sysemu/char.h"

View File

@ -10,6 +10,7 @@
* See the COPYING file in the top-level directory. * See the COPYING file in the top-level directory.
*/ */
#include "qemu/osdep.h"
#include "qemu-common.h" #include "qemu-common.h"
#include "qemu/event_notifier.h" #include "qemu/event_notifier.h"
#include "qemu/main-loop.h" #include "qemu/main-loop.h"

View File

@ -12,6 +12,7 @@
* with this program; if not, see <http://www.gnu.org/licenses/>. * with this program; if not, see <http://www.gnu.org/licenses/>.
*/ */
#include "qemu/osdep.h"
#include "qemu-common.h" #include "qemu-common.h"
#include "qemu/fifo8.h" #include "qemu/fifo8.h"

View File

@ -22,8 +22,8 @@
* THE SOFTWARE. * THE SOFTWARE.
*/ */
#include "qemu-common.h"
#include "qemu/osdep.h" #include "qemu/osdep.h"
#include "qemu-common.h"
#ifdef CONFIG_GETAUXVAL #ifdef CONFIG_GETAUXVAL
/* Don't inline this in qemu/osdep.h, because pulling in <sys/auxv.h> for /* Don't inline this in qemu/osdep.h, because pulling in <sys/auxv.h> for

View File

@ -9,10 +9,8 @@
* later. See the COPYING file in the top-level directory. * later. See the COPYING file in the top-level directory.
*/ */
#include <string.h>
#include <glib.h>
#include <assert.h>
#include "qemu/osdep.h" #include "qemu/osdep.h"
#include <glib.h>
#include "qemu/hbitmap.h" #include "qemu/hbitmap.h"
#include "qemu/host-utils.h" #include "qemu/host-utils.h"
#include "trace.h" #include "trace.h"

View File

@ -13,6 +13,7 @@
* GNU GPL, version 2 or (at your option) any later version. * GNU GPL, version 2 or (at your option) any later version.
*/ */
#include "qemu/osdep.h"
#include "qemu-common.h" #include "qemu-common.h"
void qemu_hexdump(const char *buf, FILE *fp, const char *prefix, size_t size) void qemu_hexdump(const char *buf, FILE *fp, const char *prefix, size_t size)

View File

@ -23,8 +23,7 @@
* THE SOFTWARE. * THE SOFTWARE.
*/ */
#include <stdlib.h> #include "qemu/osdep.h"
#include <stdint.h>
#include "qemu/host-utils.h" #include "qemu/host-utils.h"
/* Long integer helpers */ /* Long integer helpers */

View File

@ -10,6 +10,7 @@
* or later. See the COPYING.LIB file in the top-level directory. * or later. See the COPYING.LIB file in the top-level directory.
*/ */
#include "qemu/osdep.h"
#include "qemu-common.h" #include "qemu-common.h"
bool id_wellformed(const char *id) bool id_wellformed(const char *id)

View File

@ -16,6 +16,7 @@
* GNU GPL, version 2 or (at your option) any later version. * GNU GPL, version 2 or (at your option) any later version.
*/ */
#include "qemu/osdep.h"
#include "qemu/iov.h" #include "qemu/iov.h"
#include "qemu/sockets.h" #include "qemu/sockets.h"

View File

@ -9,10 +9,9 @@
* This work is licensed under the terms of the GNU GPL, version 2 or * This work is licensed under the terms of the GNU GPL, version 2 or
* later. See the COPYING file in the top-level directory. * later. See the COPYING file in the top-level directory.
*/ */
#include "qemu/osdep.h"
#include <qemu/mmap-alloc.h> #include <qemu/mmap-alloc.h>
#include <sys/types.h>
#include <sys/mman.h> #include <sys/mman.h>
#include <assert.h>
#define HUGETLBFS_MAGIC 0x958458f6 #define HUGETLBFS_MAGIC 0x958458f6

View File

@ -13,7 +13,7 @@
* GNU GPL, version 2 or (at your option) any later version. * GNU GPL, version 2 or (at your option) any later version.
*/ */
#include <stdlib.h> #include "qemu/osdep.h"
#include "qemu-common.h" #include "qemu-common.h"
#ifdef CONFIG_MODULES #ifdef CONFIG_MODULES
#include <gmodule.h> #include <gmodule.h>

View File

@ -13,6 +13,7 @@
* GNU GPL, version 2 or (at your option) any later version. * GNU GPL, version 2 or (at your option) any later version.
*/ */
#include "qemu/osdep.h"
#include "qemu-common.h" #include "qemu-common.h"
#include "qemu/notify.h" #include "qemu/notify.h"

View File

@ -21,24 +21,15 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE. * THE SOFTWARE.
*/ */
#include <stdlib.h> #include "qemu/osdep.h"
#include <stdio.h>
#include <stdarg.h>
#include <stdbool.h>
#include <string.h>
#include <errno.h>
#include <unistd.h>
#include <fcntl.h>
/* Needed early for CONFIG_BSD etc. */ /* Needed early for CONFIG_BSD etc. */
#include "config-host.h"
#if defined(CONFIG_MADVISE) || defined(CONFIG_POSIX_MADVISE) #if defined(CONFIG_MADVISE) || defined(CONFIG_POSIX_MADVISE)
#include <sys/mman.h> #include <sys/mman.h>
#endif #endif
#ifdef CONFIG_SOLARIS #ifdef CONFIG_SOLARIS
#include <sys/types.h>
#include <sys/statvfs.h> #include <sys/statvfs.h>
/* See MySQL bug #7156 (http://bugs.mysql.com/bug.php?id=7156) for /* See MySQL bug #7156 (http://bugs.mysql.com/bug.php?id=7156) for
discussion about Solaris header problems */ discussion about Solaris header problems */

View File

@ -47,13 +47,12 @@ extern int daemon(int, int);
# define QEMU_VMALLOC_ALIGN getpagesize() # define QEMU_VMALLOC_ALIGN getpagesize()
#endif #endif
#include "qemu/osdep.h"
#include <termios.h> #include <termios.h>
#include <unistd.h>
#include <termios.h> #include <termios.h>
#include <glib/gprintf.h> #include <glib/gprintf.h>
#include "config-host.h"
#include "sysemu/sysemu.h" #include "sysemu/sysemu.h"
#include "trace.h" #include "trace.h"
#include "qemu/sockets.h" #include "qemu/sockets.h"

View File

@ -29,10 +29,9 @@
* this file are based on code from GNOME glib-2 and use a different license, * this file are based on code from GNOME glib-2 and use a different license,
* see the license comment there. * see the license comment there.
*/ */
#include "qemu/osdep.h"
#include <windows.h> #include <windows.h>
#include <glib.h> #include <glib.h>
#include <stdlib.h>
#include "config-host.h"
#include "sysemu/sysemu.h" #include "sysemu/sysemu.h"
#include "qemu/main-loop.h" #include "qemu/main-loop.h"
#include "trace.h" #include "trace.h"

View File

@ -3,14 +3,9 @@
The assumption is that this area does not change. The assumption is that this area does not change.
*/ */
#include <sys/types.h> #include "qemu/osdep.h"
#include <sys/param.h> #include <sys/param.h>
#include <dirent.h> #include <dirent.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <stdio.h>
#include "qemu-common.h" #include "qemu-common.h"
struct pathelem struct pathelem

View File

@ -1,8 +1,8 @@
#include "qemu/osdep.h"
#include "qemu-common.h" #include "qemu-common.h"
#include "qemu/error-report.h" #include "qemu/error-report.h"
#include "qemu/option.h" #include "qemu/option.h"
#include "qemu/config-file.h" #include "qemu/config-file.h"
#include "qapi/error.h"
#include "qmp-commands.h" #include "qmp-commands.h"
static QemuOptsList *vm_config_groups[48]; static QemuOptsList *vm_config_groups[48];

View File

@ -22,6 +22,7 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE. * THE SOFTWARE.
*/ */
#include "qemu/osdep.h"
#include "qemu-common.h" #include "qemu-common.h"
#include "qemu/sockets.h" #include "qemu/sockets.h"
#include "qemu/coroutine.h" #include "qemu/coroutine.h"

View File

@ -22,6 +22,7 @@
* THE SOFTWARE. * THE SOFTWARE.
*/ */
#include "qemu/osdep.h"
#include "qemu-common.h" #include "qemu-common.h"
#include "qemu/coroutine.h" #include "qemu/coroutine.h"
#include "qemu/coroutine_int.h" #include "qemu/coroutine_int.h"

View File

@ -11,6 +11,7 @@
* *
*/ */
#include "qemu/osdep.h"
#include "qemu/coroutine.h" #include "qemu/coroutine.h"
#include "qemu/timer.h" #include "qemu/timer.h"
#include "block/aio.h" #include "block/aio.h"

View File

@ -12,6 +12,7 @@
* *
*/ */
#include "qemu/osdep.h"
#include "trace.h" #include "trace.h"
#include "qemu-common.h" #include "qemu-common.h"
#include "qemu/thread.h" #include "qemu/thread.h"

View File

@ -10,7 +10,7 @@
* See the COPYING file in the top-level directory. * See the COPYING file in the top-level directory.
*/ */
#include <stdio.h> #include "qemu/osdep.h"
#include "monitor/monitor.h" #include "monitor/monitor.h"
#include "qemu/error-report.h" #include "qemu/error-report.h"

View File

@ -32,7 +32,7 @@
* linked with -lutil. * linked with -lutil.
*/ */
#include "config-host.h" #include "qemu/osdep.h"
#include "qemu-common.h" #include "qemu-common.h"
#if defined(__GLIBC__) #if defined(__GLIBC__)

View File

@ -23,13 +23,11 @@
* THE SOFTWARE. * THE SOFTWARE.
*/ */
#include <stdio.h> #include "qemu/osdep.h"
#include <string.h>
#include "qemu-common.h" #include "qemu-common.h"
#include "qemu/error-report.h" #include "qemu/error-report.h"
#include "qapi/qmp/types.h" #include "qapi/qmp/types.h"
#include "qapi/error.h"
#include "qapi/qmp/qerror.h" #include "qapi/qmp/qerror.h"
#include "qemu/option_int.h" #include "qemu/option_int.h"

View File

@ -22,9 +22,8 @@
* THE SOFTWARE. * THE SOFTWARE.
*/ */
#include "qemu-common.h"
#include "qemu/osdep.h" #include "qemu/osdep.h"
#include <stdio.h> #include "qemu-common.h"
struct progress_state { struct progress_state {
float current; float current;

View File

@ -15,12 +15,7 @@
* Contributions after 2012-01-13 are licensed under the terms of the * Contributions after 2012-01-13 are licensed under the terms of the
* GNU GPL, version 2 or (at your option) any later version. * GNU GPL, version 2 or (at your option) any later version.
*/ */
#include <stdio.h> #include "qemu/osdep.h"
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <errno.h>
#include <unistd.h>
#include "monitor/monitor.h" #include "monitor/monitor.h"
#include "qemu/sockets.h" #include "qemu/sockets.h"

View File

@ -10,16 +10,7 @@
* See the COPYING file in the top-level directory. * See the COPYING file in the top-level directory.
* *
*/ */
#include <stdlib.h> #include "qemu/osdep.h"
#include <stdio.h>
#include <errno.h>
#include <time.h>
#include <signal.h>
#include <stdint.h>
#include <string.h>
#include <limits.h>
#include <unistd.h>
#include <sys/time.h>
#ifdef __linux__ #ifdef __linux__
#include <sys/syscall.h> #include <sys/syscall.h>
#include <linux/futex.h> #include <linux/futex.h>

View File

@ -10,12 +10,11 @@
* See the COPYING file in the top-level directory. * See the COPYING file in the top-level directory.
* *
*/ */
#include "qemu/osdep.h"
#include "qemu-common.h" #include "qemu-common.h"
#include "qemu/thread.h" #include "qemu/thread.h"
#include "qemu/notify.h" #include "qemu/notify.h"
#include <process.h> #include <process.h>
#include <assert.h>
#include <limits.h>
static bool name_threads; static bool name_threads;

View File

@ -21,6 +21,7 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE. * THE SOFTWARE.
*/ */
#include "qemu/osdep.h"
#include "qemu/timer.h" #include "qemu/timer.h"
/***********************************************************/ /***********************************************************/

View File

@ -26,12 +26,8 @@
* IBM's contributions to this file may be relicensed under LGPLv2 or later. * IBM's contributions to this file may be relicensed under LGPLv2 or later.
*/ */
#include "qemu/osdep.h"
#include "qemu-common.h" #include "qemu-common.h"
#include <stdio.h>
#include <assert.h>
#include <stdlib.h>
#include <stdint.h>
#include <errno.h>
#include "qemu/rcu.h" #include "qemu/rcu.h"
#include "qemu/atomic.h" #include "qemu/atomic.h"
#include "qemu/thread.h" #include "qemu/thread.h"

View File

@ -22,6 +22,7 @@
* THE SOFTWARE. * THE SOFTWARE.
*/ */
#include "qemu/osdep.h"
#include "qemu-common.h" #include "qemu-common.h"
#include "qemu/readline.h" #include "qemu/readline.h"

View File

@ -11,7 +11,7 @@
* *
*/ */
#include <assert.h> #include "qemu/osdep.h"
#include "qemu/rfifolock.h" #include "qemu/rfifolock.h"
void rfifolock_init(RFifoLock *r, void (*cb)(void *), void *opaque) void rfifolock_init(RFifoLock *r, void (*cb)(void *), void *opaque)

View File

@ -22,6 +22,7 @@
* along with this program; if not, see <http://www.gnu.org/licenses/>. * along with this program; if not, see <http://www.gnu.org/licenses/>.
*/ */
#include "qemu/osdep.h"
#include "qemu/throttle.h" #include "qemu/throttle.h"
#include "qemu/timer.h" #include "qemu/timer.h"
#include "block/aio.h" #include "block/aio.h"

View File

@ -22,7 +22,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <string.h> #include "qemu/osdep.h"
#include "qemu/timed-average.h" #include "qemu/timed-average.h"

View File

@ -10,6 +10,7 @@
* later. See the COPYING file in the top-level directory. * later. See the COPYING file in the top-level directory.
*/ */
#include "qemu/osdep.h"
#include "qemu-common.h" #include "qemu-common.h"
/** /**

View File

@ -51,9 +51,8 @@
* *
*/ */
#include "qemu/osdep.h"
#include <glib.h> #include <glib.h>
#include <string.h>
#include <stdio.h>
#include "qemu/uri.h" #include "qemu/uri.h"