automatic DPDK test reports
 help / color / mirror / Atom feed
* [dpdk-test-report] |WARNING| pw96908 [PATCH] [20.11.3] test/power: fix CPU frequency when turbo enabled
@ 2021-08-13 16:00 dpdklab
  0 siblings, 0 replies; 2+ messages in thread
From: dpdklab @ 2021-08-13 16:00 UTC (permalink / raw)
  To: test-report; +Cc: dpdk-test-reports

[-- Attachment #1: Type: text/plain, Size: 2600 bytes --]

Test-Label: iol-testing
Test-Status: WARNING
http://dpdk.org/patch/96908

_apply patch failure_

Submitter: David Hunt <david.hunt@intel.com>
Date: Friday, August 13 2021 14:18:30 
Applied on: CommitID:4ac3f3d76e9507a93bcf48d165ffd3a1faba08bb
Apply patch set 96908 failed:

Checking patch app/test/test_power_cpufreq.c...
error: while searching for:
	FILE *f;
	char fullpath[PATH_MAX];
	char buf[BUFSIZ];
	uint32_t cur_freq;
	int ret = -1;
	int i;


error: patch failed: app/test/test_power_cpufreq.c:55
error: while searching for:
			goto fail_all;

		cur_freq = strtoul(buf, NULL, TEST_POWER_CONVERT_TO_DECIMAL);

		/* convert the frequency to nearest 100000 value
		 * Ex: if cur_freq=1396789 then freq_conv=1400000
		 * Ex: if cur_freq=800030 then freq_conv=800000
		 */
		unsigned int freq_conv = 0;
		freq_conv = (cur_freq + TEST_FREQ_ROUNDING_DELTA)
					/ TEST_ROUND_FREQ_TO_N_100000;
		freq_conv = freq_conv * TEST_ROUND_FREQ_TO_N_100000;

		if (turbo)
			ret = (freqs[idx] <= freq_conv ? 0 : -1);

error: patch failed: app/test/test_power_cpufreq.c:80
Applying patch app/test/test_power_cpufreq.c with 2 rejects...
Rejected hunk #1.
Rejected hunk #2.
diff a/app/test/test_power_cpufreq.c b/app/test/test_power_cpufreq.c	(rejected hunks)
@@ -55,7 +55,9 @@ check_cur_freq(unsigned int lcore_id, uint32_t idx, bool turbo)
 	FILE *f;
 	char fullpath[PATH_MAX];
 	char buf[BUFSIZ];
+	enum power_management_env env;
 	uint32_t cur_freq;
+	uint32_t freq_conv;
 	int ret = -1;
 	int i;
 
@@ -80,15 +82,20 @@ check_cur_freq(unsigned int lcore_id, uint32_t idx, bool turbo)
 			goto fail_all;
 
 		cur_freq = strtoul(buf, NULL, TEST_POWER_CONVERT_TO_DECIMAL);
-
-		/* convert the frequency to nearest 100000 value
-		 * Ex: if cur_freq=1396789 then freq_conv=1400000
-		 * Ex: if cur_freq=800030 then freq_conv=800000
-		 */
-		unsigned int freq_conv = 0;
-		freq_conv = (cur_freq + TEST_FREQ_ROUNDING_DELTA)
-					/ TEST_ROUND_FREQ_TO_N_100000;
-		freq_conv = freq_conv * TEST_ROUND_FREQ_TO_N_100000;
+		freq_conv = cur_freq;
+
+		env = rte_power_get_env();
+
+		if (env == PM_ENV_PSTATE_CPUFREQ) {
+			/* convert the frequency to nearest 100000 value
+			 * Ex: if cur_freq=1396789 then freq_conv=1400000
+			 * Ex: if cur_freq=800030 then freq_conv=800000
+			 */
+			unsigned int freq_conv = 0;
+			freq_conv = (cur_freq + TEST_FREQ_ROUNDING_DELTA)
+						/ TEST_ROUND_FREQ_TO_N_100000;
+			freq_conv = freq_conv * TEST_ROUND_FREQ_TO_N_100000;
+		}
 
 		if (turbo)
 			ret = (freqs[idx] <= freq_conv ? 0 : -1);

https://lab.dpdk.org/results/dashboard/patchsets/18202/

UNH-IOL DPDK Community Lab

^ permalink raw reply	[flat|nested] 2+ messages in thread

* [dpdk-test-report] |WARNING| pw96908 [PATCH] [20.11.3] test/power: fix CPU frequency when turbo enabled
@ 2021-08-13 16:11 dpdklab
  0 siblings, 0 replies; 2+ messages in thread
From: dpdklab @ 2021-08-13 16:11 UTC (permalink / raw)
  To: test-report; +Cc: dpdk-test-reports

[-- Attachment #1: Type: text/plain, Size: 2600 bytes --]

Test-Label: iol-testing
Test-Status: WARNING
http://dpdk.org/patch/96908

_apply patch failure_

Submitter: David Hunt <david.hunt@intel.com>
Date: Friday, August 13 2021 14:18:30 
Applied on: CommitID:4ac3f3d76e9507a93bcf48d165ffd3a1faba08bb
Apply patch set 96908 failed:

Checking patch app/test/test_power_cpufreq.c...
error: while searching for:
	FILE *f;
	char fullpath[PATH_MAX];
	char buf[BUFSIZ];
	uint32_t cur_freq;
	int ret = -1;
	int i;


error: patch failed: app/test/test_power_cpufreq.c:55
error: while searching for:
			goto fail_all;

		cur_freq = strtoul(buf, NULL, TEST_POWER_CONVERT_TO_DECIMAL);

		/* convert the frequency to nearest 100000 value
		 * Ex: if cur_freq=1396789 then freq_conv=1400000
		 * Ex: if cur_freq=800030 then freq_conv=800000
		 */
		unsigned int freq_conv = 0;
		freq_conv = (cur_freq + TEST_FREQ_ROUNDING_DELTA)
					/ TEST_ROUND_FREQ_TO_N_100000;
		freq_conv = freq_conv * TEST_ROUND_FREQ_TO_N_100000;

		if (turbo)
			ret = (freqs[idx] <= freq_conv ? 0 : -1);

error: patch failed: app/test/test_power_cpufreq.c:80
Applying patch app/test/test_power_cpufreq.c with 2 rejects...
Rejected hunk #1.
Rejected hunk #2.
diff a/app/test/test_power_cpufreq.c b/app/test/test_power_cpufreq.c	(rejected hunks)
@@ -55,7 +55,9 @@ check_cur_freq(unsigned int lcore_id, uint32_t idx, bool turbo)
 	FILE *f;
 	char fullpath[PATH_MAX];
 	char buf[BUFSIZ];
+	enum power_management_env env;
 	uint32_t cur_freq;
+	uint32_t freq_conv;
 	int ret = -1;
 	int i;
 
@@ -80,15 +82,20 @@ check_cur_freq(unsigned int lcore_id, uint32_t idx, bool turbo)
 			goto fail_all;
 
 		cur_freq = strtoul(buf, NULL, TEST_POWER_CONVERT_TO_DECIMAL);
-
-		/* convert the frequency to nearest 100000 value
-		 * Ex: if cur_freq=1396789 then freq_conv=1400000
-		 * Ex: if cur_freq=800030 then freq_conv=800000
-		 */
-		unsigned int freq_conv = 0;
-		freq_conv = (cur_freq + TEST_FREQ_ROUNDING_DELTA)
-					/ TEST_ROUND_FREQ_TO_N_100000;
-		freq_conv = freq_conv * TEST_ROUND_FREQ_TO_N_100000;
+		freq_conv = cur_freq;
+
+		env = rte_power_get_env();
+
+		if (env == PM_ENV_PSTATE_CPUFREQ) {
+			/* convert the frequency to nearest 100000 value
+			 * Ex: if cur_freq=1396789 then freq_conv=1400000
+			 * Ex: if cur_freq=800030 then freq_conv=800000
+			 */
+			unsigned int freq_conv = 0;
+			freq_conv = (cur_freq + TEST_FREQ_ROUNDING_DELTA)
+						/ TEST_ROUND_FREQ_TO_N_100000;
+			freq_conv = freq_conv * TEST_ROUND_FREQ_TO_N_100000;
+		}
 
 		if (turbo)
 			ret = (freqs[idx] <= freq_conv ? 0 : -1);

https://lab.dpdk.org/results/dashboard/patchsets/18202/

UNH-IOL DPDK Community Lab

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-08-13 16:11 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-13 16:00 [dpdk-test-report] |WARNING| pw96908 [PATCH] [20.11.3] test/power: fix CPU frequency when turbo enabled dpdklab
2021-08-13 16:11 dpdklab

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).