1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

use only absolute include paths

Signed-off-by: Niklas Eiling <niklas.eiling@eonerc.rwth-aachen.de>
This commit is contained in:
Niklas Eiling 2022-12-02 15:39:32 +01:00 committed by Steffen Vogel
parent 8f281e35f2
commit 579faa459a
3 changed files with 4 additions and 3 deletions

View file

@ -18,7 +18,7 @@
#include <linux/vfio.h>
#include <sys/mman.h>
#include "vfio_group.hpp"
#include <villas/kernel/vfio_group.hpp>
namespace villas {
namespace kernel {

View file

@ -19,7 +19,7 @@
#include <linux/vfio.h>
#include <sys/mman.h>
#include "pci.hpp"
#include <villas/kernel/pci.hpp>
#include <villas/log.hpp>
#define VFIO_PATH "/dev/vfio/"
@ -93,6 +93,7 @@ private:
Logger log;
};
} /* namespace vfio */
} /* namespace kernel */
} /* namespace villas */

View file

@ -18,7 +18,7 @@
#include <linux/vfio.h>
#include <sys/mman.h>
#include "vfio_device.hpp"
#include <villas/kernel/vfio_device.hpp>
#include <villas/log.hpp>
namespace villas {