Home
last modified time | relevance | path

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

/freebsd/sys/dev/mthca/
H A Dmthca_memfree.c460 i = index / MTHCA_DB_REC_PER_PAGE; in mthca_map_user_db()
462 if ((db_tab->page[i].refcount >= MTHCA_DB_REC_PER_PAGE) || in mthca_map_user_db()
516 --db_tab->page[index / MTHCA_DB_REC_PER_PAGE].refcount; in mthca_unmap_user_db()
601 MTHCA_DB_REC_PER_PAGE)) { in mthca_alloc_db()
641 bitmap_zero(page->used, MTHCA_DB_REC_PER_PAGE); in mthca_alloc_db()
644 j = find_first_zero_bit(page->used, MTHCA_DB_REC_PER_PAGE); in mthca_alloc_db()
648 j = MTHCA_DB_REC_PER_PAGE - 1 - j; in mthca_alloc_db()
650 ret = i * MTHCA_DB_REC_PER_PAGE + j; in mthca_alloc_db()
667 i = db_index / MTHCA_DB_REC_PER_PAGE; in mthca_free_db()
668 j = db_index % MTHCA_DB_REC_PER_PAGE; in mthca_free_db()
[all …]
H A Dmthca_memfree.h47 #define MTHCA_DB_REC_PER_PAGE (MTHCA_ICM_PAGE_SIZE / 8) macro
137 DECLARE_BITMAP(used, MTHCA_DB_REC_PER_PAGE);