Re: [PATCH v2 bpf-next 1/2] drm, bpf: Move drm_mm.c to lib to be used by bpf arena

2024-11-07 Thread Alexei Starovoitov
On Tue, Nov 5, 2024 at 1:20 PM Alexei Starovoitov wrote: > > From: Alexei Starovoitov > > Move drm_mm.c to lib: > - The next commit will use drm_mm to manage memory regions > in bpf arena. > - Move drm_mm_print to drivers/gpu/drm/drm_print.c, since > it's not a core functionality of drm_mm an

[PATCH v2 bpf-next 1/2] drm, bpf: Move drm_mm.c to lib to be used by bpf arena

2024-11-05 Thread Alexei Starovoitov
From: Alexei Starovoitov Move drm_mm.c to lib: - The next commit will use drm_mm to manage memory regions in bpf arena. - Move drm_mm_print to drivers/gpu/drm/drm_print.c, since it's not a core functionality of drm_mm and it depeneds on drm_printer while drm_mm is generic and usuable as-is