From: walter harms <wharms@bfs.de>
To: kernel-janitors@vger.kernel.org
Subject: Re: [patch] /lib/kobject.c
Date: Tue, 09 Mar 2010 17:35:27 +0000 [thread overview]
Message-ID: <4B9686DF.1090207@bfs.de> (raw)
In-Reply-To: <hn3pog$8co$1@dough.gmane.org>
Greg KH schrieb:
> On Mon, Mar 08, 2010 at 10:21:20PM +0100, Christophe Jaillet wrote:
>> From: Christophe Jaillet <christophe.jaillet@wanadoo.fr>
>>
>> Hi, here is a patch against /lib/kobject.c.
>>
>> No need to allocate more memory than usefull.
>> Here, we only need 12 (strlen("DEVPATH_OLD=")) + 1 (\0) extra bytes. This
>> saves 2 bytes !!! and improve readability IMO.
>
> Are you sure this really is even noticable anywhere? The memory is then
> freed, right? So no real memory savings happen here.
>
>>
>> Signed-off-by: Christophe Jaillet <christophe.jaillet@wanadoo.fr>
>>
>> ---
>>
>> diff --git a/lib/kobject.c b/lib/kobject.c
>> index 0487d1f..958cc76 100644
>> --- a/lib/kobject.c
>> +++ b/lib/kobject.c
>> @@ -412,7 +412,7 @@ int kobject_rename(struct kobject *kobj, const char
>> *new_name)
>> error = -ENOMEM;
>> goto out;
>
> Your patch is line-wrapped and the tabs converted to spaces, making it
> impossible to apply :(
>
>> }
>> - devpath_string = kmalloc(strlen(devpath) + 15, GFP_KERNEL);
>> + devpath_string = kmalloc(12 + strlen(devpath) + 1, GFP_KERNEL);
>> if (!devpath_string) {
>> error = -ENOMEM;
>> goto out;
>>
>>
this is actualy done:
sprintf(devpath_string, "DEVPATH_OLD=%s", devpath);
i have seen something that works like asprintf()
devpath_string = kasprintf(GFP_KERNEL,"DEVPATH_OLD=%s",devpath);
just put it in place of the kmalloc
The interessting question is:
can devpath be manipulated to be VERY large at some point ?
@julia:
i did not check but i can imagine that the pattern
A=kmalloc() ... sprintf(a," ",b);
come up at some points inside the kernel since a lot of programmers
do not know about asprint().
re,
wh
next prev parent reply other threads:[~2010-03-09 17:35 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-03-08 21:21 [patch] /lib/kobject.c Christophe Jaillet
2010-03-08 21:35 ` Greg KH
2010-03-09 17:35 ` walter harms [this message]
2010-03-09 18:12 ` Greg KH
2010-03-09 18:49 ` Julia Lawall
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=4B9686DF.1090207@bfs.de \
--to=wharms@bfs.de \
--cc=kernel-janitors@vger.kernel.org \
/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.