lib/igt_debugfs: Remove debugfs from igt_debugfs_open
authorDaniel Vetter <daniel.vetter@ffwll.ch>
Sun, 16 Mar 2014 13:41:25 +0000 (14:41 +0100)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Mon, 17 Mar 2014 08:47:32 +0000 (09:47 +0100)
Also update the api docs a bit since the Returns: section was missing.

v2: Readd the accidentally lost line for @filename.

Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
lib/igt_debugfs.c
lib/igt_debugfs.h
tests/gem_reset_stats.c
tests/pm_rps.c

index 4a33848..b92bd09 100644 (file)
@@ -139,16 +139,22 @@ static igt_debugfs_t *__igt_debugfs_singleton(void)
 
 /**
  * igt_debugfs_open:
- * @debugfs: debugfs access structure
  * @filename: name of the debugfs node to open
  * @mode: mode bits as used by open()
  *
  * This opens a debugfs file as a Unix file descriptor. The filename should be
  * relative to the drm device's root, i.e without "drm/&lt;minor&gt;".
+ *
+ * Returns:
+ * The Unix file descriptor for the debugfs file or -1 if that didn't work out.
  */
-int igt_debugfs_open(igt_debugfs_t *debugfs, const char *filename, int mode)
+int igt_debugfs_open(const char *filename, int mode)
 {
        char buf[1024];
+       igt_debugfs_t *debugfs = __igt_debugfs_singleton();
+
+       if (!debugfs)
+               return -1;
 
        sprintf(buf, "%s/%s", debugfs->dri_path, filename);
        return open(buf, mode);
@@ -297,11 +303,9 @@ static void igt_pipe_crc_pipe_off(int fd, enum pipe pipe)
 
 static void igt_pipe_crc_reset(void)
 {
-       igt_debugfs_t debugfs;
        int fd;
 
-       igt_debugfs_init(&debugfs);
-       fd = igt_debugfs_open(&debugfs, "i915_display_crc_ctl", O_WRONLY);
+       fd = igt_debugfs_open("i915_display_crc_ctl", O_WRONLY);
 
        igt_pipe_crc_pipe_off(fd, PIPE_A);
        igt_pipe_crc_pipe_off(fd, PIPE_B);
@@ -364,12 +368,11 @@ igt_pipe_crc_new(igt_debugfs_t *debugfs, enum pipe pipe,
 
        pipe_crc = calloc(1, sizeof(struct _igt_pipe_crc));
 
-       pipe_crc->ctl_fd = igt_debugfs_open(debugfs,
-                                           "i915_display_crc_ctl", O_WRONLY);
+       pipe_crc->ctl_fd = igt_debugfs_open("i915_display_crc_ctl", O_WRONLY);
        igt_assert(pipe_crc->ctl_fd != -1);
 
        sprintf(buf, "i915_pipe_%c_crc", pipe_name(pipe));
-       pipe_crc->crc_fd = igt_debugfs_open(debugfs, buf, O_RDONLY);
+       pipe_crc->crc_fd = igt_debugfs_open(buf, O_RDONLY);
        igt_assert(pipe_crc->crc_fd != -1);
 
        pipe_crc->line_len = PIPE_CRC_LINE_LEN;
@@ -528,15 +531,13 @@ void igt_pipe_crc_collect_crc(igt_pipe_crc_t *pipe_crc, igt_crc_t *out_crc)
  */
 void igt_drop_caches_set(uint64_t val)
 {
-       igt_debugfs_t debugfs;
        int fd;
        char data[19];
        size_t nbytes;
 
        sprintf(data, "0x%" PRIx64, val);
 
-       igt_debugfs_init(&debugfs);
-       fd = igt_debugfs_open(&debugfs, "i915_gem_drop_caches", O_WRONLY);
+       fd = igt_debugfs_open("i915_gem_drop_caches", O_WRONLY);
 
        igt_assert(fd >= 0);
        nbytes = write(fd, data, strlen(data) + 1);
@@ -606,18 +607,10 @@ void igt_enable_prefault(void)
  * This functions opens the debugfs forcewake file and so prevents the GT from
  * suspending. The reference is automatically dropped when the is closed.
  *
- * Returns: The file descriptor of the forcewake handle or -1 if that didn't
- * work out.
+ * Returns:
+ * The file descriptor of the forcewake handle or -1 if that didn't work out.
  */
 int igt_open_forcewake_handle(void)
 {
-       igt_debugfs_t debugfs;
-       int fd;
-
-       if (!__igt_debugfs_init(&debugfs))
-               return -1;
-
-       fd = igt_debugfs_open(&debugfs, "i915_forcewake_user", O_WRONLY);
-
-       return fd;
+       return igt_debugfs_open("i915_forcewake_user", O_WRONLY);
 }
index 5e153b1..690f3dc 100644 (file)
@@ -42,7 +42,7 @@ typedef struct {
 } igt_debugfs_t;
 
 void igt_debugfs_init(igt_debugfs_t *debugfs);
-int igt_debugfs_open(igt_debugfs_t *debugfs, const char *filename, int mode);
+int igt_debugfs_open(const char *filename, int mode);
 FILE *igt_debugfs_fopen(igt_debugfs_t *debugfs, const char *filename,
                        const char *mode);
 
index 71ba6df..3719f40 100644 (file)
@@ -76,8 +76,6 @@ struct local_drm_i915_gem_context_destroy {
 #define CONTEXT_DESTROY_IOCTL DRM_IOWR(DRM_COMMAND_BASE + 0x2e, struct local_drm_i915_gem_context_destroy)
 #define GET_RESET_STATS_IOCTL DRM_IOWR(DRM_COMMAND_BASE + 0x32, struct local_drm_i915_reset_stats)
 
-static igt_debugfs_t dfs;
-
 #define LOCAL_I915_EXEC_VEBOX  (4 << 0)
 
 struct target_ring;
@@ -244,7 +242,7 @@ static void stop_rings(const int mask)
 
        igt_assert((mask & ~((1 << NUM_RINGS) - 1)) == 0);
        igt_assert(snprintf(buf, sizeof(buf), "0x%02x", mask) == 4);
-       fd = igt_debugfs_open(&dfs, "i915_ring_stop", O_WRONLY);
+       fd = igt_debugfs_open("i915_ring_stop", O_WRONLY);
        igt_assert(fd >= 0);
 
        igt_assert(write(fd, buf, 4) == 4);
@@ -1040,8 +1038,6 @@ igt_main
                igt_skip_on_f(ret != 0 && (errno == ENODEV || errno == EINVAL),
                              "Kernel is too old, or contexts not supported: %s\n",
                              strerror(errno));
-
-               igt_debugfs_init(&dfs);
        }
 
        igt_subtest("params")
index d964f2a..2f32184 100644 (file)
@@ -63,8 +63,6 @@ struct junk {
        { "cur", "r", NULL }, { "min", "rb+", NULL }, { "max", "rb+", NULL }, { "RP0", "r", NULL }, { "RP1", "r", NULL }, { "RPn", "r", NULL }, { NULL, NULL, NULL }
 };
 
-static igt_debugfs_t dfs;
-
 static int readval(FILE *filp)
 {
        int val;
@@ -305,7 +303,7 @@ static void stop_rings(void)
        int fd;
        static const char data[] = "0xf";
 
-       fd = igt_debugfs_open(&dfs, "i915_ring_stop", O_WRONLY);
+       fd = igt_debugfs_open("i915_ring_stop", O_WRONLY);
        igt_assert(fd >= 0);
 
        igt_debug("injecting ring stop\n");
@@ -320,7 +318,7 @@ static bool rings_stopped(void)
        static char buf[128];
        unsigned long long val;
 
-       fd = igt_debugfs_open(&dfs, "i915_ring_stop", O_RDONLY);
+       fd = igt_debugfs_open("i915_ring_stop", O_RDONLY);
        igt_assert(fd >= 0);
 
        igt_assert(read(fd, buf, sizeof(buf)) > 0);
@@ -555,8 +553,6 @@ igt_main
                igt_install_exit_handler(pm_rps_exit_handler);
 
                load_helper_init();
-
-               igt_debugfs_init(&dfs);
        }
 
        igt_subtest("basic-api")