Mesa (master): panfrost: Move panfrost_bo_{reference,unreference}() to pan_bo.c

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Wed Sep 18 09:05:31 UTC 2019


Module: Mesa
Branch: master
Commit: 29d0e5c1776cf430f0fd7d262df55670a5ff8d05
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=29d0e5c1776cf430f0fd7d262df55670a5ff8d05

Author: Boris Brezillon <boris.brezillon at collabora.com>
Date:   Sat Sep 14 09:45:37 2019 +0200

panfrost: Move panfrost_bo_{reference,unreference}() to pan_bo.c

This way we have all BO related functions placed in the same source
file.

Signed-off-by: Boris Brezillon <boris.brezillon at collabora.com>
Reviewed-by: Alyssa Rosenzweig <alyssa.rosenzweig at collabora.com>

---

 src/gallium/drivers/panfrost/pan_bo.c       | 20 ++++++++++++++++++++
 src/gallium/drivers/panfrost/pan_resource.c | 19 -------------------
 2 files changed, 20 insertions(+), 19 deletions(-)

diff --git a/src/gallium/drivers/panfrost/pan_bo.c b/src/gallium/drivers/panfrost/pan_bo.c
index 22476f09566..9b0e8d943b4 100644
--- a/src/gallium/drivers/panfrost/pan_bo.c
+++ b/src/gallium/drivers/panfrost/pan_bo.c
@@ -29,6 +29,7 @@
 #include <pthread.h>
 #include "drm-uapi/panfrost_drm.h"
 
+#include "pan_resource.h"
 #include "pan_screen.h"
 #include "pan_util.h"
 #include "pandecode/decode.h"
@@ -319,6 +320,25 @@ panfrost_bo_release(struct panfrost_screen *screen, struct panfrost_bo *bo,
         ralloc_free(bo);
 }
 
+void
+panfrost_bo_reference(struct panfrost_bo *bo)
+{
+        if (bo)
+                pipe_reference(NULL, &bo->reference);
+}
+
+void
+panfrost_bo_unreference(struct pipe_screen *screen, struct panfrost_bo *bo)
+{
+        if (!bo)
+                return;
+
+        /* When the reference count goes to zero, we need to cleanup */
+
+        if (pipe_reference(&bo->reference, NULL))
+                panfrost_bo_release(pan_screen(screen), bo, true);
+}
+
 struct panfrost_bo *
 panfrost_bo_import(struct panfrost_screen *screen, int fd)
 {
diff --git a/src/gallium/drivers/panfrost/pan_resource.c b/src/gallium/drivers/panfrost/pan_resource.c
index 47a44bfd81a..766edee3ca6 100644
--- a/src/gallium/drivers/panfrost/pan_resource.c
+++ b/src/gallium/drivers/panfrost/pan_resource.c
@@ -521,25 +521,6 @@ panfrost_resource_create(struct pipe_screen *screen,
         return (struct pipe_resource *)so;
 }
 
-void
-panfrost_bo_reference(struct panfrost_bo *bo)
-{
-        if (bo)
-                pipe_reference(NULL, &bo->reference);
-}
-
-void
-panfrost_bo_unreference(struct pipe_screen *screen, struct panfrost_bo *bo)
-{
-        if (!bo)
-                return;
-
-        /* When the reference count goes to zero, we need to cleanup */
-
-        if (pipe_reference(&bo->reference, NULL))
-                panfrost_bo_release(pan_screen(screen), bo, true);
-}
-
 static void
 panfrost_resource_destroy(struct pipe_screen *screen,
                           struct pipe_resource *pt)




More information about the mesa-commit mailing list