* [PATCH] w1: make w1_bus_type const
@ 2024-02-04 20:55 Ricardo B. Marliere
2024-02-05 7:34 ` Krzysztof Kozlowski
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Ricardo B. Marliere @ 2024-02-04 20:55 UTC (permalink / raw)
To: Krzysztof Kozlowski; +Cc: linux-kernel, Greg Kroah-Hartman, Ricardo B. Marliere
Now that the driver core can properly handle constant struct bus_type,
move the w1_bus_type variable to be a constant structure as well,
placing it into read-only memory which can not be modified at runtime.
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Suggested-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Ricardo B. Marliere <ricardo@marliere.net>
---
drivers/w1/w1.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/w1/w1.c b/drivers/w1/w1.c
index 5353cbd75126..afb1cc4606c5 100644
--- a/drivers/w1/w1.c
+++ b/drivers/w1/w1.c
@@ -167,7 +167,7 @@ static struct w1_family w1_default_family = {
static int w1_uevent(const struct device *dev, struct kobj_uevent_env *env);
-static struct bus_type w1_bus_type = {
+static const struct bus_type w1_bus_type = {
.name = "w1",
.uevent = w1_uevent,
};
---
base-commit: 41b9fb381a486360b2daaec0c7480f8e3ff72bc7
change-id: 20240204-bus_cleanup-w1-e46a15c8237f
Best regards,
--
Ricardo B. Marliere <ricardo@marliere.net>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] w1: make w1_bus_type const
2024-02-04 20:55 [PATCH] w1: make w1_bus_type const Ricardo B. Marliere
@ 2024-02-05 7:34 ` Krzysztof Kozlowski
2024-02-05 12:08 ` Ricardo B. Marliere
2024-02-05 12:30 ` Krzysztof Kozlowski
2024-02-05 12:46 ` Greg Kroah-Hartman
2 siblings, 1 reply; 7+ messages in thread
From: Krzysztof Kozlowski @ 2024-02-05 7:34 UTC (permalink / raw)
To: Ricardo B. Marliere; +Cc: linux-kernel, Greg Kroah-Hartman
On 04/02/2024 21:55, Ricardo B. Marliere wrote:
> Now that the driver core can properly handle constant struct bus_type,
Does "Now" means some dependency on other patches?
> move the w1_bus_type variable to be a constant structure as well,
> placing it into read-only memory which can not be modified at runtime.
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] w1: make w1_bus_type const
2024-02-05 7:34 ` Krzysztof Kozlowski
@ 2024-02-05 12:08 ` Ricardo B. Marliere
2024-02-05 19:08 ` Greg Kroah-Hartman
0 siblings, 1 reply; 7+ messages in thread
From: Ricardo B. Marliere @ 2024-02-05 12:08 UTC (permalink / raw)
To: Krzysztof Kozlowski; +Cc: linux-kernel, Greg Kroah-Hartman
On 5 Feb 08:34, Krzysztof Kozlowski wrote:
> On 04/02/2024 21:55, Ricardo B. Marliere wrote:
> > Now that the driver core can properly handle constant struct bus_type,
>
> Does "Now" means some dependency on other patches?
Hi Krzysztof!
Please check:
https://lore.kernel.org/all/1305850262-9575-5-git-send-email-gregkh@suse.de/
You can apply as is.
Thanks for reviewing,
- Ricardo
>
> > move the w1_bus_type variable to be a constant structure as well,
> > placing it into read-only memory which can not be modified at runtime.
>
> Best regards,
> Krzysztof
>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] w1: make w1_bus_type const
2024-02-04 20:55 [PATCH] w1: make w1_bus_type const Ricardo B. Marliere
2024-02-05 7:34 ` Krzysztof Kozlowski
@ 2024-02-05 12:30 ` Krzysztof Kozlowski
2024-02-05 12:46 ` Greg Kroah-Hartman
2 siblings, 0 replies; 7+ messages in thread
From: Krzysztof Kozlowski @ 2024-02-05 12:30 UTC (permalink / raw)
To: Ricardo B. Marliere; +Cc: linux-kernel, Greg Kroah-Hartman
On Sun, 04 Feb 2024 17:55:22 -0300, Ricardo B. Marliere wrote:
> Now that the driver core can properly handle constant struct bus_type,
> move the w1_bus_type variable to be a constant structure as well,
> placing it into read-only memory which can not be modified at runtime.
>
>
Applied, thanks!
[1/1] w1: make w1_bus_type const
https://git.kernel.org/krzk/linux-w1/c/8650843ca42a7fd8255f4dcddbaa20393e01fe11
Best regards,
--
Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] w1: make w1_bus_type const
2024-02-04 20:55 [PATCH] w1: make w1_bus_type const Ricardo B. Marliere
2024-02-05 7:34 ` Krzysztof Kozlowski
2024-02-05 12:30 ` Krzysztof Kozlowski
@ 2024-02-05 12:46 ` Greg Kroah-Hartman
2 siblings, 0 replies; 7+ messages in thread
From: Greg Kroah-Hartman @ 2024-02-05 12:46 UTC (permalink / raw)
To: Ricardo B. Marliere; +Cc: Krzysztof Kozlowski, linux-kernel
On Sun, Feb 04, 2024 at 05:55:22PM -0300, Ricardo B. Marliere wrote:
> Now that the driver core can properly handle constant struct bus_type,
> move the w1_bus_type variable to be a constant structure as well,
> placing it into read-only memory which can not be modified at runtime.
>
> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> Suggested-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> Signed-off-by: Ricardo B. Marliere <ricardo@marliere.net>
> ---
> drivers/w1/w1.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] w1: make w1_bus_type const
2024-02-05 12:08 ` Ricardo B. Marliere
@ 2024-02-05 19:08 ` Greg Kroah-Hartman
2024-02-05 20:12 ` Ricardo B. Marliere
0 siblings, 1 reply; 7+ messages in thread
From: Greg Kroah-Hartman @ 2024-02-05 19:08 UTC (permalink / raw)
To: Ricardo B. Marliere; +Cc: Krzysztof Kozlowski, linux-kernel
On Mon, Feb 05, 2024 at 09:08:20AM -0300, Ricardo B. Marliere wrote:
> On 5 Feb 08:34, Krzysztof Kozlowski wrote:
> > On 04/02/2024 21:55, Ricardo B. Marliere wrote:
> > > Now that the driver core can properly handle constant struct bus_type,
> >
> > Does "Now" means some dependency on other patches?
>
> Hi Krzysztof!
>
> Please check:
> https://lore.kernel.org/all/1305850262-9575-5-git-send-email-gregkh@suse.de/
Sorry, no, that is for device_type, not bus_type. bus_type didn't
become able to be const until 6.4 or so.
thanks,
greg k-h
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] w1: make w1_bus_type const
2024-02-05 19:08 ` Greg Kroah-Hartman
@ 2024-02-05 20:12 ` Ricardo B. Marliere
0 siblings, 0 replies; 7+ messages in thread
From: Ricardo B. Marliere @ 2024-02-05 20:12 UTC (permalink / raw)
To: Greg Kroah-Hartman; +Cc: Krzysztof Kozlowski, linux-kernel
On 5 Feb 19:08, Greg Kroah-Hartman wrote:
> On Mon, Feb 05, 2024 at 09:08:20AM -0300, Ricardo B. Marliere wrote:
> > On 5 Feb 08:34, Krzysztof Kozlowski wrote:
> > > On 04/02/2024 21:55, Ricardo B. Marliere wrote:
> > > > Now that the driver core can properly handle constant struct bus_type,
> > >
> > > Does "Now" means some dependency on other patches?
> >
> > Hi Krzysztof!
> >
> > Please check:
> > https://lore.kernel.org/all/1305850262-9575-5-git-send-email-gregkh@suse.de/
>
> Sorry, no, that is for device_type, not bus_type. bus_type didn't
> become able to be const until 6.4 or so.
Ah yes, sorry. The correct link should be:
https://lore.kernel.org/all/20230313182918.1312597-35-gregkh@linuxfoundation.org/
>
> thanks,
>
> greg k-h
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-02-05 20:12 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-02-04 20:55 [PATCH] w1: make w1_bus_type const Ricardo B. Marliere
2024-02-05 7:34 ` Krzysztof Kozlowski
2024-02-05 12:08 ` Ricardo B. Marliere
2024-02-05 19:08 ` Greg Kroah-Hartman
2024-02-05 20:12 ` Ricardo B. Marliere
2024-02-05 12:30 ` Krzysztof Kozlowski
2024-02-05 12:46 ` Greg Kroah-Hartman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®