anv: provide required gem stubs for the tests

Introduce stubs to anv_gem_stub.c that match the anv_gem.c ones.
Otherwise we may get link-time errors, when building the tests.

v2: Introduce all the missing stubs at once.

Cc: Jason Ekstrand <jason@jlekstrand.net>
Cc: Vinson Lee <vlee@freedesktop.org>
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=100574
Fixes: c964f0e485 ("anv: Query the kernel for reset status")
Fixes: 651ec926fc ("anv: Add support for 48-bit addresses")
Fixes: 060a6434ec ("anv: Advertise larger heap sizes")
Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
---
I've intentionally kept the order the same identical to the anv_gem.c.
This way we can easily grep & diff in the future ;-)
This commit is contained in:
Emil Velikov 2017-04-05 17:52:51 +01:00 committed by Emil Velikov
parent 8307124829
commit a6840efc09
1 changed files with 19 additions and 0 deletions

View File

@ -138,12 +138,31 @@ anv_gem_destroy_context(struct anv_device *device, int context)
unreachable("Unused");
}
int
anv_gem_get_context_param(int fd, int context, uint32_t param, uint64_t *value)
{
unreachable("Unused");
}
int
anv_gem_get_aperture(int fd, uint64_t *size)
{
unreachable("Unused");
}
bool
anv_gem_supports_48b_addresses(int fd)
{
unreachable("Unused");
}
int
anv_gem_gpu_get_reset_stats(struct anv_device *device,
uint32_t *active, uint32_t *pending)
{
unreachable("Unused");
}
int
anv_gem_handle_to_fd(struct anv_device *device, uint32_t gem_handle)
{