Home
last modified time | relevance | path

Searched refs:shm_arg_cache (Results 1 – 2 of 2) sorted by relevance

/openbmc/linux/drivers/tee/optee/
H A Dcall.c137 INIT_LIST_HEAD(&optee->shm_arg_cache.shm_args); in optee_shm_arg_cache_init()
138 mutex_init(&optee->shm_arg_cache.mutex); in optee_shm_arg_cache_init()
139 optee->shm_arg_cache.flags = flags; in optee_shm_arg_cache_init()
144 struct list_head *head = &optee->shm_arg_cache.shm_args; in optee_shm_arg_cache_uninit()
147 mutex_destroy(&optee->shm_arg_cache.mutex); in optee_shm_arg_cache_uninit()
199 if (optee->shm_arg_cache.flags & OPTEE_SHM_ARG_SHARED) in optee_get_msg_arg()
204 mutex_lock(&optee->shm_arg_cache.mutex); in optee_get_msg_arg()
220 if (optee->shm_arg_cache.flags & OPTEE_SHM_ARG_ALLOC_PRIV) in optee_get_msg_arg()
246 mutex_unlock(&optee->shm_arg_cache.mutex); in optee_get_msg_arg()
271 mutex_lock(&optee->shm_arg_cache.mutex); in optee_free_msg_arg()
[all …]
H A Doptee_private.h193 struct optee_shm_arg_cache shm_arg_cache; member