All of lore.kernel.org
 help / color / mirror / Atom feed
From: Mario Limonciello <mario.limonciello@amd.com>
To: Wyes Karny <wyes.karny@amd.com>, trenn@suse.com, shuah@kernel.org
Cc: linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org,
	rafael@kernel.org, gautham.shenoy@amd.com, Ray.Huang@amd.com,
	Perry.Yuan@amd.com
Subject: Re: [PATCH v2 2/5] cpupower: Add is_valid_path API
Date: Sun, 18 Jun 2023 20:58:31 -0500	[thread overview]
Message-ID: <d155a305-2d57-a76a-0860-71c3a5c99624@amd.com> (raw)
In-Reply-To: <20230616120620.147643-3-wyes.karny@amd.com>

On 6/16/23 07:06, Wyes Karny wrote:
> Add is_valid_path API to check whether the sysfs file is present or not.
> 
> Suggested-by: Gautham R. Shenoy <gautham.shenoy@amd.com>
> Signed-off-by: Wyes Karny <wyes.karny@amd.com>
Reviewed-by: Mario Limonciello <mario.limonciello@amd.com>

> ---
>   tools/power/cpupower/lib/cpupower.c        | 7 +++++++
>   tools/power/cpupower/lib/cpupower_intern.h | 1 +
>   2 files changed, 8 insertions(+)
> 
> diff --git a/tools/power/cpupower/lib/cpupower.c b/tools/power/cpupower/lib/cpupower.c
> index 3f7d0c0c5067..7a2ef691b20e 100644
> --- a/tools/power/cpupower/lib/cpupower.c
> +++ b/tools/power/cpupower/lib/cpupower.c
> @@ -14,6 +14,13 @@
>   #include "cpupower.h"
>   #include "cpupower_intern.h"
>   
> +int is_valid_path(const char *path)
> +{
> +	if (access(path, F_OK) == -1)
> +		return 0;
> +	return 1;
> +}
> +
>   unsigned int cpupower_read_sysfs(const char *path, char *buf, size_t buflen)
>   {
>   	ssize_t numread;
> diff --git a/tools/power/cpupower/lib/cpupower_intern.h b/tools/power/cpupower/lib/cpupower_intern.h
> index ac1112b956ec..5fdb8620d41b 100644
> --- a/tools/power/cpupower/lib/cpupower_intern.h
> +++ b/tools/power/cpupower/lib/cpupower_intern.h
> @@ -7,5 +7,6 @@
>   
>   #define SYSFS_PATH_MAX 255
>   
> +int is_valid_path(const char *path);
>   unsigned int cpupower_read_sysfs(const char *path, char *buf, size_t buflen);
>   unsigned int cpupower_write_sysfs(const char *path, char *buf, size_t buflen);


  reply	other threads:[~2023-06-19  1:58 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-06-16 12:06 [PATCH v2 0/5] cpupower: Add various feature control support for amd_pstate Wyes Karny
2023-06-16 12:06 ` [PATCH v2 1/5] cpupower: Recognise amd-pstate active mode driver Wyes Karny
2023-06-19  1:58   ` Mario Limonciello
2023-06-19 17:31     ` Wyes Karny
2023-06-19 17:37       ` Limonciello, Mario
2023-06-16 12:06 ` [PATCH v2 2/5] cpupower: Add is_valid_path API Wyes Karny
2023-06-19  1:58   ` Mario Limonciello [this message]
2023-06-16 12:09 ` [PATCH v2 3/5] cpupower: Add EPP value change support Wyes Karny
2023-06-19  1:58   ` Mario Limonciello
2023-06-16 12:10 ` [PATCH v2 4/5] cpupower: Add support for amd_pstate mode change Wyes Karny
2023-06-19  1:59   ` Mario Limonciello
2023-06-16 12:11 ` [PATCH v2 5/5] cpupower: Add turbo-boost support in cpupower Wyes Karny
2023-06-19  1:59   ` Mario Limonciello

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=d155a305-2d57-a76a-0860-71c3a5c99624@amd.com \
    --to=mario.limonciello@amd.com \
    --cc=Perry.Yuan@amd.com \
    --cc=Ray.Huang@amd.com \
    --cc=gautham.shenoy@amd.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=rafael@kernel.org \
    --cc=shuah@kernel.org \
    --cc=trenn@suse.com \
    --cc=wyes.karny@amd.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.