[PATCH 3/3] drm: simplify master cleanup

2015-05-05 Thread Daniel Vetter
On Mon, May 04, 2015 at 03:47:13PM +0100, Chris Wilson wrote: > On Mon, May 04, 2015 at 04:05:14PM +0200, David Herrmann wrote: > > In drm_master_destroy() we _free_ the master object. There is no reason to > > hold any locks while dropping its static members, nor do we have to reset > > it to 0. >

[PATCH 3/3] drm: simplify master cleanup

2015-05-04 Thread David Herrmann
In drm_master_destroy() we _free_ the master object. There is no reason to hold any locks while dropping its static members, nor do we have to reset it to 0. Furthermore, kfree() already does NULL checks, so call it directly on master->unique and drop the redundant reset-code. Signed-off-by: Davi

[PATCH 3/3] drm: simplify master cleanup

2015-05-04 Thread Chris Wilson
On Mon, May 04, 2015 at 04:05:14PM +0200, David Herrmann wrote: > In drm_master_destroy() we _free_ the master object. There is no reason to > hold any locks while dropping its static members, nor do we have to reset > it to 0. > > Furthermore, kfree() already does NULL checks, so call it directly