From: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
To: igt-dev@lists.freedesktop.org
Cc: Upadhyay <tejas.upadhyay@intel.com>,
Badal Nilawar <badal.nilawar@intel.com>
Subject: [igt-dev] [PATCH v2 3/4] tests/xe/xe_guc_pc: Change the sysfs paths
Date: Fri, 23 Jun 2023 17:19:45 +0530 [thread overview]
Message-ID: <20230623114946.3803540-4-himal.prasad.ghimiray@intel.com> (raw)
In-Reply-To: <20230623114946.3803540-1-himal.prasad.ghimiray@intel.com>
Changes to access sysfs entries under tile directory.
Access freq sysfs from /sys/class/drm/cardX/device/tileN/gtN
path.
v2:
- Use snprintf instead of sprintf and check error.
- Describe what changes are done. (Kamil)
Cc: Aravind Iddamsetty <aravind.iddamsetty@intel.com>
Cc: Upadhyay <tejas.upadhyay@intel.com>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Cc: Badal Nilawar <badal.nilawar@intel.com>
Cc: Riana Tauro <riana.tauro@intel.com>
Cc: Anshuman Gupta <anshuman.gupta@intel.com>
Signed-off-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
---
tests/xe/xe_guc_pc.c | 202 ++++++++++++++++++++++---------------------
1 file changed, 102 insertions(+), 100 deletions(-)
diff --git a/tests/xe/xe_guc_pc.c b/tests/xe/xe_guc_pc.c
index 5c71ae14..825b2c5b 100644
--- a/tests/xe/xe_guc_pc.c
+++ b/tests/xe/xe_guc_pc.c
@@ -133,23 +133,25 @@ static void exec_basic(int fd, struct drm_xe_engine_class_instance *eci,
xe_vm_destroy(fd, vm);
}
-static int set_freq(int sysfs, int gt_id, const char *freq_name, uint32_t freq)
+static int set_freq(int sysfs, int tile_id, int gt_id, const char *freq_name, uint32_t freq)
{
int ret = -EAGAIN;
char path[32];
- sprintf(path, "device/gt%d/freq_%s", gt_id, freq_name);
+ igt_assert(snprintf(path, sizeof(path), "device/tile%d/gt%d/freq_%s",
+ tile_id, gt_id, freq_name) < sizeof(path));
while (ret == -EAGAIN)
ret = igt_sysfs_printf(sysfs, path, "%u", freq);
return ret;
}
-static uint32_t get_freq(int sysfs, int gt_id, const char *freq_name)
+static uint32_t get_freq(int sysfs, int tile_id, int gt_id, const char *freq_name)
{
uint32_t freq;
int err = -EAGAIN;
char path[32];
- sprintf(path, "device/gt%d/freq_%s", gt_id, freq_name);
+ igt_assert(snprintf(path, sizeof(path), "device/tile%d/gt%d/freq_%s",
+ tile_id, gt_id, freq_name) < sizeof(path));
while (err == -EAGAIN)
err = igt_sysfs_scanf(sysfs, path, "%u", &freq);
return freq;
@@ -162,37 +164,37 @@ static uint32_t get_freq(int sysfs, int gt_id, const char *freq_name)
* Run type: BAT
*/
-static void test_freq_basic_api(int sysfs, int gt_id)
+static void test_freq_basic_api(int sysfs, int tile_id, int gt_id)
{
- uint32_t rpn = get_freq(sysfs, gt_id, "rpn");
- uint32_t rpe = get_freq(sysfs, gt_id, "rpe");
- uint32_t rp0 = get_freq(sysfs, gt_id, "rp0");
+ uint32_t rpn = get_freq(sysfs, tile_id, gt_id, "rpn");
+ uint32_t rpe = get_freq(sysfs, tile_id, gt_id, "rpe");
+ uint32_t rp0 = get_freq(sysfs, tile_id, gt_id, "rp0");
/*
* Negative bound tests
* RPn is the floor
* RP0 is the ceiling
*/
- igt_assert(set_freq(sysfs, gt_id, "min", rpn - 1) < 0);
- igt_assert(set_freq(sysfs, gt_id, "min", rp0 + 1) < 0);
- igt_assert(set_freq(sysfs, gt_id, "max", rpn - 1) < 0);
- igt_assert(set_freq(sysfs, gt_id, "max", rp0 + 1) < 0);
+ igt_assert(set_freq(sysfs, tile_id, gt_id, "min", rpn - 1) < 0);
+ igt_assert(set_freq(sysfs, tile_id, gt_id, "min", rp0 + 1) < 0);
+ igt_assert(set_freq(sysfs, tile_id, gt_id, "max", rpn - 1) < 0);
+ igt_assert(set_freq(sysfs, tile_id, gt_id, "max", rp0 + 1) < 0);
/* Assert min requests are respected from rp0 to rpn */
- igt_assert(set_freq(sysfs, gt_id, "min", rp0) > 0);
- igt_assert(get_freq(sysfs, gt_id, "min") == rp0);
- igt_assert(set_freq(sysfs, gt_id, "min", rpe) > 0);
- igt_assert(get_freq(sysfs, gt_id, "min") == rpe);
- igt_assert(set_freq(sysfs, gt_id, "min", rpn) > 0);
- igt_assert(get_freq(sysfs, gt_id, "min") == rpn);
+ igt_assert(set_freq(sysfs, tile_id, gt_id, "min", rp0) > 0);
+ igt_assert(get_freq(sysfs, tile_id, gt_id, "min") == rp0);
+ igt_assert(set_freq(sysfs, tile_id, gt_id, "min", rpe) > 0);
+ igt_assert(get_freq(sysfs, tile_id, gt_id, "min") == rpe);
+ igt_assert(set_freq(sysfs, tile_id, gt_id, "min", rpn) > 0);
+ igt_assert(get_freq(sysfs, tile_id, gt_id, "min") == rpn);
/* Assert max requests are respected from rpn to rp0 */
- igt_assert(set_freq(sysfs, gt_id, "max", rpn) > 0);
- igt_assert(get_freq(sysfs, gt_id, "max") == rpn);
- igt_assert(set_freq(sysfs, gt_id, "max", rpe) > 0);
- igt_assert(get_freq(sysfs, gt_id, "max") == rpe);
- igt_assert(set_freq(sysfs, gt_id, "max", rp0) > 0);
- igt_assert(get_freq(sysfs, gt_id, "max") == rp0);
+ igt_assert(set_freq(sysfs, tile_id, gt_id, "max", rpn) > 0);
+ igt_assert(get_freq(sysfs, tile_id, gt_id, "max") == rpn);
+ igt_assert(set_freq(sysfs, tile_id, gt_id, "max", rpe) > 0);
+ igt_assert(get_freq(sysfs, tile_id, gt_id, "max") == rpe);
+ igt_assert(set_freq(sysfs, tile_id, gt_id, "max", rp0) > 0);
+ igt_assert(get_freq(sysfs, tile_id, gt_id, "max") == rp0);
}
/**
@@ -206,11 +208,11 @@ static void test_freq_basic_api(int sysfs, int gt_id)
* TODO: change ``'Run type' == FULL`` to a better category
*/
-static void test_freq_fixed(int sysfs, int gt_id)
+static void test_freq_fixed(int sysfs, int tile_id, int gt_id)
{
- uint32_t rpn = get_freq(sysfs, gt_id, "rpn");
- uint32_t rpe = get_freq(sysfs, gt_id, "rpe");
- uint32_t rp0 = get_freq(sysfs, gt_id, "rp0");
+ uint32_t rpn = get_freq(sysfs, tile_id, gt_id, "rpn");
+ uint32_t rpe = get_freq(sysfs, tile_id, gt_id, "rpe");
+ uint32_t rp0 = get_freq(sysfs, tile_id, gt_id, "rp0");
igt_debug("Starting testing fixed request\n");
@@ -219,27 +221,27 @@ static void test_freq_fixed(int sysfs, int gt_id)
* Then we check if hardware is actually operating at the desired freq
* And let's do this for all the 3 known Render Performance (RP) values.
*/
- igt_assert(set_freq(sysfs, gt_id, "min", rpn) > 0);
- igt_assert(set_freq(sysfs, gt_id, "max", rpn) > 0);
+ igt_assert(set_freq(sysfs, tile_id, gt_id, "min", rpn) > 0);
+ igt_assert(set_freq(sysfs, tile_id, gt_id, "max", rpn) > 0);
usleep(ACT_FREQ_LATENCY_US);
- igt_assert(get_freq(sysfs, gt_id, "cur") == rpn);
- igt_assert(get_freq(sysfs, gt_id, "act") == rpn);
+ igt_assert(get_freq(sysfs, tile_id, gt_id, "cur") == rpn);
+ igt_assert(get_freq(sysfs, tile_id, gt_id, "act") == rpn);
- igt_assert(set_freq(sysfs, gt_id, "min", rpe) > 0);
- igt_assert(set_freq(sysfs, gt_id, "max", rpe) > 0);
+ igt_assert(set_freq(sysfs, tile_id, gt_id, "min", rpe) > 0);
+ igt_assert(set_freq(sysfs, tile_id, gt_id, "max", rpe) > 0);
usleep(ACT_FREQ_LATENCY_US);
- igt_assert(get_freq(sysfs, gt_id, "cur") == rpe);
- igt_assert(get_freq(sysfs, gt_id, "act") == rpe);
+ igt_assert(get_freq(sysfs, tile_id, gt_id, "cur") == rpe);
+ igt_assert(get_freq(sysfs, tile_id, gt_id, "act") == rpe);
- igt_assert(set_freq(sysfs, gt_id, "min", rp0) > 0);
- igt_assert(set_freq(sysfs, gt_id, "max", rp0) > 0);
+ igt_assert(set_freq(sysfs, tile_id, gt_id, "min", rp0) > 0);
+ igt_assert(set_freq(sysfs, tile_id, gt_id, "max", rp0) > 0);
usleep(ACT_FREQ_LATENCY_US);
/*
* It is unlikely that PCODE will *always* respect any request above RPe
* So for this level let's only check if GuC PC is doing its job
* and respecting our request, by propagating it to the hardware.
*/
- igt_assert(get_freq(sysfs, gt_id, "cur") == rp0);
+ igt_assert(get_freq(sysfs, tile_id, gt_id, "cur") == rp0);
igt_debug("Finished testing fixed request\n");
}
@@ -255,20 +257,20 @@ static void test_freq_fixed(int sysfs, int gt_id)
* TODO: change ``'Run type' == FULL`` to a better category
*/
-static void test_freq_range(int sysfs, int gt_id)
+static void test_freq_range(int sysfs, int tile_id, int gt_id)
{
- uint32_t rpn = get_freq(sysfs, gt_id, "rpn");
- uint32_t rpe = get_freq(sysfs, gt_id, "rpe");
+ uint32_t rpn = get_freq(sysfs, tile_id, gt_id, "rpn");
+ uint32_t rpe = get_freq(sysfs, tile_id, gt_id, "rpe");
uint32_t cur, act;
igt_debug("Starting testing range request\n");
- igt_assert(set_freq(sysfs, gt_id, "min", rpn) > 0);
- igt_assert(set_freq(sysfs, gt_id, "max", rpe) > 0);
+ igt_assert(set_freq(sysfs, tile_id, gt_id, "min", rpn) > 0);
+ igt_assert(set_freq(sysfs, tile_id, gt_id, "max", rpe) > 0);
usleep(ACT_FREQ_LATENCY_US);
- cur = get_freq(sysfs, gt_id, "cur");
+ cur = get_freq(sysfs, tile_id, gt_id, "cur");
igt_assert(rpn <= cur && cur <= rpe);
- act = get_freq(sysfs, gt_id, "act");
+ act = get_freq(sysfs, tile_id, gt_id, "act");
igt_assert(rpn <= act && act <= rpe);
igt_debug("Finished testing range request\n");
@@ -281,20 +283,20 @@ static void test_freq_range(int sysfs, int gt_id)
* TODO: change ``'Run type' == FULL`` to a better category
*/
-static void test_freq_low_max(int sysfs, int gt_id)
+static void test_freq_low_max(int sysfs, int tile_id, int gt_id)
{
- uint32_t rpn = get_freq(sysfs, gt_id, "rpn");
- uint32_t rpe = get_freq(sysfs, gt_id, "rpe");
+ uint32_t rpn = get_freq(sysfs, tile_id, gt_id, "rpn");
+ uint32_t rpe = get_freq(sysfs, tile_id, gt_id, "rpe");
/*
* When max request < min request, max is ignored and min works like
* a fixed one. Let's assert this assumption
*/
- igt_assert(set_freq(sysfs, gt_id, "min", rpe) > 0);
- igt_assert(set_freq(sysfs, gt_id, "max", rpn) > 0);
+ igt_assert(set_freq(sysfs, tile_id, gt_id, "min", rpe) > 0);
+ igt_assert(set_freq(sysfs, tile_id, gt_id, "max", rpn) > 0);
usleep(ACT_FREQ_LATENCY_US);
- igt_assert(get_freq(sysfs, gt_id, "cur") == rpe);
- igt_assert(get_freq(sysfs, gt_id, "act") == rpe);
+ igt_assert(get_freq(sysfs, tile_id, gt_id, "cur") == rpe);
+ igt_assert(get_freq(sysfs, tile_id, gt_id, "act") == rpe);
}
/**
@@ -304,20 +306,20 @@ static void test_freq_low_max(int sysfs, int gt_id)
* TODO: change ``'Run type' == FULL`` to a better category
*/
-static void test_suspend(int sysfs, int gt_id)
+static void test_suspend(int sysfs, int tile_id, int gt_id)
{
- uint32_t rpn = get_freq(sysfs, gt_id, "rpn");
+ uint32_t rpn = get_freq(sysfs, tile_id, gt_id, "rpn");
- igt_assert(set_freq(sysfs, gt_id, "min", rpn) > 0);
- igt_assert(set_freq(sysfs, gt_id, "max", rpn) > 0);
+ igt_assert(set_freq(sysfs, tile_id, gt_id, "min", rpn) > 0);
+ igt_assert(set_freq(sysfs, tile_id, gt_id, "max", rpn) > 0);
usleep(ACT_FREQ_LATENCY_US);
- igt_assert(get_freq(sysfs, gt_id, "cur") == rpn);
+ igt_assert(get_freq(sysfs, tile_id, gt_id, "cur") == rpn);
igt_system_suspend_autoresume(SUSPEND_STATE_S3,
SUSPEND_TEST_NONE);
- igt_assert(get_freq(sysfs, gt_id, "min") == rpn);
- igt_assert(get_freq(sysfs, gt_id, "max") == rpn);
+ igt_assert(get_freq(sysfs, tile_id, gt_id, "min") == rpn);
+ igt_assert(get_freq(sysfs, tile_id, gt_id, "max") == rpn);
}
/**
@@ -332,24 +334,24 @@ static void test_suspend(int sysfs, int gt_id)
* TODO: change ``'Run type' == FULL`` to a better category
*/
-static void test_reset(int fd, int sysfs, int gt_id, int cycles)
+static void test_reset(int fd, int sysfs, int tile_id, int gt_id, int cycles)
{
- uint32_t rpn = get_freq(sysfs, gt_id, "rpn");
+ uint32_t rpn = get_freq(sysfs, tile_id, gt_id, "rpn");
for (int i = 0; i < cycles; i++) {
- igt_assert_f(set_freq(sysfs, gt_id, "min", rpn) > 0,
+ igt_assert_f(set_freq(sysfs, tile_id, gt_id, "min", rpn) > 0,
"Failed after %d good cycles\n", i);
- igt_assert_f(set_freq(sysfs, gt_id, "max", rpn) > 0,
+ igt_assert_f(set_freq(sysfs, tile_id, gt_id, "max", rpn) > 0,
"Failed after %d good cycles\n", i);
usleep(ACT_FREQ_LATENCY_US);
- igt_assert_f(get_freq(sysfs, gt_id, "cur") == rpn,
+ igt_assert_f(get_freq(sysfs, tile_id, gt_id, "cur") == rpn,
"Failed after %d good cycles\n", i);
xe_force_gt_reset(fd, gt_id);
- igt_assert_f(get_freq(sysfs, gt_id, "min") == rpn,
+ igt_assert_f(get_freq(sysfs, tile_id, gt_id, "min") == rpn,
"Failed after %d good cycles\n", i);
- igt_assert_f(get_freq(sysfs, gt_id, "max") == rpn,
+ igt_assert_f(get_freq(sysfs, tile_id, gt_id, "max") == rpn,
"Failed after %d good cycles\n", i);
}
}
@@ -365,11 +367,11 @@ static void test_reset(int fd, int sysfs, int gt_id, int cycles)
* Run type: BAT
*/
-static bool in_rc6(int sysfs, int gt_id)
+static bool in_rc6(int sysfs, int tile_id, int gt_id)
{
- char path[32];
+ char path[40];
char rc[8];
- sprintf(path, "device/gt%d/rc_status", gt_id);
+ sprintf(path, "device/tile%d/gt%d/rc_status", tile_id, gt_id);
if (igt_sysfs_scanf(sysfs, path, "%s", rc) < 0)
return false;
return strcmp(rc, "rc6") == 0;
@@ -379,7 +381,7 @@ igt_main
{
struct drm_xe_engine_class_instance *hwe;
int fd;
- int gt;
+ int gt, tile, total_tiles;
static int sysfs = -1;
int ncpus = sysconf(_SC_NPROCESSORS_ONLN);
uint32_t stash_min;
@@ -392,24 +394,24 @@ igt_main
sysfs = igt_sysfs_open(fd);
igt_assert(sysfs != -1);
- /* The defaults are the same. Stashing the gt0 is enough */
- stash_min = get_freq(sysfs, 0, "min");
- stash_max = get_freq(sysfs, 0, "max");
+ /* The defaults are the same. Stashing the gt0 in tile0 is enough */
+ stash_min = get_freq(sysfs, 0, 0, "min");
+ stash_max = get_freq(sysfs, 0, 0, "max");
}
igt_subtest("freq_basic_api") {
- xe_for_each_gt(fd, gt)
- test_freq_basic_api(sysfs, gt);
+ xe_for_each_gt_under_each_tile(fd, gt, tile, total_tiles)
+ test_freq_basic_api(sysfs, tile, gt);
}
igt_subtest("freq_fixed_idle") {
- xe_for_each_gt(fd, gt) {
- test_freq_fixed(sysfs, gt);
+ xe_for_each_gt_under_each_tile(fd, gt, tile, total_tiles) {
+ test_freq_fixed(sysfs, tile, gt);
}
}
igt_subtest("freq_fixed_exec") {
- xe_for_each_gt(fd, gt) {
+ xe_for_each_gt_under_each_tile(fd, gt, tile, total_tiles) {
xe_for_each_hw_engine(fd, hwe)
igt_fork(child, ncpus) {
igt_debug("Execution Started\n");
@@ -417,19 +419,19 @@ igt_main
igt_debug("Execution Finished\n");
}
/* While exec in threads above, let's check the freq */
- test_freq_fixed(sysfs, gt);
+ test_freq_fixed(sysfs, tile, gt);
igt_waitchildren();
}
}
igt_subtest("freq_range_idle") {
- xe_for_each_gt(fd, gt) {
- test_freq_range(sysfs, gt);
+ xe_for_each_gt_under_each_tile(fd, gt, tile, total_tiles) {
+ test_freq_range(sysfs, tile, gt);
}
}
igt_subtest("freq_range_exec") {
- xe_for_each_gt(fd, gt) {
+ xe_for_each_gt_under_each_tile(fd, gt, tile, total_tiles) {
xe_for_each_hw_engine(fd, hwe)
igt_fork(child, ncpus) {
igt_debug("Execution Started\n");
@@ -437,46 +439,46 @@ igt_main
igt_debug("Execution Finished\n");
}
/* While exec in threads above, let's check the freq */
- test_freq_range(sysfs, gt);
+ test_freq_range(sysfs, tile, gt);
igt_waitchildren();
}
}
igt_subtest("freq_low_max") {
- xe_for_each_gt(fd, gt) {
- test_freq_low_max(sysfs, gt);
+ xe_for_each_gt_under_each_tile(fd, gt, tile, total_tiles) {
+ test_freq_low_max(sysfs, tile, gt);
}
}
igt_subtest("freq_suspend") {
- xe_for_each_gt(fd, gt) {
- test_suspend(sysfs, gt);
+ xe_for_each_gt_under_each_tile(fd, gt, tile, total_tiles) {
+ test_suspend(sysfs, tile, gt);
}
}
igt_subtest("freq_reset") {
- xe_for_each_gt(fd, gt) {
- test_reset(fd, sysfs, gt, 1);
+ xe_for_each_gt_under_each_tile(fd, gt, tile, total_tiles) {
+ test_reset(fd, sysfs, tile, gt, 1);
}
}
igt_subtest("freq_reset_multiple") {
- xe_for_each_gt(fd, gt) {
- test_reset(fd, sysfs, gt, 50);
+ xe_for_each_gt_under_each_tile(fd, gt, tile, total_tiles) {
+ test_reset(fd, sysfs, tile, gt, 50);
}
}
igt_subtest("rc6_on_idle") {
igt_require(!IS_PONTEVECCHIO(xe_dev_id(fd)));
- xe_for_each_gt(fd, gt) {
- assert(igt_wait(in_rc6(sysfs, gt), 1000, 1));
+ xe_for_each_gt_under_each_tile(fd, gt, tile, total_tiles) {
+ assert(igt_wait(in_rc6(sysfs, tile, gt), 1000, 1));
}
}
igt_subtest("rc0_on_exec") {
igt_require(!IS_PONTEVECCHIO(xe_dev_id(fd)));
- xe_for_each_gt(fd, gt) {
- assert(igt_wait(in_rc6(sysfs, gt), 1000, 1));
+ xe_for_each_gt_under_each_tile(fd, gt, tile, total_tiles) {
+ assert(igt_wait(in_rc6(sysfs, tile, gt), 1000, 1));
xe_for_each_hw_engine(fd, hwe)
igt_fork(child, ncpus) {
igt_debug("Execution Started\n");
@@ -484,15 +486,15 @@ igt_main
igt_debug("Execution Finished\n");
}
/* While exec in threads above, let's check rc_status */
- assert(igt_wait(!in_rc6(sysfs, gt), 1000, 1));
+ assert(igt_wait(!in_rc6(sysfs, tile, gt), 1000, 1));
igt_waitchildren();
}
}
igt_fixture {
- xe_for_each_gt(fd, gt) {
- set_freq(sysfs, gt, "min", stash_min);
- set_freq(sysfs, gt, "max", stash_max);
+ xe_for_each_gt_under_each_tile(fd, gt, tile, total_tiles) {
+ set_freq(sysfs, tile, gt, "min", stash_min);
+ set_freq(sysfs, tile, gt, "max", stash_max);
}
close(sysfs);
xe_device_put(fd);
--
2.25.1
next prev parent reply other threads:[~2023-06-23 11:46 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-06-23 11:49 [igt-dev] [PATCH v2 0/4] Handle GT and tile seperation in IGT Himal Prasad Ghimiray
2023-06-23 11:49 ` [igt-dev] [PATCH v2 1/4] lib/igt_sysfs: Add support to query number of tiles Himal Prasad Ghimiray
2023-06-26 10:24 ` Upadhyay, Tejas
2023-06-26 20:24 ` Dixit, Ashutosh
2023-06-23 11:49 ` [igt-dev] [PATCH v2 2/4] lib/igt_sysfs: Handling gt related sysfs uapi changes Himal Prasad Ghimiray
2023-06-26 10:48 ` Upadhyay, Tejas
2023-06-26 22:34 ` Dixit, Ashutosh
2023-06-27 4:22 ` Ghimiray, Himal Prasad
2023-06-27 6:02 ` Dixit, Ashutosh
2023-06-27 7:06 ` Ghimiray, Himal Prasad
2023-07-01 17:44 ` Dixit, Ashutosh
2023-07-04 5:42 ` Ghimiray, Himal Prasad
2023-06-23 11:49 ` Himal Prasad Ghimiray [this message]
2023-06-26 10:49 ` [igt-dev] [PATCH v2 3/4] tests/xe/xe_guc_pc: Change the sysfs paths Upadhyay, Tejas
2023-06-23 11:49 ` [igt-dev] [PATCH v2 4/4] tests/xe/xe_sysfs_tile_prop: adds new test to verify per tile vram addr_range Himal Prasad Ghimiray
2023-06-26 10:59 ` Upadhyay, Tejas
2023-06-26 11:20 ` Ghimiray, Himal Prasad
2023-06-23 12:44 ` [igt-dev] ✓ Fi.CI.BAT: success for Handle GT and tile seperation in IGT Patchwork
2023-06-23 18:13 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
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=20230623114946.3803540-4-himal.prasad.ghimiray@intel.com \
--to=himal.prasad.ghimiray@intel.com \
--cc=badal.nilawar@intel.com \
--cc=igt-dev@lists.freedesktop.org \
--cc=tejas.upadhyay@intel.com \
/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