* Re: + tty-trivial-kzalloc-opportunity.patch added to -mm tree
[not found] <200608162142.k7GLgMYB013117@shell0.pdx.osdl.net>
@ 2006-08-16 21:53 ` Jesper Juhl
2006-08-17 0:29 ` Alan Cox
0 siblings, 1 reply; 2+ messages in thread
From: Jesper Juhl @ 2006-08-16 21:53 UTC (permalink / raw)
To: linux-kernel; +Cc: mm-commits, alan, alan
On 16/08/06, akpm@osdl.org <akpm@osdl.org> wrote:
>
> The patch titled
>
> tty: trivial kzalloc opportunity
>
> has been added to the -mm tree. Its filename is
>
> tty-trivial-kzalloc-opportunity.patch
>
> See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find
> out what to do about this
>
> ------------------------------------------------------
> Subject: tty: trivial kzalloc opportunity
> From: Alan Cox <alan@lxorguk.ukuu.org.uk>
>
> Signed-off-by: Alan Cox <alan@redhat.com>
> Signed-off-by: Andrew Morton <akpm@osdl.org>
> ---
>
> drivers/char/tty_io.c | 8 +-------
> 1 files changed, 1 insertion(+), 7 deletions(-)
>
> diff -puN drivers/char/tty_io.c~tty-trivial-kzalloc-opportunity drivers/char/tty_io.c
> --- a/drivers/char/tty_io.c~tty-trivial-kzalloc-opportunity
> +++ a/drivers/char/tty_io.c
> @@ -160,17 +160,11 @@ static void release_mem(struct tty_struc
> * been initialized in any way but has been zeroed
> *
> * Locking: none
> - * FIXME: use kzalloc
> */
>
> static struct tty_struct *alloc_tty_struct(void)
> {
> - struct tty_struct *tty;
> -
> - tty = kmalloc(sizeof(struct tty_struct), GFP_KERNEL);
> - if (tty)
> - memset(tty, 0, sizeof(struct tty_struct));
> - return tty;
> + return (struct tty_struct *)kzalloc(sizeof(struct tty_struct), GFP_KERNEL);
> }
Let's get rid of the typecast - eh?
Might as well also make the function inline given that all that's left
of it is a single call to kzalloc() - and why not simply replace all
calls to this function with a call to kzalloc()?
--
Jesper Juhl <jesper.juhl@gmail.com>
Don't top-post http://www.catb.org/~esr/jargon/html/T/top-post.html
Plain text mails only, please http://www.expita.com/nomime.html
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: + tty-trivial-kzalloc-opportunity.patch added to -mm tree
2006-08-16 21:53 ` + tty-trivial-kzalloc-opportunity.patch added to -mm tree Jesper Juhl
@ 2006-08-17 0:29 ` Alan Cox
0 siblings, 0 replies; 2+ messages in thread
From: Alan Cox @ 2006-08-17 0:29 UTC (permalink / raw)
To: Jesper Juhl; +Cc: linux-kernel, mm-commits, alan
Ar Mer, 2006-08-16 am 23:53 +0200, ysgrifennodd Jesper Juhl:
> Let's get rid of the typecast - eh?
Sure
> Might as well also make the function inline given that all that's left
> of it is a single call to kzalloc() - and why not simply replace all
> calls to this function with a call to kzalloc()?
Because it will do other stuff in future, and because it has a free
function so the pairing is natural as an API.
Alan
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2006-08-17 0:09 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
[not found] <200608162142.k7GLgMYB013117@shell0.pdx.osdl.net>
2006-08-16 21:53 ` + tty-trivial-kzalloc-opportunity.patch added to -mm tree Jesper Juhl
2006-08-17 0:29 ` Alan Cox
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®