i915_gem_debug.c 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /*
  2. * Copyright © 2008 Intel Corporation
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a
  5. * copy of this software and associated documentation files (the "Software"),
  6. * to deal in the Software without restriction, including without limitation
  7. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  8. * and/or sell copies of the Software, and to permit persons to whom the
  9. * Software is furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice (including the next
  12. * paragraph) shall be included in all copies or substantial portions of the
  13. * Software.
  14. *
  15. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  18. * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  20. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  21. * IN THE SOFTWARE.
  22. *
  23. * Authors:
  24. * Keith Packard <keithp@keithp.com>
  25. *
  26. */
  27. #include <drm/drmP.h>
  28. #include <drm/i915_drm.h>
  29. #include "i915_drv.h"
  30. #if WATCH_LISTS
  31. int
  32. i915_verify_lists(struct drm_device *dev)
  33. {
  34. static int warned;
  35. struct drm_i915_private *dev_priv = to_i915(dev);
  36. struct drm_i915_gem_object *obj;
  37. struct intel_engine_cs *ring;
  38. int err = 0;
  39. int i;
  40. if (warned)
  41. return 0;
  42. for_each_ring(ring, dev_priv, i) {
  43. list_for_each_entry(obj, &ring->active_list, ring_list[ring->id]) {
  44. if (obj->base.dev != dev ||
  45. !atomic_read(&obj->base.refcount.refcount)) {
  46. DRM_ERROR("%s: freed active obj %p\n",
  47. ring->name, obj);
  48. err++;
  49. break;
  50. } else if (!obj->active ||
  51. obj->last_read_req[ring->id] == NULL) {
  52. DRM_ERROR("%s: invalid active obj %p\n",
  53. ring->name, obj);
  54. err++;
  55. } else if (obj->base.write_domain) {
  56. DRM_ERROR("%s: invalid write obj %p (w %x)\n",
  57. ring->name,
  58. obj, obj->base.write_domain);
  59. err++;
  60. }
  61. }
  62. }
  63. return warned = err;
  64. }
  65. #endif /* WATCH_LIST */