All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jani Nikula <jani.nikula@linux.intel.com>
To: "Thomas Weißschuh" <linux@weissschuh.net>,
	"Joonas Lahtinen" <joonas.lahtinen@linux.intel.com>,
	"Rodrigo Vivi" <rodrigo.vivi@intel.com>,
	"Tvrtko Ursulin" <tvrtko.ursulin@linux.intel.com>,
	"David Airlie" <airlied@gmail.com>,
	"Daniel Vetter" <daniel@ffwll.ch>
Cc: intel-gfx@lists.freedesktop.org, linux-kernel@vger.kernel.org,
	dri-devel@lists.freedesktop.org,
	"Thomas Weißschuh" <linux@weissschuh.net>
Subject: Re: [Intel-gfx] [PATCH] drm/i915: Make kobj_type structures constant
Date: Fri, 17 Feb 2023 11:58:08 +0200	[thread overview]
Message-ID: <877cwgzk9b.fsf@intel.com> (raw)
In-Reply-To: <87sff5293w.fsf@intel.com>

On Thu, 16 Feb 2023, Jani Nikula <jani.nikula@linux.intel.com> wrote:
> On Thu, 16 Feb 2023, Thomas Weißschuh <linux@weissschuh.net> wrote:
>> Since commit ee6d3dd4ed48 ("driver core: make kobj_type constant.")
>> the driver core allows the usage of const struct kobj_type.
>>
>> Take advantage of this to constify the structure definitions to prevent
>> modification at runtime.
>>
>> Signed-off-by: Thomas Weißschuh <linux@weissschuh.net>
>
> Reviewed-by: Jani Nikula <jani.nikula@intel.com>

And pushed to drm-intel-gt-next, thanks for the patch.

BR,
Jani.

