2024-02-04 16:37:56

by Ricardo B. Marliere

[permalink] [raw]
Subject: [PATCH] hv: vmbus: make hv_bus const

Now that the driver core can properly handle constant struct bus_type,
move the hv_bus 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 <[email protected]>
Suggested-by: Greg Kroah-Hartman <[email protected]>
Signed-off-by: Ricardo B. Marliere <[email protected]>
---
drivers/hv/vmbus_drv.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/hv/vmbus_drv.c b/drivers/hv/vmbus_drv.c
index edbb38f6956b..c4e6d9f1b510 100644
--- a/drivers/hv/vmbus_drv.c
+++ b/drivers/hv/vmbus_drv.c
@@ -988,7 +988,7 @@ static const struct dev_pm_ops vmbus_pm = {
};

/* The one and only one */
-static struct bus_type hv_bus = {
+static const struct bus_type hv_bus = {
.name = "vmbus",
.match = vmbus_match,
.shutdown = vmbus_shutdown,

---
base-commit: ce9ecca0238b140b88f43859b211c9fdfd8e5b70
change-id: 20240204-bus_cleanup-hv-2ca8a4603ebc

Best regards,
--
Ricardo B. Marliere <[email protected]>



2024-02-05 16:41:02

by Michael Kelley

[permalink] [raw]
Subject: RE: [PATCH] hv: vmbus: make hv_bus const

From: Ricardo B. Marliere <[email protected]> Sent: Sunday, February 4, 2024 8:38 AM
>

NIT: For consistency, we try to use "Drivers: hv: vmbus:" as the prefix on the
Subject line for patches to vmbus_drv.c.

Otherwise,

Reviewed-by: Michael Kelley <[email protected]>

> Now that the driver core can properly handle constant struct bus_type,
> move the hv_bus 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 <[email protected]>
> Suggested-by: Greg Kroah-Hartman <[email protected]>
> Signed-off-by: Ricardo B. Marliere <[email protected]>
> ---
> drivers/hv/vmbus_drv.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/hv/vmbus_drv.c b/drivers/hv/vmbus_drv.c
> index edbb38f6956b..c4e6d9f1b510 100644
> --- a/drivers/hv/vmbus_drv.c
> +++ b/drivers/hv/vmbus_drv.c
> @@ -988,7 +988,7 @@ static const struct dev_pm_ops vmbus_pm = {
> };
>
> /* The one and only one */
> -static struct bus_type hv_bus = {
> +static const struct bus_type hv_bus = {
> .name = "vmbus",
> .match = vmbus_match,
> .shutdown = vmbus_shutdown,
>
> ---
> base-commit: ce9ecca0238b140b88f43859b211c9fdfd8e5b70
> change-id: 20240204-bus_cleanup-hv-2ca8a4603ebc
>
> Best regards,
> --
> Ricardo B. Marliere <[email protected]>
>

2024-02-05 17:33:53

by Ricardo B. Marliere

[permalink] [raw]
Subject: Re: [PATCH] hv: vmbus: make hv_bus const

Hi Michael,

On 5 Feb 16:40, Michael Kelley wrote:
> From: Ricardo B. Marliere <[email protected]> Sent: Sunday, February 4, 2024 8:38 AM
> >
>
> NIT: For consistency, we try to use "Drivers: hv: vmbus:" as the prefix on the
> Subject line for patches to vmbus_drv.c.

Thanks for the feedback, I'll keep that in mind in the future. I looked
into a few commits using `git blame` and 'hv: ' seemed to be sufficient.

All the best,
- Ricardo.



>
> Otherwise,
>
> Reviewed-by: Michael Kelley <[email protected]>
>
> > Now that the driver core can properly handle constant struct bus_type,
> > move the hv_bus 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 <[email protected]>
> > Suggested-by: Greg Kroah-Hartman <[email protected]>
> > Signed-off-by: Ricardo B. Marliere <[email protected]>
> > ---
> > drivers/hv/vmbus_drv.c | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/drivers/hv/vmbus_drv.c b/drivers/hv/vmbus_drv.c
> > index edbb38f6956b..c4e6d9f1b510 100644
> > --- a/drivers/hv/vmbus_drv.c
> > +++ b/drivers/hv/vmbus_drv.c
> > @@ -988,7 +988,7 @@ static const struct dev_pm_ops vmbus_pm = {
> > };
> >
> > /* The one and only one */
> > -static struct bus_type hv_bus = {
> > +static const struct bus_type hv_bus = {
> > .name = "vmbus",
> > .match = vmbus_match,
> > .shutdown = vmbus_shutdown,
> >
> > ---
> > base-commit: ce9ecca0238b140b88f43859b211c9fdfd8e5b70
> > change-id: 20240204-bus_cleanup-hv-2ca8a4603ebc
> >
> > Best regards,
> > --
> > Ricardo B. Marliere <[email protected]>
> >
>

2024-02-05 19:59:02

by Greg KH

[permalink] [raw]
Subject: Re: [PATCH] hv: vmbus: make hv_bus const

On Sun, Feb 04, 2024 at 01:38:02PM -0300, Ricardo B. Marliere wrote:
> Now that the driver core can properly handle constant struct bus_type,
> move the hv_bus 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 <[email protected]>
> Suggested-by: Greg Kroah-Hartman <[email protected]>
> Signed-off-by: Ricardo B. Marliere <[email protected]>

Reviewed-by: Greg Kroah-Hartman <[email protected]>

2024-03-01 08:40:01

by Wei Liu

[permalink] [raw]
Subject: Re: [PATCH] hv: vmbus: make hv_bus const

On Mon, Feb 05, 2024 at 02:34:12PM -0300, Ricardo B. Marliere wrote:
> Hi Michael,
>
> On 5 Feb 16:40, Michael Kelley wrote:
> > From: Ricardo B. Marliere <[email protected]> Sent: Sunday, February 4, 2024 8:38 AM
> > >
> >
> > NIT: For consistency, we try to use "Drivers: hv: vmbus:" as the prefix on the
> > Subject line for patches to vmbus_drv.c.
>
> Thanks for the feedback, I'll keep that in mind in the future. I looked
> into a few commits using `git blame` and 'hv: ' seemed to be sufficient.
>

No worries. I fixed the title for you and applied the patch.

Thank you for the patch.

Wei.

> All the best,
> - Ricardo.