|
@@ -461,6 +461,7 @@ void ttm_mem_global_free(struct ttm_mem_global *glob,
|
|
|
{
|
|
|
return ttm_mem_global_free_zone(glob, NULL, amount);
|
|
|
}
|
|
|
+EXPORT_SYMBOL(ttm_mem_global_free);
|
|
|
|
|
|
static int ttm_mem_global_reserve(struct ttm_mem_global *glob,
|
|
|
struct ttm_mem_zone *single_zone,
|
|
@@ -534,6 +535,7 @@ int ttm_mem_global_alloc(struct ttm_mem_global *glob, uint64_t memory,
|
|
|
return ttm_mem_global_alloc_zone(glob, NULL, memory, no_wait,
|
|
|
interruptible);
|
|
|
}
|
|
|
+EXPORT_SYMBOL(ttm_mem_global_alloc);
|
|
|
|
|
|
int ttm_mem_global_alloc_page(struct ttm_mem_global *glob,
|
|
|
struct page *page,
|
|
@@ -589,3 +591,4 @@ size_t ttm_round_pot(size_t size)
|
|
|
}
|
|
|
return 0;
|
|
|
}
|
|
|
+EXPORT_SYMBOL(ttm_round_pot);
|