mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 06:01:57 +00:00
drm/test: use kunit action wrapper macro in the gem shmem test suite
Replace deferred action function wrappers with equivalent ones defined
using the macro introduced by commit 56778b49c9
("kunit: Add a macro to
wrap a deferred action function")
Signed-off-by: Marco Pagani <marpagan@redhat.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: https://patchwork.freedesktop.org/patch/msgid/20240723191036.131286-1-marpagan@redhat.com
This commit is contained in:
parent
83b501c179
commit
773884e39b
@ -23,29 +23,16 @@
|
||||
#define TEST_BYTE 0xae
|
||||
|
||||
/*
|
||||
* Wrappers to avoid an explicit type casting when passing action
|
||||
* functions to kunit_add_action().
|
||||
* Wrappers to avoid cast warnings when passing action functions
|
||||
* directly to kunit_add_action().
|
||||
*/
|
||||
static void kfree_wrapper(void *ptr)
|
||||
{
|
||||
const void *obj = ptr;
|
||||
KUNIT_DEFINE_ACTION_WRAPPER(kfree_wrapper, kfree, const void *);
|
||||
|
||||
kfree(obj);
|
||||
}
|
||||
KUNIT_DEFINE_ACTION_WRAPPER(sg_free_table_wrapper, sg_free_table,
|
||||
struct sg_table *);
|
||||
|
||||
static void sg_free_table_wrapper(void *ptr)
|
||||
{
|
||||
struct sg_table *sgt = ptr;
|
||||
|
||||
sg_free_table(sgt);
|
||||
}
|
||||
|
||||
static void drm_gem_shmem_free_wrapper(void *ptr)
|
||||
{
|
||||
struct drm_gem_shmem_object *shmem = ptr;
|
||||
|
||||
drm_gem_shmem_free(shmem);
|
||||
}
|
||||
KUNIT_DEFINE_ACTION_WRAPPER(drm_gem_shmem_free_wrapper, drm_gem_shmem_free,
|
||||
struct drm_gem_shmem_object *);
|
||||
|
||||
/*
|
||||
* Test creating a shmem GEM object backed by shmem buffer. The test
|
||||
|
Loading…
Reference in New Issue
Block a user