Destroy spin locks appropriately.

This commit is contained in:
riastradh 2016-04-13 07:57:15 +00:00
parent 25176fc424
commit cac611edec
2 changed files with 6 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: nouveau_fence.c,v 1.3 2014/08/23 08:03:33 riastradh Exp $ */
/* $NetBSD: nouveau_fence.c,v 1.4 2016/04/13 07:57:15 riastradh Exp $ */
/*
* Copyright (C) 2007 Ben Skeggs.
@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: nouveau_fence.c,v 1.3 2014/08/23 08:03:33 riastradh Exp $");
__KERNEL_RCSID(0, "$NetBSD: nouveau_fence.c,v 1.4 2016/04/13 07:57:15 riastradh Exp $");
#include <drm/drmP.h>
@ -71,6 +71,7 @@ nouveau_fence_context_del(struct nouveau_fence_chan *fctx)
nouveau_fence_signal(fence);
}
spin_unlock(&fctx->lock);
spin_lock_destroy(&fctx->lock);
}
void

View File

@ -1,4 +1,4 @@
/* $NetBSD: nouveau_nv10_fence.c,v 1.2 2014/08/23 08:03:33 riastradh Exp $ */
/* $NetBSD: nouveau_nv10_fence.c,v 1.3 2016/04/13 07:57:15 riastradh Exp $ */
/*
* Copyright 2012 Red Hat Inc.
@ -25,7 +25,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: nouveau_nv10_fence.c,v 1.2 2014/08/23 08:03:33 riastradh Exp $");
__KERNEL_RCSID(0, "$NetBSD: nouveau_nv10_fence.c,v 1.3 2016/04/13 07:57:15 riastradh Exp $");
#include <core/object.h>
#include <core/class.h>
@ -95,6 +95,7 @@ nv10_fence_destroy(struct nouveau_drm *drm)
nouveau_bo_unpin(priv->bo);
nouveau_bo_ref(NULL, &priv->bo);
drm->fence = NULL;
spin_lock_destroy(&priv->lock);
kfree(priv);
}