diff options
author | Kay Sievers <kay.sievers@vrfy.org> | 2007-08-14 09:15:12 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2007-10-12 17:51:01 -0400 |
commit | 7eff2e7a8b65c25920207324e56611150eb1cd9a (patch) | |
tree | 02a0eeba9d25d996233e30c18f258dfae0ae2139 /drivers/firmware | |
parent | 8380770c842faef3001e44662953d64ad9a93663 (diff) |
Driver core: change add_uevent_var to use a struct
This changes the uevent buffer functions to use a struct instead of a
long list of parameters. It does no longer require the caller to do the
proper buffer termination and size accounting, which is currently wrong
in some places. It fixes a known bug where parts of the uevent
environment are overwritten because of wrong index calculations.
Many thanks to Mathieu Desnoyers for finding bugs and improving the
error handling.
Signed-off-by: Kay Sievers <kay.sievers@vrfy.org>
Cc: Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
Cc: Cornelia Huck <cornelia.huck@de.ibm.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/firmware')
-rw-r--r-- | drivers/firmware/dmi-id.c | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/drivers/firmware/dmi-id.c b/drivers/firmware/dmi-id.c index 59c3b5aa89f4..2678098d4504 100644 --- a/drivers/firmware/dmi-id.c +++ b/drivers/firmware/dmi-id.c | |||
@@ -134,14 +134,17 @@ static struct attribute_group* sys_dmi_attribute_groups[] = { | |||
134 | NULL | 134 | NULL |
135 | }; | 135 | }; |
136 | 136 | ||
137 | static int dmi_dev_uevent(struct device *dev, char **envp, | 137 | static int dmi_dev_uevent(struct device *dev, struct kobj_uevent_env *env) |
138 | int num_envp, char *buffer, int buffer_size) | ||
139 | { | 138 | { |
140 | strcpy(buffer, "MODALIAS="); | 139 | ssize_t len; |
141 | get_modalias(buffer+9, buffer_size-9); | 140 | |
142 | envp[0] = buffer; | 141 | if (add_uevent_var(env, "MODALIAS=")) |
143 | envp[1] = NULL; | 142 | return -ENOMEM; |
144 | 143 | len = get_modalias(&env->buf[env->buflen - 1], | |
144 | sizeof(env->buf) - env->buflen); | ||
145 | if (len >= (sizeof(env->buf) - env->buflen)) | ||
146 | return -ENOMEM; | ||
147 | env->buflen += len; | ||
145 | return 0; | 148 | return 0; |
146 | } | 149 | } |
147 | 150 | ||