diff options
author | Marek Olšák <[email protected]> | 2014-04-09 01:07:52 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2014-04-10 20:50:17 +0200 |
commit | 3b0b44f7def0acb4f7a7aef086c0bece321418a6 (patch) | |
tree | b156e7e948909c0a31d127d30099da60cb178b5d /src/gallium/targets/r300 | |
parent | ac330d4130cb005c75972da2a701b674413456ba (diff) |
winsys/radeon: fix a race condition in initialization of radeon_winsys::screen
Create the screen in the winsys while the mutex is locked.
This also results in a nice code cleanup!
Reviewed-by: Michel Dänzer <[email protected]>
Reviewed-by: Christian König <[email protected]>
Diffstat (limited to 'src/gallium/targets/r300')
-rw-r--r-- | src/gallium/targets/r300/common/drm_target.c | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/src/gallium/targets/r300/common/drm_target.c b/src/gallium/targets/r300/common/drm_target.c index 9b484469d47..dff83dacba2 100644 --- a/src/gallium/targets/r300/common/drm_target.c +++ b/src/gallium/targets/r300/common/drm_target.c @@ -36,19 +36,8 @@ create_screen(int fd) { struct radeon_winsys *sws; - sws = radeon_drm_winsys_create(fd); - if (!sws) - return NULL; - - if (!sws->screen) { - sws->screen = r300_screen_create(sws); - if (!sws->screen) - return NULL; - - sws->screen = debug_screen_wrap(sws->screen); - } - - return sws->screen; + sws = radeon_drm_winsys_create(fd, r300_screen_create); + return sws ? debug_screen_wrap(sws->screen) : NULL; } /* Technically this is only true for kernels >= 3.12, which |