From: Daniel Stone <daniels@collabora.com>
To: igt-dev@lists.freedesktop.org, dri-devel@lists.freedesktop.org
Subject: [PATCH i-g-t 1/3] tests/kms_getfb: Split property-ID get into helper
Date: Fri, 23 Mar 2018 13:46:14 +0000 [thread overview]
Message-ID: <20180323134616.16058-1-daniels@collabora.com> (raw)
In-Reply-To: <CAPj87rNifw841eX2tyNr3uWYRPd3=91gqcBSqNbPADycryFh2Q@mail.gmail.com>
We'll want to reuse this, so split it out into a (smaller!) helper.
Signed-off-by: Daniel Stone <daniels@collabora.com>
---
tests/kms_getfb.c | 36 +++++++++++++++++++-----------------
1 file changed, 19 insertions(+), 17 deletions(-)
diff --git a/tests/kms_getfb.c b/tests/kms_getfb.c
index c5968e75..a9852626 100644
--- a/tests/kms_getfb.c
+++ b/tests/kms_getfb.c
@@ -72,6 +72,23 @@ static void get_ccs_fb(int fd, struct drm_mode_fb_cmd2 *ret)
gem_close(fd, add.handles[0]);
}
+/**
+ * Find and return an arbitrary valid property ID.
+ */
+static uint32_t get_prop_id(int fd)
+{
+ igt_display_t display;
+
+ igt_display_init(&display, fd);
+ for (int i = 0; i < display.n_outputs; i++) {
+ igt_output_t *output = &display.outputs[i];
+ if (output->props[IGT_CONNECTOR_DPMS] != 0)
+ return output->props[IGT_CONNECTOR_DPMS];
+ }
+
+ return 0;
+}
+
static void test_handle_input(int fd)
{
struct drm_mode_fb_cmd2 add = {};
@@ -111,23 +128,8 @@ static void test_handle_input(int fd)
}
igt_subtest("getfb-handle-not-fb") {
- struct drm_mode_fb_cmd get = { };
- uint32_t prop_id = 0;
- igt_display_t display;
-
- /* Find a valid property ID to use. */
- igt_display_init(&display, fd);
- for (int i = 0; i < display.n_outputs; i++) {
- igt_output_t *output = &display.outputs[i];
-
- if (output->props[IGT_CONNECTOR_DPMS] != 0) {
- prop_id = output->props[IGT_CONNECTOR_DPMS];
- break;
- }
- }
- igt_require(prop_id > 0);
-
- get.fb_id = prop_id;
+ struct drm_mode_fb_cmd get = { .fb_id = get_prop_id(fd) };
+ igt_require(get.fb_id > 0);
do_ioctl_err(fd, DRM_IOCTL_MODE_GETFB, &get, ENOENT);
}
}
--
2.16.2
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
next prev parent reply other threads:[~2018-03-23 13:46 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-03-23 13:42 [PATCH 0/8] Add GetFB2 ioctl Daniel Stone
2018-03-23 13:45 ` [PATCH 1/4] drm/i915: Use intel_fb_obj() everywhere Daniel Stone
2018-03-23 13:45 ` [PATCH 2/4] drm/i915: Move GEM BO inside drm_framebuffer Daniel Stone
2018-03-23 14:42 ` [Intel-gfx] " Ville Syrjälä
2018-03-23 14:49 ` Daniel Stone
2018-05-17 13:18 ` [Intel-gfx] " Daniel Stone
2018-03-23 13:45 ` [PATCH 3/4] drm: Reshuffle getfb error returns Daniel Stone
2018-03-23 14:43 ` Ville Syrjälä
2018-03-23 13:45 ` [PATCH 4/4] drm: Add getfb2 ioctl Daniel Stone
2018-03-23 14:49 ` Ville Syrjälä
2018-03-23 17:00 ` Daniel Stone
2018-03-23 17:31 ` Ville Syrjälä
2018-03-24 10:12 ` Daniel Stone
2018-03-23 13:45 ` [PATCH libdrm] NOMERGE: Add drmModeGetFB2 Daniel Stone
2018-03-23 13:46 ` Daniel Stone [this message]
2018-03-23 13:46 ` [PATCH i-g-t 2/3] NOMERGE: Update DRM UAPI to latest kernel version Daniel Stone
2018-03-23 13:46 ` [PATCH i-g-t 3/3] tests/kms_getfb: Add getfb2 tests Daniel Stone
2018-03-23 15:01 ` [igt-dev] " Ville Syrjälä
2018-03-23 14:53 ` [PATCH i-g-t 1/3] tests/kms_getfb: Split property-ID get into helper Ville Syrjälä
2018-03-23 14:55 ` [igt-dev] " Daniel Stone
2018-03-23 13:51 ` [PATCH 0/8] Add GetFB2 ioctl Daniel Stone
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20180323134616.16058-1-daniels@collabora.com \
--to=daniels@collabora.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=igt-dev@lists.freedesktop.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox