void ttm_mem_global_free(struct ttm_mem_global *glob,
                         uint64_t amount)
 {
-       return ttm_mem_global_free_zone(glob, NULL, amount);
+       return ttm_mem_global_free_zone(glob, glob->zone_kernel, amount);
 }
 EXPORT_SYMBOL(ttm_mem_global_free);
 
 {
        /**
         * Normal allocations of kernel memory are registered in
-        * all zones.
+        * the kernel zone.
         */
 
-       return ttm_mem_global_alloc_zone(glob, NULL, memory, ctx);
+       return ttm_mem_global_alloc_zone(glob, glob->zone_kernel, memory, ctx);
 }
 EXPORT_SYMBOL(ttm_mem_global_alloc);