[PATCH] tty: trivial kzalloc opportunity
Signed-off-by: Alan Cox <alan@redhat.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
0b4a8a789a
commit
1266b1e1ae
1 changed files with 1 additions and 7 deletions
|
@ -160,17 +160,11 @@ static void release_mem(struct tty_struct *tty, int idx);
|
||||||
* been initialized in any way but has been zeroed
|
* been initialized in any way but has been zeroed
|
||||||
*
|
*
|
||||||
* Locking: none
|
* Locking: none
|
||||||
* FIXME: use kzalloc
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static struct tty_struct *alloc_tty_struct(void)
|
static struct tty_struct *alloc_tty_struct(void)
|
||||||
{
|
{
|
||||||
struct tty_struct *tty;
|
return kzalloc(sizeof(struct tty_struct), GFP_KERNEL);
|
||||||
|
|
||||||
tty = kmalloc(sizeof(struct tty_struct), GFP_KERNEL);
|
|
||||||
if (tty)
|
|
||||||
memset(tty, 0, sizeof(struct tty_struct));
|
|
||||||
return tty;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void tty_buffer_free_all(struct tty_struct *);
|
static void tty_buffer_free_all(struct tty_struct *);
|
||||||
|
|
Loading…
Reference in a new issue