From: "Thomas Hellström" <thomas.hellstrom@linux.intel.com>
To: Jani Nikula <jani.nikula@intel.com>, intel-xe@lists.freedesktop.org
Subject: Re: [PATCH 5/5] drm/xe: constify engine class sysfs attributes
Date: Wed, 17 Jan 2024 13:39:57 +0100 [thread overview]
Message-ID: <7316b3ea943c37eb70ee2d568f30c01627a78c12.camel@linux.intel.com> (raw)
In-Reply-To: <20240117122044.1544174-5-jani.nikula@intel.com>
On Wed, 2024-01-17 at 14:20 +0200, Jani Nikula wrote:
> All of the attributes, as well as the array of attributes, can be
> const
> and placed in rodata.
>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Reviewed-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
> ---
> drivers/gpu/drm/xe/xe_hw_engine_class_sysfs.c | 38 +++++++++--------
> --
> 1 file changed, 19 insertions(+), 19 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_hw_engine_class_sysfs.c
> b/drivers/gpu/drm/xe/xe_hw_engine_class_sysfs.c
> index e49bc14f0ecf..2345fb42fa39 100644
> --- a/drivers/gpu/drm/xe/xe_hw_engine_class_sysfs.c
> +++ b/drivers/gpu/drm/xe/xe_hw_engine_class_sysfs.c
> @@ -73,7 +73,7 @@ static ssize_t job_timeout_max_show(struct kobject
> *kobj,
> return sprintf(buf, "%u\n", eclass-
> >sched_props.job_timeout_max);
> }
>
> -static struct kobj_attribute job_timeout_max_attr =
> +static const struct kobj_attribute job_timeout_max_attr =
> __ATTR(job_timeout_max, 0644, job_timeout_max_show,
> job_timeout_max_store);
>
> static ssize_t job_timeout_min_store(struct kobject *kobj,
> @@ -109,7 +109,7 @@ static ssize_t job_timeout_min_show(struct
> kobject *kobj,
> return sprintf(buf, "%u\n", eclass-
> >sched_props.job_timeout_min);
> }
>
> -static struct kobj_attribute job_timeout_min_attr =
> +static const struct kobj_attribute job_timeout_min_attr =
> __ATTR(job_timeout_min, 0644, job_timeout_min_show,
> job_timeout_min_store);
>
> static ssize_t job_timeout_store(struct kobject *kobj,
> @@ -142,7 +142,7 @@ static ssize_t job_timeout_show(struct kobject
> *kobj,
> return sprintf(buf, "%u\n", eclass-
> >sched_props.job_timeout_ms);
> }
>
> -static struct kobj_attribute job_timeout_attr =
> +static const struct kobj_attribute job_timeout_attr =
> __ATTR(job_timeout_ms, 0644, job_timeout_show, job_timeout_store);
>
> static ssize_t job_timeout_default(struct kobject *kobj,
> @@ -153,7 +153,7 @@ static ssize_t job_timeout_default(struct kobject
> *kobj,
> return sprintf(buf, "%u\n", eclass-
> >defaults.job_timeout_ms);
> }
>
> -static struct kobj_attribute job_timeout_def =
> +static const struct kobj_attribute job_timeout_def =
> __ATTR(job_timeout_ms, 0444, job_timeout_default, NULL);
>
> static ssize_t job_timeout_min_default(struct kobject *kobj,
> @@ -164,7 +164,7 @@ static ssize_t job_timeout_min_default(struct
> kobject *kobj,
> return sprintf(buf, "%u\n", eclass-
> >defaults.job_timeout_min);
> }
>
> -static struct kobj_attribute job_timeout_min_def =
> +static const struct kobj_attribute job_timeout_min_def =
> __ATTR(job_timeout_min, 0444, job_timeout_min_default, NULL);
>
> static ssize_t job_timeout_max_default(struct kobject *kobj,
> @@ -175,7 +175,7 @@ static ssize_t job_timeout_max_default(struct
> kobject *kobj,
> return sprintf(buf, "%u\n", eclass-
> >defaults.job_timeout_max);
> }
>
> -static struct kobj_attribute job_timeout_max_def =
> +static const struct kobj_attribute job_timeout_max_def =
> __ATTR(job_timeout_max, 0444, job_timeout_max_default, NULL);
>
> static ssize_t timeslice_duration_store(struct kobject *kobj,
> @@ -234,7 +234,7 @@ static ssize_t timeslice_duration_max_show(struct
> kobject *kobj,
> return sprintf(buf, "%u\n", eclass-
> >sched_props.timeslice_max);
> }
>
> -static struct kobj_attribute timeslice_duration_max_attr =
> +static const struct kobj_attribute timeslice_duration_max_attr =
> __ATTR(timeslice_duration_max, 0644,
> timeslice_duration_max_show,
> timeslice_duration_max_store);
>
> @@ -272,7 +272,7 @@ static ssize_t timeslice_duration_min_show(struct
> kobject *kobj,
> return sprintf(buf, "%u\n", eclass-
> >sched_props.timeslice_min);
> }
>
> -static struct kobj_attribute timeslice_duration_min_attr =
> +static const struct kobj_attribute timeslice_duration_min_attr =
> __ATTR(timeslice_duration_min, 0644,
> timeslice_duration_min_show,
> timeslice_duration_min_store);
>
> @@ -284,7 +284,7 @@ static ssize_t timeslice_duration_show(struct
> kobject *kobj,
> return sprintf(buf, "%u\n", eclass-
> >sched_props.timeslice_us);
> }
>
> -static struct kobj_attribute timeslice_duration_attr =
> +static const struct kobj_attribute timeslice_duration_attr =
> __ATTR(timeslice_duration_us, 0644, timeslice_duration_show,
> timeslice_duration_store);
>
> @@ -296,7 +296,7 @@ static ssize_t timeslice_default(struct kobject
> *kobj,
> return sprintf(buf, "%u\n", eclass->defaults.timeslice_us);
> }
>
> -static struct kobj_attribute timeslice_duration_def =
> +static const struct kobj_attribute timeslice_duration_def =
> __ATTR(timeslice_duration_us, 0444, timeslice_default, NULL);
>
> static ssize_t timeslice_min_default(struct kobject *kobj,
> @@ -307,7 +307,7 @@ static ssize_t timeslice_min_default(struct
> kobject *kobj,
> return sprintf(buf, "%u\n", eclass->defaults.timeslice_min);
> }
>
> -static struct kobj_attribute timeslice_duration_min_def =
> +static const struct kobj_attribute timeslice_duration_min_def =
> __ATTR(timeslice_duration_min, 0444, timeslice_min_default, NULL);
>
> static ssize_t timeslice_max_default(struct kobject *kobj,
> @@ -318,7 +318,7 @@ static ssize_t timeslice_max_default(struct
> kobject *kobj,
> return sprintf(buf, "%u\n", eclass->defaults.timeslice_max);
> }
>
> -static struct kobj_attribute timeslice_duration_max_def =
> +static const struct kobj_attribute timeslice_duration_max_def =
> __ATTR(timeslice_duration_max, 0444, timeslice_max_default, NULL);
>
> static ssize_t preempt_timeout_store(struct kobject *kobj,
> @@ -351,7 +351,7 @@ static ssize_t preempt_timeout_show(struct
> kobject *kobj,
> return sprintf(buf, "%u\n", eclass-
> >sched_props.preempt_timeout_us);
> }
>
> -static struct kobj_attribute preempt_timeout_attr =
> +static const struct kobj_attribute preempt_timeout_attr =
> __ATTR(preempt_timeout_us, 0644, preempt_timeout_show,
> preempt_timeout_store);
>
> static ssize_t preempt_timeout_default(struct kobject *kobj,
> @@ -363,7 +363,7 @@ static ssize_t preempt_timeout_default(struct
> kobject *kobj,
> return sprintf(buf, "%u\n", eclass-
> >defaults.preempt_timeout_us);
> }
>
> -static struct kobj_attribute preempt_timeout_def =
> +static const struct kobj_attribute preempt_timeout_def =
> __ATTR(preempt_timeout_us, 0444, preempt_timeout_default, NULL);
>
> static ssize_t preempt_timeout_min_default(struct kobject *kobj,
> @@ -375,7 +375,7 @@ static ssize_t preempt_timeout_min_default(struct
> kobject *kobj,
> return sprintf(buf, "%u\n", eclass-
> >defaults.preempt_timeout_min);
> }
>
> -static struct kobj_attribute preempt_timeout_min_def =
> +static const struct kobj_attribute preempt_timeout_min_def =
> __ATTR(preempt_timeout_min, 0444, preempt_timeout_min_default,
> NULL);
>
> static ssize_t preempt_timeout_max_default(struct kobject *kobj,
> @@ -387,7 +387,7 @@ static ssize_t preempt_timeout_max_default(struct
> kobject *kobj,
> return sprintf(buf, "%u\n", eclass-
> >defaults.preempt_timeout_max);
> }
>
> -static struct kobj_attribute preempt_timeout_max_def =
> +static const struct kobj_attribute preempt_timeout_max_def =
> __ATTR(preempt_timeout_max, 0444, preempt_timeout_max_default,
> NULL);
>
> static ssize_t preempt_timeout_max_store(struct kobject *kobj,
> @@ -423,7 +423,7 @@ static ssize_t preempt_timeout_max_show(struct
> kobject *kobj,
> return sprintf(buf, "%u\n", eclass-
> >sched_props.preempt_timeout_max);
> }
>
> -static struct kobj_attribute preempt_timeout_max_attr =
> +static const struct kobj_attribute preempt_timeout_max_attr =
> __ATTR(preempt_timeout_max, 0644, preempt_timeout_max_show,
> preempt_timeout_max_store);
>
> @@ -460,7 +460,7 @@ static ssize_t preempt_timeout_min_show(struct
> kobject *kobj,
> return sprintf(buf, "%u\n", eclass-
> >sched_props.preempt_timeout_min);
> }
>
> -static struct kobj_attribute preempt_timeout_min_attr =
> +static const struct kobj_attribute preempt_timeout_min_attr =
> __ATTR(preempt_timeout_min, 0644, preempt_timeout_min_show,
> preempt_timeout_min_store);
>
> @@ -477,7 +477,7 @@ static const struct attribute *defaults[] = {
> NULL
> };
>
> -static const struct attribute *files[] = {
> +static const struct attribute * const files[] = {
> &job_timeout_attr.attr,
> &job_timeout_min_attr.attr,
> &job_timeout_max_attr.attr,
next prev parent reply other threads:[~2024-01-17 12:40 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-01-17 12:20 [PATCH 1/5] drm/xe: make xe_ttm_funcs const Jani Nikula
2024-01-17 12:20 ` [PATCH 2/5] drm/xe: make heci_gsc_irq_chip const Jani Nikula
2024-01-17 12:37 ` Thomas Hellström
2024-01-17 12:20 ` [PATCH 3/5] drm/xe: make hwmon_info const Jani Nikula
2024-01-17 12:38 ` Thomas Hellström
2024-01-17 12:20 ` [PATCH 4/5] drm/xe: make gpuvm_ops const Jani Nikula
2024-01-17 12:38 ` Thomas Hellström
2024-01-17 12:20 ` [PATCH 5/5] drm/xe: constify engine class sysfs attributes Jani Nikula
2024-01-17 12:39 ` Thomas Hellström [this message]
2024-01-17 12:36 ` [PATCH 1/5] drm/xe: make xe_ttm_funcs const Thomas Hellström
2024-01-17 14:56 ` ✓ CI.Patch_applied: success for series starting with [1/5] " Patchwork
2024-01-17 14:57 ` ✓ CI.checkpatch: " Patchwork
2024-01-17 14:58 ` ✓ CI.KUnit: " Patchwork
2024-01-17 15:05 ` ✓ CI.Build: " Patchwork
2024-01-17 15:05 ` ✓ CI.Hooks: " Patchwork
2024-01-17 15:06 ` ✓ CI.checksparse: " Patchwork
2024-01-17 15:32 ` ✗ CI.BAT: failure " 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=7316b3ea943c37eb70ee2d568f30c01627a78c12.camel@linux.intel.com \
--to=thomas.hellstrom@linux.intel.com \
--cc=intel-xe@lists.freedesktop.org \
--cc=jani.nikula@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