diff options
author | Daniel Vetter <daniel.vetter@ffwll.ch> | 2021-07-27 14:10:28 +0200 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2021-07-28 16:45:57 +0200 |
commit | 512ba03e35ccb2897d19d0207ef6bd55a9564fd1 (patch) | |
tree | 12f6329f268ff3b6bc67a356e38cbf15f9dc4163 /drivers/gpu/drm/i915/i915_globals.h | |
parent | 6d5de3275609c6022d6677808968b7adcdee5e66 (diff) | |
download | lwn-512ba03e35ccb2897d19d0207ef6bd55a9564fd1.tar.gz lwn-512ba03e35ccb2897d19d0207ef6bd55a9564fd1.zip |
drm/i915: move i915_active slab to direct module init/exit
With the global kmem_cache shrink infrastructure gone there's nothing
special and we can convert them over.
I'm doing this split up into each patch because there's quite a bit of
noise with removing the static global.slab_cache to just a slab_cache.
v2: Make slab static (Jason, 0day)
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Cc: Jason Ekstrand <jason@jlekstrand.net>
Signed-off-by: Daniel Vetter <daniel.vetter@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20210727121037.2041102-2-daniel.vetter@ffwll.ch
Diffstat (limited to 'drivers/gpu/drm/i915/i915_globals.h')
-rw-r--r-- | drivers/gpu/drm/i915/i915_globals.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/i915_globals.h b/drivers/gpu/drm/i915/i915_globals.h index 9e6b4fd07528..d80901ba75e3 100644 --- a/drivers/gpu/drm/i915/i915_globals.h +++ b/drivers/gpu/drm/i915/i915_globals.h @@ -23,7 +23,6 @@ int i915_globals_init(void); void i915_globals_exit(void); /* constructors */ -int i915_global_active_init(void); int i915_global_context_init(void); int i915_global_gem_context_init(void); int i915_global_objects_init(void); |