feature: disable getting fd from vmExport

Related-To: NEO-12680


Signed-off-by: Tomasz Biernacik <tomasz.biernacik@intel.com>
This commit is contained in:
Tomasz Biernacik
2025-04-15 11:23:21 +00:00
committed by Compute-Runtime-Automation
parent b8be602bfb
commit 5bf8b66498
2 changed files with 0 additions and 17 deletions

View File

@@ -25,16 +25,4 @@ void IoctlHelperXePrelim::setContextProperties(const OsContextLinux &osContext,
IoctlHelperXe::setContextProperties(osContext, deviceIndex, extProperties, extIndexInOut);
}
bool IoctlHelperXePrelim::getFdFromVmExport(uint32_t vmId, uint32_t flags, int32_t *fd) {
return IoctlHelperXe::getFdFromVmExport(vmId, flags, fd);
}
unsigned int IoctlHelperXePrelim::getIoctlRequestValue(DrmIoctl ioctlRequest) const {
return IoctlHelperXe::getIoctlRequestValue(ioctlRequest);
}
std::string IoctlHelperXePrelim::getIoctlString(DrmIoctl ioctlRequest) const {
return IoctlHelperXe::getIoctlString(ioctlRequest);
}
} // namespace NEO

View File

@@ -14,11 +14,6 @@ class IoctlHelperXePrelim : public IoctlHelperXe {
public:
using IoctlHelperXe::IoctlHelperXe;
bool getFdFromVmExport(uint32_t vmId, uint32_t flags, int32_t *fd) override;
unsigned int getIoctlRequestValue(DrmIoctl ioctlRequest) const override;
std::string getIoctlString(DrmIoctl ioctlRequest) const override;
protected:
virtual bool isPrimaryContext(const OsContextLinux &osContext, uint32_t deviceIndex);
virtual uint32_t getPrimaryContextId(const OsContextLinux &osContext, uint32_t deviceIndex, size_t contextIndex);