* [PATCH] implement set_enabled functions on powercap.c
@ 2024-10-19 12:42 Vishnu Sanal T
2024-10-21 20:36 ` Shuah Khan
2024-10-30 15:27 ` [PATCH v2] " Vishnu Sanal T
0 siblings, 2 replies; 5+ messages in thread
From: Vishnu Sanal T @ 2024-10-19 12:42 UTC (permalink / raw)
To: linux-pm; +Cc: linux-kernel, trenn, shuah, jwyatt, jkacur, Vishnu Sanal T
Implement the functions sysfs_set_enabled, powercap_set_enabled,
and powercap_zone_set_enabled on powercap.c.
Signed-off-by: Vishnu Sanal T <t.v.s10123@gmail.com>
---
tools/power/cpupower/lib/powercap.c | 43 +++++++++++++++++++++++++----
1 file changed, 37 insertions(+), 6 deletions(-)
diff --git a/tools/power/cpupower/lib/powercap.c b/tools/power/cpupower/lib/powercap.c
index 94a0c69e55ef..1cf2b0de5536 100644
--- a/tools/power/cpupower/lib/powercap.c
+++ b/tools/power/cpupower/lib/powercap.c
@@ -70,6 +70,29 @@ static int sysfs_get_enabled(char *path, int *mode)
return ret;
}
+static int sysfs_set_enabled(char *path, int mode)
+{
+ int fd;
+ char yes_no = (char) (mode + '0');
+ int ret = 0;
+
+ fd = open(path, O_RDWR);
+ if (fd == -1) {
+ ret = -1;
+ goto out;
+ }
+
+ if (write(fd, &yes_no, 1) != 1) {
+ ret = -1;
+ goto out_close;
+ }
+
+out_close:
+ close(fd);
+out:
+ return ret;
+}
+
int powercap_get_enabled(int *mode)
{
char path[SYSFS_PATH_MAX] = PATH_TO_POWERCAP "/intel-rapl/enabled";
@@ -77,12 +100,11 @@ int powercap_get_enabled(int *mode)
return sysfs_get_enabled(path, mode);
}
-/*
- * TODO: implement function. Returns dummy 0 for now.
- */
int powercap_set_enabled(int mode)
{
- return 0;
+ char path[SYSFS_PATH_MAX] = PATH_TO_POWERCAP "/intel-rapl/enabled";
+
+ return sysfs_set_enabled(path, mode);
}
/*
@@ -180,8 +202,17 @@ int powercap_zone_get_enabled(struct powercap_zone *zone, int *mode)
int powercap_zone_set_enabled(struct powercap_zone *zone, int mode)
{
- /* To be done if needed */
- return 0;
+ char path[SYSFS_PATH_MAX] = PATH_TO_POWERCAP;
+
+ if ((strlen(PATH_TO_POWERCAP) + strlen(zone->sys_name)) +
+ strlen("/enabled") + 1 >= SYSFS_PATH_MAX)
+ return -1;
+
+ strcat(path, "/");
+ strcat(path, zone->sys_name);
+ strcat(path, "/enabled");
+
+ return sysfs_set_enabled(path, mode);
}
--
2.47.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] implement set_enabled functions on powercap.c
2024-10-19 12:42 [PATCH] implement set_enabled functions on powercap.c Vishnu Sanal T
@ 2024-10-21 20:36 ` Shuah Khan
2024-10-30 15:27 ` [PATCH v2] " Vishnu Sanal T
1 sibling, 0 replies; 5+ messages in thread
From: Shuah Khan @ 2024-10-21 20:36 UTC (permalink / raw)
To: Vishnu Sanal T, linux-pm
Cc: linux-kernel, trenn, shuah, jwyatt, jkacur, Shuah Khan
On 10/19/24 06:42, Vishnu Sanal T wrote:
> Implement the functions sysfs_set_enabled, powercap_set_enabled,
> and powercap_zone_set_enabled on powercap.c.
>
> Signed-off-by: Vishnu Sanal T <t.v.s10123@gmail.com>
> ---
> tools/power/cpupower/lib/powercap.c | 43 +++++++++++++++++++++++++----
> 1 file changed, 37 insertions(+), 6 deletions(-)
>
> diff --git a/tools/power/cpupower/lib/powercap.c b/tools/power/cpupower/lib/powercap.c
> index 94a0c69e55ef..1cf2b0de5536 100644
> --- a/tools/power/cpupower/lib/powercap.c
> +++ b/tools/power/cpupower/lib/powercap.c
> @@ -70,6 +70,29 @@ static int sysfs_get_enabled(char *path, int *mode)
> return ret;
> }
>
> +static int sysfs_set_enabled(char *path, int mode)
> +{
> + int fd;
> + char yes_no = (char) (mode + '0');
> + int ret = 0;
> +
> + fd = open(path, O_RDWR);
> + if (fd == -1) {
> + ret = -1;
> + goto out;
> + }
> +
> + if (write(fd, &yes_no, 1) != 1) {
> + ret = -1;
> + goto out_close;
> + }
> +
> +out_close:
> + close(fd);
> +out:
> + return ret;
> +}
> +
Why can't this all be simplified using system("echo 1 filename")
That goes for existing get routines.
> int powercap_get_enabled(int *mode)
> {
> char path[SYSFS_PATH_MAX] = PATH_TO_POWERCAP "/intel-rapl/enabled";
> @@ -77,12 +100,11 @@ int powercap_get_enabled(int *mode)
> return sysfs_get_enabled(path, mode);
> }
>
> -/*
> - * TODO: implement function. Returns dummy 0 for now.
> - */
> int powercap_set_enabled(int mode)
> {
> - return 0;
> + char path[SYSFS_PATH_MAX] = PATH_TO_POWERCAP "/intel-rapl/enabled";
> +
> + return sysfs_set_enabled(path, mode);
> }
>
> /*
> @@ -180,8 +202,17 @@ int powercap_zone_get_enabled(struct powercap_zone *zone, int *mode)
>
> int powercap_zone_set_enabled(struct powercap_zone *zone, int mode)
> {
> - /* To be done if needed */
> - return 0;
> + char path[SYSFS_PATH_MAX] = PATH_TO_POWERCAP;
> +
> + if ((strlen(PATH_TO_POWERCAP) + strlen(zone->sys_name)) +
> + strlen("/enabled") + 1 >= SYSFS_PATH_MAX)
> + return -1;
> +
> + strcat(path, "/");
> + strcat(path, zone->sys_name);
> + strcat(path, "/enabled");
> +
> + return sysfs_set_enabled(path, mode);
> }
>
>
thanks,
-- Shuah
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH v2] implement set_enabled functions on powercap.c
2024-10-19 12:42 [PATCH] implement set_enabled functions on powercap.c Vishnu Sanal T
2024-10-21 20:36 ` Shuah Khan
@ 2024-10-30 15:27 ` Vishnu Sanal T
2024-10-30 16:57 ` John B. Wyatt IV
2024-11-03 16:27 ` kernel test robot
1 sibling, 2 replies; 5+ messages in thread
From: Vishnu Sanal T @ 2024-10-30 15:27 UTC (permalink / raw)
To: linux-pm; +Cc: trenn, shuah, jwyatt, jkacur, linux-kernel, Vishnu Sanal T
Implement the functions sysfs_set_enabled, powercap_set_enabled,
and powercap_zone_set_enabled on powercap.c.
Signed-off-by: Vishnu Sanal T <t.v.s10123@gmail.com>
---
Changes in v2:
- simplify the implementation of sysfs_set_enabled using system()
function.
---
tools/power/cpupower/lib/powercap.c | 31 +++++++++++++++++++++++------
1 file changed, 25 insertions(+), 6 deletions(-)
diff --git a/tools/power/cpupower/lib/powercap.c b/tools/power/cpupower/lib/powercap.c
index 94a0c69e55ef..a2c0c33b7729 100644
--- a/tools/power/cpupower/lib/powercap.c
+++ b/tools/power/cpupower/lib/powercap.c
@@ -70,6 +70,17 @@ static int sysfs_get_enabled(char *path, int *mode)
return ret;
}
+static int sysfs_set_enabled(char *path, int mode)
+{
+ char command[SYSFS_PATH_MAX + 10];
+
+ char yes_no = (char)(mode + '0');
+
+ sprintf(command, "echo -n %c > %s", yes_no, path);
+
+ return system(command);
+}
+
int powercap_get_enabled(int *mode)
{
char path[SYSFS_PATH_MAX] = PATH_TO_POWERCAP "/intel-rapl/enabled";
@@ -77,12 +88,11 @@ int powercap_get_enabled(int *mode)
return sysfs_get_enabled(path, mode);
}
-/*
- * TODO: implement function. Returns dummy 0 for now.
- */
int powercap_set_enabled(int mode)
{
- return 0;
+ char path[SYSFS_PATH_MAX] = PATH_TO_POWERCAP "/intel-rapl/enabled";
+
+ return sysfs_set_enabled(path, mode);
}
/*
@@ -180,8 +190,17 @@ int powercap_zone_get_enabled(struct powercap_zone *zone, int *mode)
int powercap_zone_set_enabled(struct powercap_zone *zone, int mode)
{
- /* To be done if needed */
- return 0;
+ char path[SYSFS_PATH_MAX] = PATH_TO_POWERCAP;
+
+ if ((strlen(PATH_TO_POWERCAP) + strlen(zone->sys_name)) +
+ strlen("/enabled") + 1 >= SYSFS_PATH_MAX)
+ return -1;
+
+ strcat(path, "/");
+ strcat(path, zone->sys_name);
+ strcat(path, "/enabled");
+
+ return sysfs_set_enabled(path, mode);
}
--
2.47.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH v2] implement set_enabled functions on powercap.c
2024-10-30 15:27 ` [PATCH v2] " Vishnu Sanal T
@ 2024-10-30 16:57 ` John B. Wyatt IV
2024-11-03 16:27 ` kernel test robot
1 sibling, 0 replies; 5+ messages in thread
From: John B. Wyatt IV @ 2024-10-30 16:57 UTC (permalink / raw)
To: Vishnu Sanal T; +Cc: linux-pm, trenn, shuah, jkacur, linux-kernel
On Wed, Oct 30, 2024 at 08:57:07PM +0530, Vishnu Sanal T wrote:
> Implement the functions sysfs_set_enabled, powercap_set_enabled,
> and powercap_zone_set_enabled on powercap.c.
>
> Signed-off-by: Vishnu Sanal T <t.v.s10123@gmail.com>
> ---
> Changes in v2:
>
> - simplify the implementation of sysfs_set_enabled using system()
> function.
Hello Vishnu,
Ty for sending a patch to implement this.
I got several warnings trying to compile your patch. Please resolve
them. I have not tested your code yet. How are you testing your code?
> ---
> tools/power/cpupower/lib/powercap.c | 31 +++++++++++++++++++++++------
> 1 file changed, 25 insertions(+), 6 deletions(-)
>
> diff --git a/tools/power/cpupower/lib/powercap.c b/tools/power/cpupower/lib/powercap.c
> index 94a0c69e55ef..a2c0c33b7729 100644
> --- a/tools/power/cpupower/lib/powercap.c
> +++ b/tools/power/cpupower/lib/powercap.c
> @@ -70,6 +70,17 @@ static int sysfs_get_enabled(char *path, int *mode)
> return ret;
> }
>
> +static int sysfs_set_enabled(char *path, int mode)
> +{
> + char command[SYSFS_PATH_MAX + 10];
> +
> + char yes_no = (char)(mode + '0');
What does yes or no mean for setting a value?
`is_set` or using something with the word 'mode' would be a better
variable name?
> +
> + sprintf(command, "echo -n %c > %s", yes_no, path);
> +
> + return system(command);
> +}
> +
In function ‘sysfs_set_enabled’,
inlined from ‘powercap_set_enabled’ at lib/powercap.c:95:9:
lib/powercap.c:79:9: note: ‘sprintf’ output between 13 and 267 bytes into a destination of size 265
79 | sprintf(command, "echo -n %c > %s", yes_no, path);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
lib/powercap.c: In function ‘powercap_zone_set_enabled’:
lib/powercap.c:79:40: warning: ‘%s’ directive writing up to 254 bytes into a region of size 253 [-Wformat-overflow=]
79 | sprintf(command, "echo -n %c > %s", yes_no, path);
| ^~
......
203 | return sysfs_set_enabled(path, mode);
| ~~~~
In function ‘sysfs_set_enabled’,
inlined from ‘powercap_zone_set_enabled’ at lib/powercap.c:203:9:
lib/powercap.c:79:9: note: ‘sprintf’ output between 13 and 267 bytes into a destination of size 265
79 | sprintf(command, "echo -n %c > %s", yes_no, path);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> int powercap_get_enabled(int *mode)
> {
> char path[SYSFS_PATH_MAX] = PATH_TO_POWERCAP "/intel-rapl/enabled";
> @@ -77,12 +88,11 @@ int powercap_get_enabled(int *mode)
> return sysfs_get_enabled(path, mode);
> }
>
> -/*
> - * TODO: implement function. Returns dummy 0 for now.
> - */
> int powercap_set_enabled(int mode)
> {
> - return 0;
> + char path[SYSFS_PATH_MAX] = PATH_TO_POWERCAP "/intel-rapl/enabled";
> +
> + return sysfs_set_enabled(path, mode);
> }
lib/powercap.c: In function ‘powercap_set_enabled’:
lib/powercap.c:79:40: warning: ‘%s’ directive writing up to 254 bytes into a region of size 253 [-Wformat-overflow=]
79 | sprintf(command, "echo -n %c > %s", yes_no, path);
| ^~
......
95 | return sysfs_set_enabled(path, mode);
>
> /*
> @@ -180,8 +190,17 @@ int powercap_zone_get_enabled(struct powercap_zone *zone, int *mode)
>
> int powercap_zone_set_enabled(struct powercap_zone *zone, int mode)
> {
> - /* To be done if needed */
> - return 0;
> + char path[SYSFS_PATH_MAX] = PATH_TO_POWERCAP;
> +
> + if ((strlen(PATH_TO_POWERCAP) + strlen(zone->sys_name)) +
> + strlen("/enabled") + 1 >= SYSFS_PATH_MAX)
> + return -1;
> +
> + strcat(path, "/");
> + strcat(path, zone->sys_name);
> + strcat(path, "/enabled");
> +
> + return sysfs_set_enabled(path, mode);
> }
>
>
> --
> 2.47.0
>
--
Sincerely,
John Wyatt
Software Engineer, Core Kernel
Red Hat
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v2] implement set_enabled functions on powercap.c
2024-10-30 15:27 ` [PATCH v2] " Vishnu Sanal T
2024-10-30 16:57 ` John B. Wyatt IV
@ 2024-11-03 16:27 ` kernel test robot
1 sibling, 0 replies; 5+ messages in thread
From: kernel test robot @ 2024-11-03 16:27 UTC (permalink / raw)
To: Vishnu Sanal T, linux-pm
Cc: oe-kbuild-all, trenn, shuah, jwyatt, jkacur, linux-kernel,
Vishnu Sanal T
Hi Vishnu,
kernel test robot noticed the following build warnings:
[auto build test WARNING on amd-pstate/linux-next]
[also build test WARNING on amd-pstate/bleeding-edge linus/master v6.12-rc5 next-20241101]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Vishnu-Sanal-T/implement-set_enabled-functions-on-powercap-c/20241030-233021
base: https://git.kernel.org/pub/scm/linux/kernel/git/superm1/linux.git linux-next
patch link: https://lore.kernel.org/r/20241030152706.179779-2-t.v.s10123%40gmail.com
patch subject: [PATCH v2] implement set_enabled functions on powercap.c
compiler: gcc-12 (Debian 12.2.0-14) 12.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20241104/202411040029.mXFFVJ8w-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202411040029.mXFFVJ8w-lkp@intel.com/
All warnings (new ones prefixed by >>):
lib/powercap.c: In function 'powercap_set_enabled':
>> lib/powercap.c:79:40: warning: '%s' directive writing up to 254 bytes into a region of size 253 [-Wformat-overflow=]
79 | sprintf(command, "echo -n %c > %s", yes_no, path);
| ^~
......
95 | return sysfs_set_enabled(path, mode);
| ~~~~
In function 'sysfs_set_enabled',
inlined from 'powercap_set_enabled' at lib/powercap.c:95:9:
lib/powercap.c:79:9: note: 'sprintf' output between 13 and 267 bytes into a destination of size 265
79 | sprintf(command, "echo -n %c > %s", yes_no, path);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
lib/powercap.c: In function 'powercap_zone_set_enabled':
>> lib/powercap.c:79:40: warning: '%s' directive writing up to 254 bytes into a region of size 253 [-Wformat-overflow=]
79 | sprintf(command, "echo -n %c > %s", yes_no, path);
| ^~
......
203 | return sysfs_set_enabled(path, mode);
| ~~~~
In function 'sysfs_set_enabled',
inlined from 'powercap_zone_set_enabled' at lib/powercap.c:203:9:
lib/powercap.c:79:9: note: 'sprintf' output between 13 and 267 bytes into a destination of size 265
79 | sprintf(command, "echo -n %c > %s", yes_no, path);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-11-03 16:27 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-19 12:42 [PATCH] implement set_enabled functions on powercap.c Vishnu Sanal T
2024-10-21 20:36 ` Shuah Khan
2024-10-30 15:27 ` [PATCH v2] " Vishnu Sanal T
2024-10-30 16:57 ` John B. Wyatt IV
2024-11-03 16:27 ` kernel test robot
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).