summaryrefslogtreecommitdiff
path: root/lib/igt_debugfs.h
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2016-04-06 21:50:12 +0100
committerChris Wilson <chris@chris-wilson.co.uk>2016-09-19 12:02:53 +0100
commit9690d0aeedff96ebf761252966aa19471ac93bc1 (patch)
treed8892d33548a129e1580b8b7240a71f21b244213 /lib/igt_debugfs.h
parent200237acac00f24730b0c5b4362936b6c510b0ed (diff)
lib: Add support for DROP_FREED in igt_drop_caches_set()
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'lib/igt_debugfs.h')
-rw-r--r--lib/igt_debugfs.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/igt_debugfs.h b/lib/igt_debugfs.h
index 988025f9..8289e9d0 100644
--- a/lib/igt_debugfs.h
+++ b/lib/igt_debugfs.h
@@ -157,6 +157,12 @@ void igt_pipe_crc_collect_crc(igt_pipe_crc_t *pipe_crc, igt_crc_t *out_crc);
*/
#define DROP_ACTIVE 0x8
/**
+ * DROP_FREED:
+ *
+ * Also drop freed objects.
+ */
+#define DROP_FREED 0x10
+/**
* DROP_ALL:
*
* All of the above DROP_ flags combined.
@@ -164,7 +170,8 @@ void igt_pipe_crc_collect_crc(igt_pipe_crc_t *pipe_crc, igt_crc_t *out_crc);
#define DROP_ALL (DROP_UNBOUND | \
DROP_BOUND | \
DROP_RETIRE | \
- DROP_ACTIVE)
+ DROP_ACTIVE | \
+ DROP_FREED)
void igt_drop_caches_set(uint64_t val);