ff4ff35918
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
26 lines
600 B
C
26 lines
600 B
C
/* SPDX-License-Identifier: GPL-2.0 OR MIT */
|
|
/* Copyright (c) 2025 Valve Corporation */
|
|
|
|
#ifndef _TTM_POOL_INTERNAL_H_
|
|
#define _TTM_POOL_INTERNAL_H_
|
|
|
|
#include <drm/ttm/ttm_allocation.h>
|
|
#include <drm/ttm/ttm_pool.h>
|
|
|
|
static inline bool ttm_pool_uses_dma_alloc(struct ttm_pool *pool)
|
|
{
|
|
return pool->alloc_flags & TTM_ALLOCATION_POOL_USE_DMA_ALLOC;
|
|
}
|
|
|
|
static inline bool ttm_pool_uses_dma32(struct ttm_pool *pool)
|
|
{
|
|
return pool->alloc_flags & TTM_ALLOCATION_POOL_USE_DMA32;
|
|
}
|
|
|
|
static inline unsigned int ttm_pool_beneficial_order(struct ttm_pool *pool)
|
|
{
|
|
return pool->alloc_flags & 0xff;
|
|
}
|
|
|
|
#endif
|