>
>> ---
>>  drivers/gpu/drm/i915/gt/intel_gt_sysfs.c | 2 +-
>>  drivers/gpu/drm/i915/gt/sysfs_engines.c  | 2 +-
>>  2 files changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/i915/gt/intel_gt_sysfs.c b/drivers/gpu/drm/i915/gt/intel_gt_sysfs.c
>> index 9486dd3bed99..df15b17caf89 100644
>> --- a/drivers/gpu/drm/i915/gt/intel_gt_sysfs.c
>> +++ b/drivers/gpu/drm/i915/gt/intel_gt_sysfs.c
>> @@ -71,7 +71,7 @@ static void kobj_gt_release(struct kobject *kobj)
>>  {
>>  }
>>  
>> -static struct kobj_type kobj_gt_type = {
>> +static const struct kobj_type kobj_gt_type = {
>>  	.release = kobj_gt_release,
>>  	.sysfs_ops = &kobj_sysfs_ops,
>>  	.default_groups = id_groups,
>> diff --git a/drivers/gpu/drm/i915/gt/sysfs_engines.c b/drivers/gpu/drm/i915/gt/sysfs_engines.c
>> index f2d9858d827c..b5e0fe5dbf6c 100644
>> --- a/drivers/gpu/drm/i915/gt/sysfs_engines.c
>> +++ b/drivers/gpu/drm/i915/gt/sysfs_engines.c
>> @@ -421,7 +421,7 @@ static void kobj_engine_release(struct kobject *kobj)
>>  	kfree(kobj);
>>  }
>>  
>> -static struct kobj_type kobj_engine_type = {
>> +static const struct kobj_type kobj_engine_type = {
>>  	.release = kobj_engine_release,
>>  	.sysfs_ops = &kobj_sysfs_ops
>>  };
>>
>> ---
>> base-commit: 033c40a89f55525139fd5b6342281b09b97d05bf
>> change-id: 20230216-kobj_type-i915-886bebc36129
>>
>> Best regards,

-- 
Jani Nikula, Intel Open Source Graphics Center

WARNING: multiple messages have this Message-ID (diff)
From: Jani Nikula <jani.nikula@linux.intel.com>
To: "Thomas Weißschuh" <linux@weissschuh.net>,
	"Joonas Lahtinen" <joonas.lahtinen@linux.intel.com>,
	"Rodrigo Vivi" <rodrigo.vivi@intel.com>,
	"Tvrtko Ursulin" <tvrtko.ursulin@linux.intel.com>,
	"David Airlie" <airlied@gmail.com>,
	"Daniel Vetter" <daniel@ffwll.ch>
Cc: intel-gfx@lists.freedesktop.org, linux-kernel@vger.kernel.org,
	dri-devel@lists.freedesktop.org,
	"Thomas Weißschuh" <linux@weissschuh.net>
Subject: Re: [PATCH] drm/i915: Make kobj_type structures constant
Date: Fri, 17 Feb 2023 11:58:08 +0200	[thread overview]
Message-ID: <877cwgzk9b.fsf@intel.com> (raw)
In-Reply-To: <87sff5293w.fsf@intel.com>

On Thu, 16 Feb 2023, Jani Nikula <jani.nikula@linux.intel.com> wrote:
> On Thu, 16 Feb 2023, Thomas Weißschuh <linux@weissschuh.net> wrote:
>> Since commit ee6d3dd4ed48 ("driver core: make kobj_type constant.")
>> the driver core allows the usage of const struct kobj_type.
>>
>> Take advantage of this to constify the structure definitions to prevent
>> modification at runtime.
>>
>> Signed-off-by: Thomas Weißschuh <linux@weissschuh.net>
>
> Reviewed-by: Jani Nikula <jani.nikula@intel.com>

And pushed to drm-intel-gt-next, thanks for the patch.

BR,
Jani.

>
>> ---
>>  drivers/gpu/drm/i915/gt/intel_gt_sysfs.c | 2 +-
>>  drivers/gpu/drm/i915/gt/sysfs_engines.c  | 2 +-
>>  2 files changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/i915/gt/intel_gt_sysfs.c b/drivers/gpu/drm/i915/gt/intel_gt_sysfs.c
>> index 9486dd3bed99..df15b17caf89 100644
>> --- a/drivers/gpu/drm/i915/gt/intel_gt_sysfs.c
>> +++ b/drivers/gpu/drm/i915/gt/intel_gt_sysfs.c
>> @@ -71,7 +71,7 @@ static void kobj_gt_release(struct kobject *kobj)
>>  {
>>  }
>>  
>> -static struct kobj_type kobj_gt_type = {
>> +static const struct kobj_type kobj_gt_type = {
>>  	.release = kobj_gt_release,
>>  	.sysfs_ops = &kobj_sysfs_ops,
>>  	.default_groups = id_groups,
>> diff --git a/drivers/gpu/drm/i915/gt/sysfs_engines.c b/drivers/gpu/drm/i915/gt/sysfs_engines.c
>> index f2d9858d827c..b5e0fe5dbf6c 100644
>> --- a/drivers/gpu/drm/i915/gt/sysfs_engines.c
>> +++ b/drivers/gpu/drm/i915/gt/sysfs_engines.c
>> @@ -421,7 +421,7 @@ static void kobj_engine_release(struct kobject *kobj)
>>  	kfree(kobj);
>>  }
>>  
>> -static struct kobj_type kobj_engine_type = {
>> +static const struct kobj_type kobj_engine_type = {
>>  	.release = kobj_engine_release,
>>  	.sysfs_ops = &kobj_sysfs_ops
>>  };
>>
>> ---
>> base-commit: 033c40a89f55525139fd5b6342281b09b97d05bf
>> change-id: 20230216-kobj_type-i915-886bebc36129
>>
>> Best regards,

-- 
Jani Nikula, Intel Open Source Graphics Center

  reply	other threads:[~2023-02-17  9:58 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-02-16  1:05 [Intel-gfx] [PATCH] drm/i915: Make kobj_type structures constant Thomas Weißschuh
2023-02-16  1:05 ` Thomas Weißschuh
2023-02-16  1:05 ` Thomas Weißschuh
2023-02-16 10:33 ` [Intel-gfx] " Jani Nikula
2023-02-16 10:33   ` Jani Nikula
2023-02-16 10:33   ` Jani Nikula
2023-02-17  9:58   ` Jani Nikula [this message]
2023-02-17  9:58     ` Jani Nikula
2023-02-16 17:00 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for " Patchwork
2023-02-16 21:19 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Make kobj_type structures constant (rev2) Patchwork
2023-02-17  9:29 ` [Intel-gfx] ✗ Fi.CI.IGT: 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=877cwgzk9b.fsf@intel.com \
    --to=jani.nikula@linux.intel.com \
    --cc=airlied@gmail.com \
    --cc=daniel@ffwll.ch \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=joonas.lahtinen@linux.intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux@weissschuh.net \
    --cc=rodrigo.vivi@intel.com \
    --cc=tvrtko.ursulin@linux.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 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.