Skip to content

Commit

Permalink
Fix wrong header path.
Browse files Browse the repository at this point in the history
  • Loading branch information
rmalmain committed Apr 11, 2024
1 parent 67e71cf commit 51de3c4
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
3 changes: 2 additions & 1 deletion libafl/syx-snapshot/channel-buffer-writeback.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
#include "qemu/osdep.h"
#include "migration/qemu-file.h"
#include "channel-buffer-writeback.h"

#include "../syx-misc.h"
#include "libafl/syx-snapshot/channel-buffer-writeback.h"

QIOChannelBufferWriteback* qio_channel_buffer_writeback_new(size_t capacity, uint8_t* writeback_buf, size_t writeback_buf_capacity, size_t* writeback_buf_usage) {
assert(writeback_buf != NULL);
Expand Down
5 changes: 3 additions & 2 deletions libafl/syx-snapshot/device-save.c
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
#include "qemu/osdep.h"
#include "device-save.h"
#include "migration/qemu-file.h"
#include "io/channel-buffer.h"
#include "channel-buffer-writeback.h"
#include "migration/vmstate.h"
#include "qemu/main-loop.h"

#include "../syx-misc.h"
#include "libafl/syx-snapshot/channel-buffer-writeback.h"
#include "libafl/syx-snapshot/device-save.h"

#include "migration/savevm.h"

Expand Down
2 changes: 1 addition & 1 deletion libafl/syx-snapshot/syx-cow-cache.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "syx-cow-cache.h"
#include "libafl/syx-snapshot/syx-cow-cache.h"

#include "sysemu/block-backend.h"

Expand Down
4 changes: 2 additions & 2 deletions libafl/syx-snapshot/syx-snapshot.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
#include "exec/ram_addr.h"
#include "exec/exec-all.h"

#include "syx-snapshot.h"
#include "device-save.h"
#include "libafl/syx-snapshot/syx-snapshot.h"
#include "libafl/syx-snapshot/device-save.h"

#define SYX_SNAPSHOT_LIST_INIT_SIZE 4096
#define SYX_SNAPSHOT_LIST_GROW_FACTOR 2
Expand Down

0 comments on commit 51de3c4

Please sign in to comment.