block.c (8e6dad2028d01b7f9ec76cf3b83457fab57fa1eb) block.c (feccdceed25302e1e3db744d468304705ee7c4dd)
1/*
2 * QEMU System Emulator block driver
3 *
4 * Copyright (c) 2003 Fabrice Bellard
5 * Copyright (c) 2020 Virtuozzo International GmbH.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal

--- 40 unchanged lines hidden (view full) ---

49#include "qemu/timer.h"
50#include "qemu/cutils.h"
51#include "qemu/id.h"
52#include "block/coroutines.h"
53
54#ifdef CONFIG_BSD
55#include <sys/ioctl.h>
56#include <sys/queue.h>
1/*
2 * QEMU System Emulator block driver
3 *
4 * Copyright (c) 2003 Fabrice Bellard
5 * Copyright (c) 2020 Virtuozzo International GmbH.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal

--- 40 unchanged lines hidden (view full) ---

49#include "qemu/timer.h"
50#include "qemu/cutils.h"
51#include "qemu/id.h"
52#include "block/coroutines.h"
53
54#ifdef CONFIG_BSD
55#include <sys/ioctl.h>
56#include <sys/queue.h>
57#ifndef __DragonFly__
57#if defined(HAVE_SYS_DISK_H)
58#include <sys/disk.h>
59#endif
60#endif
61
62#ifdef _WIN32
63#include <windows.h>
64#endif
65

--- 7527 unchanged lines hidden ---
58#include <sys/disk.h>
59#endif
60#endif
61
62#ifdef _WIN32
63#include <windows.h>
64#endif
65

--- 7527 unchanged lines hidden ---