Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 92d5a606721f759ebebf448b3bd2b7a781d50bd0 18 lines 425 B view raw
1/* SPDX-License-Identifier: MIT */ 2/* 3 * Copyright © 2021 Intel Corporation 4 */ 5 6#ifndef __DRM_BUDDY_H__ 7#define __DRM_BUDDY_H__ 8 9#include <linux/gpu_buddy.h> 10 11struct drm_printer; 12 13/* DRM-specific GPU Buddy Allocator print helpers */ 14void drm_buddy_print(struct gpu_buddy *mm, struct drm_printer *p); 15void drm_buddy_block_print(struct gpu_buddy *mm, 16 struct gpu_buddy_block *block, 17 struct drm_printer *p); 18#endif