diff options
Diffstat (limited to 'fs/pipe.c')
-rw-r--r-- | fs/pipe.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -662,10 +662,9 @@ struct inode* pipe_new(struct inode* inode) | |||
662 | { | 662 | { |
663 | struct pipe_inode_info *info; | 663 | struct pipe_inode_info *info; |
664 | 664 | ||
665 | info = kmalloc(sizeof(struct pipe_inode_info), GFP_KERNEL); | 665 | info = kzalloc(sizeof(struct pipe_inode_info), GFP_KERNEL); |
666 | if (!info) | 666 | if (!info) |
667 | goto fail_page; | 667 | goto fail_page; |
668 | memset(info, 0, sizeof(*info)); | ||
669 | inode->i_pipe = info; | 668 | inode->i_pipe = info; |
670 | 669 | ||
671 | init_waitqueue_head(PIPE_WAIT(*inode)); | 670 | init_waitqueue_head(PIPE_WAIT(*inode)); |