Skip to content

Commit

Permalink
aes: move aes.h from include/block to include/qemu
Browse files Browse the repository at this point in the history
Move aes.h from include/block to include/qemu to show it can be reused
by other subsystems.

Cc: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Reviewed-by: Edgar E. Iglesias <edgar.iglesias@gmail.com>
Reviewed-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
  • Loading branch information
aurel32 committed Apr 13, 2013
1 parent 309b4de commit 753d9b8
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion block/qcow.c
Expand Up @@ -25,7 +25,7 @@
#include "block/block_int.h"
#include "qemu/module.h"
#include <zlib.h>
#include "block/aes.h"
#include "qemu/aes.h"
#include "migration/migration.h"

/**************************************************************/
Expand Down
2 changes: 1 addition & 1 deletion block/qcow2.c
Expand Up @@ -25,7 +25,7 @@
#include "block/block_int.h"
#include "qemu/module.h"
#include <zlib.h>
#include "block/aes.h"
#include "qemu/aes.h"
#include "block/qcow2.h"
#include "qemu/error-report.h"
#include "qapi/qmp/qerror.h"
Expand Down
2 changes: 1 addition & 1 deletion block/qcow2.h
Expand Up @@ -25,7 +25,7 @@
#ifndef BLOCK_QCOW2_H
#define BLOCK_QCOW2_H

#include "block/aes.h"
#include "qemu/aes.h"
#include "block/coroutine.h"

//#define DEBUG_ALLOC
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion util/aes.c
Expand Up @@ -28,7 +28,7 @@
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "qemu-common.h"
#include "block/aes.h"
#include "qemu/aes.h"

#ifndef NDEBUG
#define NDEBUG
Expand Down

0 comments on commit 753d9b8

Please sign in to comment.