summaryrefslogtreecommitdiff
path: root/tests/kms_frontbuffer_tracking.c
diff options
context:
space:
mode:
authorPaulo Zanoni <paulo.r.zanoni@intel.com>2015-07-13 14:04:25 -0300
committerPaulo Zanoni <paulo.r.zanoni@intel.com>2015-08-05 17:30:58 -0300
commit995f2738adece4f7423f9ce9ac34ab0477844840 (patch)
tree8b3bb6bee7d4c6229324d049e15911913413b6e2 /tests/kms_frontbuffer_tracking.c
parentffd7321c701411c6ffb4aa5b983aacb92289908c (diff)
lib: add igt_debugfs_read()
A helpful function for when you want to read a whole debugfs file to a string and don't want to worry about opening and closing file descriptors and asserting buffer sizes. We've been using this already for kms_frontbuffer_tracking and kms_fbcon_fbt, so the only test with new code here is kms_fbc_crc. Also notice that for kms_fbc_crc we had to increase the buffer size since the file can sometimes be bigger than 64 bytes - depending on the reason why FBC is disabled. Of course, there are probably many other programs we can patch, but I'm not doing this now. v2: Add the macro to wrap sizeof() (Daniel). v3: Add documentation for the macro too (Daniel). Signed-off-by: Paulo Zanoni <paulo.r.zanoni@intel.com>
Diffstat (limited to 'tests/kms_frontbuffer_tracking.c')
-rw-r--r--tests/kms_frontbuffer_tracking.c33
1 files changed, 8 insertions, 25 deletions
diff --git a/tests/kms_frontbuffer_tracking.c b/tests/kms_frontbuffer_tracking.c
index 99d28110..d1d50455 100644
--- a/tests/kms_frontbuffer_tracking.c
+++ b/tests/kms_frontbuffer_tracking.c
@@ -556,28 +556,11 @@ static bool set_mode_for_params(struct modeset_params *params)
return (rc == 0);
}
-static void debugfs_read(const char *filename, char *buf, int buf_size)
-{
- FILE *file;
- size_t n_read;
-
- file = igt_debugfs_fopen(filename, "r");
- igt_assert(file);
-
- n_read = fread(buf, 1, buf_size - 1, file);
- igt_assert(n_read > 0);
- igt_assert(feof(file));
-
- buf[n_read] = '\0';
-
- igt_assert(fclose(file) == 0);
-}
-
static bool fbc_is_enabled(void)
{
char buf[128];
- debugfs_read("i915_fbc_status", buf, ARRAY_SIZE(buf));
+ igt_debugfs_read("i915_fbc_status", buf);
return strstr(buf, "FBC enabled\n");
}
@@ -585,7 +568,7 @@ static bool psr_is_enabled(void)
{
char buf[256];
- debugfs_read("i915_edp_psr_status", buf, ARRAY_SIZE(buf));
+ igt_debugfs_read("i915_edp_psr_status", buf);
return (strstr(buf, "\nActive: yes\n"));
}
@@ -596,7 +579,7 @@ static struct timespec fbc_get_last_action(void)
char *action;
ssize_t n_read;
- debugfs_read("i915_fbc_status", buf, ARRAY_SIZE(buf));
+ igt_debugfs_read("i915_fbc_status", buf);
action = strstr(buf, "\nLast action:");
igt_assert(action);
@@ -645,7 +628,7 @@ static void fbc_setup_last_action(void)
char buf[128];
char *action;
- debugfs_read("i915_fbc_status", buf, ARRAY_SIZE(buf));
+ igt_debugfs_read("i915_fbc_status", buf);
action = strstr(buf, "\nLast action:");
if (!action) {
@@ -664,7 +647,7 @@ static bool fbc_is_compressing(void)
{
char buf[128];
- debugfs_read("i915_fbc_status", buf, ARRAY_SIZE(buf));
+ igt_debugfs_read("i915_fbc_status", buf);
return strstr(buf, "\nCompressing: yes\n") != NULL;
}
@@ -677,7 +660,7 @@ static void fbc_setup_compressing(void)
{
char buf[128];
- debugfs_read("i915_fbc_status", buf, ARRAY_SIZE(buf));
+ igt_debugfs_read("i915_fbc_status", buf);
if (strstr(buf, "\nCompressing:"))
fbc.supports_compressing = true;
@@ -1205,7 +1188,7 @@ static bool fbc_supported_on_chipset(void)
{
char buf[128];
- debugfs_read("i915_fbc_status", buf, ARRAY_SIZE(buf));
+ igt_debugfs_read("i915_fbc_status", buf);
return !strstr(buf, "FBC unsupported on this chipset\n");
}
@@ -1229,7 +1212,7 @@ static bool psr_sink_has_support(void)
{
char buf[256];
- debugfs_read("i915_edp_psr_status", buf, ARRAY_SIZE(buf));
+ igt_debugfs_read("i915_edp_psr_status", buf);
return strstr(buf, "Sink_Support: yes\n");
}