Searched refs:iot_cache (Results 1 – 2 of 2) sorted by relevance
1496 GHashTable *iot_cache, hwaddr iova, RISCVIOMMUTransTag transtag) in riscv_iommu_iot_lookup() argument1504 return g_hash_table_lookup(iot_cache, &key); in riscv_iommu_iot_lookup()1509 GHashTable *iot_cache, RISCVIOMMUEntry *iot) in riscv_iommu_iot_update() argument1515 if (g_hash_table_size(s->iot_cache) >= s->iot_limit) { in riscv_iommu_iot_update()1516 iot_cache = g_hash_table_new_full(riscv_iommu_iot_hash, in riscv_iommu_iot_update()1519 g_hash_table_unref(qatomic_xchg(&s->iot_cache, iot_cache)); in riscv_iommu_iot_update()1521 g_hash_table_add(iot_cache, iot); in riscv_iommu_iot_update()1527 GHashTable *iot_cache; in riscv_iommu_iot_inval() local1535 iot_cache = g_hash_table_ref(s->iot_cache); in riscv_iommu_iot_inval()1536 g_hash_table_foreach(iot_cache, func, &key); in riscv_iommu_iot_inval()[all …]
73 GHashTable *iot_cache; /* IO Translated Address Cache */ member