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

minimize container requirements

Signed-off-by: IgnoreWarnings <pascal.bauer@rwth-aachen.de>
This commit is contained in:
IgnoreWarnings 2024-08-08 17:53:41 +00:00 committed by Niklas Eiling
parent 2bc2eaed28
commit 4d062d7098

View file

@ -35,8 +35,7 @@ static constexpr size_t EXTENSION_SIZE = VFIO_NOIOMMU_IOMMU + 1;
class Container {
public:
Container(std::vector<std::string> required_modules = {"vfio", "vfio_pci",
"vfio_iommu_type1"});
Container(std::vector<std::string> required_modules = {"vfio"});
// No copying allowed because we manage the vfio state in constructor and destructors
Container(Container const &) = delete;