panfrost: Remove PAN_BO_DONT_REUSE
[mesa.git] / src / panfrost / encoder / pan_bo.h
index 9ce29e1f7d587f3040d6efcdb95bb6c64601a517..0138beffd28fe3259eaba2f6db624caddc0a0239 100644 (file)
  * (semantically distinct from INVISIBLE, which cannot never be mmaped) */
 #define PAN_BO_DELAY_MMAP         (1 << 4)
 
-/* Some BOs shouldn't be returned back to the reuse BO cache, use this flag to
- * let the BO logic know about this contraint. */
-#define PAN_BO_DONT_REUSE         (1 << 5)
+/* bit 5 unused */
 
-/* BO is shared across processes (imported or exported) */
+/* BO is shared across processes (imported or exported) and therefore cannot be
+ * cached locally */
 #define PAN_BO_SHARED             (1 << 6)
 
 /* GPU access flags */