Skip to content

Commit

Permalink
drm: delay vblank cleanup until after driver unload
Browse files Browse the repository at this point in the history
Drivers may use vblank calls now (e.g. drm_vblank_off) in their unload
paths, so don't clean up the vblank related structures until after
driver unload.

Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Reviewed-by: Kristian Høgsberg <krh@bitplanet.net>
Signed-off-by: Dave Airlie <airlied@redhat.com>
  • Loading branch information
Jesse Barnes authored and Dave Airlie committed Apr 20, 2010
1 parent 79b9517 commit b78315f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/gpu/drm/drm_stub.c
Original file line number Diff line number Diff line change
Expand Up @@ -515,8 +515,6 @@ void drm_put_dev(struct drm_device *dev)
}
driver = dev->driver;

drm_vblank_cleanup(dev);

drm_lastclose(dev);

if (drm_core_has_MTRR(dev) && drm_core_has_AGP(dev) &&
Expand All @@ -536,6 +534,8 @@ void drm_put_dev(struct drm_device *dev)
dev->agp = NULL;
}

drm_vblank_cleanup(dev);

list_for_each_entry_safe(r_list, list_temp, &dev->maplist, head)
drm_rmmap(dev, r_list->map);
drm_ht_remove(&dev->map_hash);
Expand Down

0 comments on commit b78315f

Please sign in to comment.