habanalabs: remove unused hash
authorOmer Shpigelman <oshpigelman@habana.ai>
Tue, 7 Jul 2020 21:29:54 +0000 (00:29 +0300)
committerOded Gabbay <oded.gabbay@gmail.com>
Fri, 24 Jul 2020 17:31:36 +0000 (20:31 +0300)
Remove an old hash that is not in use anymore.

Signed-off-by: Omer Shpigelman <oshpigelman@habana.ai>
Reviewed-by: Oded Gabbay <oded.gabbay@gmail.com>
Signed-off-by: Oded Gabbay <oded.gabbay@gmail.com>
drivers/misc/habanalabs/habanalabs.h
drivers/misc/habanalabs/mmu.c

index a61aab0..ea0fd17 100644 (file)
@@ -780,7 +780,6 @@ struct hl_va_range {
  * struct hl_ctx - user/kernel context.
  * @mem_hash: holds mapping from virtual address to virtual memory area
  *             descriptor (hl_vm_phys_pg_list or hl_userptr).
- * @mmu_phys_hash: holds a mapping from physical address to pgt_info structure.
  * @mmu_shadow_hash: holds a mapping from shadow address to pgt_info structure.
  * @hpriv: pointer to the private (Kernel Driver) data of the process (fd).
  * @hdev: pointer to the device structure.
@@ -814,7 +813,6 @@ struct hl_va_range {
  */
 struct hl_ctx {
        DECLARE_HASHTABLE(mem_hash, MEM_HASH_TABLE_BITS);
-       DECLARE_HASHTABLE(mmu_phys_hash, MMU_HASH_TABLE_BITS);
        DECLARE_HASHTABLE(mmu_shadow_hash, MMU_HASH_TABLE_BITS);
        struct hl_fpriv         *hpriv;
        struct hl_device        *hdev;
index a290d6b..0430395 100644 (file)
@@ -502,7 +502,6 @@ int hl_mmu_ctx_init(struct hl_ctx *ctx)
                return 0;
 
        mutex_init(&ctx->mmu_lock);
-       hash_init(ctx->mmu_phys_hash);
        hash_init(ctx->mmu_shadow_hash);
 
        return dram_default_mapping_init(ctx);