mirror of
https://github.com/torvalds/linux.git
synced 2024-12-03 17:41:22 +00:00
013b651013
Add support for madvise and a shrinker similar to other drivers. This allows userspace to mark BOs which can be freed when there is memory pressure. Unlike other implementations, we don't depend on struct_mutex. The driver maintains a list of BOs which can be freed when the shrinker is called. Access to the list is serialized with the shrinker_lock. Cc: Tomeu Vizoso <tomeu.vizoso@collabora.com> Cc: David Airlie <airlied@linux.ie> Cc: Daniel Vetter <daniel@ffwll.ch> Acked-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com> Signed-off-by: Rob Herring <robh@kernel.org> Link: https://patchwork.freedesktop.org/patch/msgid/20190805143358.21245-2-robh@kernel.org
15 lines
274 B
Makefile
15 lines
274 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
panfrost-y := \
|
|
panfrost_drv.o \
|
|
panfrost_device.o \
|
|
panfrost_devfreq.o \
|
|
panfrost_gem.o \
|
|
panfrost_gem_shrinker.o \
|
|
panfrost_gpu.o \
|
|
panfrost_job.o \
|
|
panfrost_mmu.o \
|
|
panfrost_perfcnt.o
|
|
|
|
obj-$(CONFIG_DRM_PANFROST) += panfrost.o
|