* [PATCH 1/3] kobject: Add a jump label in kobject_uevent_env()
2023-12-19 15:30 [PATCH 0/3] kobject: Adjustments for kobject_uevent_env() Markus Elfring
@ 2023-12-19 15:32 ` Markus Elfring
2023-12-19 15:34 ` [PATCH 2/3] kobject: Improve a size determination " Markus Elfring
2023-12-19 15:36 ` [PATCH 3/3] kobject: Delete an unnecessary variable initialisation " Markus Elfring
2 siblings, 0 replies; 5+ messages in thread
From: Markus Elfring @ 2023-12-19 15:32 UTC (permalink / raw)
To: kernel-janitors, Andrew Morton, Greg Kroah-Hartman,
Rafael J. Wysocki
Cc: LKML, cocci
From: Markus Elfring <elfring@users.sourceforge.net>
Date: Tue, 19 Dec 2023 14:16:35 +0100
Use another label so that a call of the function “kfree” can be avoided
after a failed call of the function “kobject_get_path”.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
---
lib/kobject_uevent.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/lib/kobject_uevent.c b/lib/kobject_uevent.c
index fb9a2f06dd1e..811e579ed89d 100644
--- a/lib/kobject_uevent.c
+++ b/lib/kobject_uevent.c
@@ -529,7 +529,7 @@ int kobject_uevent_env(struct kobject *kobj, enum kobject_action action,
devpath = kobject_get_path(kobj, GFP_KERNEL);
if (!devpath) {
retval = -ENOENT;
- goto exit;
+ goto free_env;
}
/* default keys */
@@ -623,6 +623,7 @@ int kobject_uevent_env(struct kobject *kobj, enum kobject_action action,
exit:
kfree(devpath);
+free_env:
kfree(env);
return retval;
}
--
2.43.0
^ permalink raw reply related [flat|nested] 5+ messages in thread* [PATCH 2/3] kobject: Improve a size determination in kobject_uevent_env()
2023-12-19 15:30 [PATCH 0/3] kobject: Adjustments for kobject_uevent_env() Markus Elfring
2023-12-19 15:32 ` [PATCH 1/3] kobject: Add a jump label in kobject_uevent_env() Markus Elfring
@ 2023-12-19 15:34 ` Markus Elfring
2023-12-19 15:40 ` Greg Kroah-Hartman
2023-12-19 15:36 ` [PATCH 3/3] kobject: Delete an unnecessary variable initialisation " Markus Elfring
2 siblings, 1 reply; 5+ messages in thread
From: Markus Elfring @ 2023-12-19 15:34 UTC (permalink / raw)
To: kernel-janitors, Andrew Morton, Greg Kroah-Hartman,
Rafael J. Wysocki
Cc: LKML, cocci
From: Markus Elfring <elfring@users.sourceforge.net>
Date: Tue, 19 Dec 2023 16:00:22 +0100
Replace the specification of a data structure by a pointer dereference
as the parameter for the operator "sizeof" to make the corresponding size
determination a bit safer according to the Linux coding style convention.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
---
lib/kobject_uevent.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/kobject_uevent.c b/lib/kobject_uevent.c
index 811e579ed89d..a9b1bc02f65c 100644
--- a/lib/kobject_uevent.c
+++ b/lib/kobject_uevent.c
@@ -521,7 +521,7 @@ int kobject_uevent_env(struct kobject *kobj, enum kobject_action action,
}
/* environment buffer */
- env = kzalloc(sizeof(struct kobj_uevent_env), GFP_KERNEL);
+ env = kzalloc(sizeof(*env), GFP_KERNEL);
if (!env)
return -ENOMEM;
--
2.43.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH 2/3] kobject: Improve a size determination in kobject_uevent_env()
2023-12-19 15:34 ` [PATCH 2/3] kobject: Improve a size determination " Markus Elfring
@ 2023-12-19 15:40 ` Greg Kroah-Hartman
0 siblings, 0 replies; 5+ messages in thread
From: Greg Kroah-Hartman @ 2023-12-19 15:40 UTC (permalink / raw)
To: Markus Elfring
Cc: kernel-janitors, Andrew Morton, Rafael J. Wysocki, LKML, cocci
On Tue, Dec 19, 2023 at 04:34:19PM +0100, Markus Elfring wrote:
> From: Markus Elfring <elfring@users.sourceforge.net>
> Date: Tue, 19 Dec 2023 16:00:22 +0100
>
> Replace the specification of a data structure by a pointer dereference
> as the parameter for the operator "sizeof" to make the corresponding size
> determination a bit safer according to the Linux coding style convention.
>
> Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Sorry, but for obvious reasons, I'm still not taking patches from you.
best of luck,
greg k-h
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 3/3] kobject: Delete an unnecessary variable initialisation in kobject_uevent_env()
2023-12-19 15:30 [PATCH 0/3] kobject: Adjustments for kobject_uevent_env() Markus Elfring
2023-12-19 15:32 ` [PATCH 1/3] kobject: Add a jump label in kobject_uevent_env() Markus Elfring
2023-12-19 15:34 ` [PATCH 2/3] kobject: Improve a size determination " Markus Elfring
@ 2023-12-19 15:36 ` Markus Elfring
2 siblings, 0 replies; 5+ messages in thread
From: Markus Elfring @ 2023-12-19 15:36 UTC (permalink / raw)
To: kernel-janitors, Andrew Morton, Greg Kroah-Hartman,
Rafael J. Wysocki
Cc: LKML, cocci
From: Markus Elfring <elfring@users.sourceforge.net>
Date: Tue, 19 Dec 2023 16:03:39 +0100
The local variable “devpath” will eventually be set to an appropriate
pointer a bit later.
Thus omit the explicit initialisation at the beginning.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
---
lib/kobject_uevent.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/kobject_uevent.c b/lib/kobject_uevent.c
index a9b1bc02f65c..1b7b42dc160c 100644
--- a/lib/kobject_uevent.c
+++ b/lib/kobject_uevent.c
@@ -459,7 +459,7 @@ int kobject_uevent_env(struct kobject *kobj, enum kobject_action action,
{
struct kobj_uevent_env *env;
const char *action_string = kobject_actions[action];
- const char *devpath = NULL;
+ const char *devpath;
const char *subsystem;
struct kobject *top_kobj;
struct kset *kset;
--
2.43.0
^ permalink raw reply related [flat|nested] 5+ messages in thread