aboutsummaryrefslogtreecommitdiffstats
path: root/fs/btrfs/inode.c
diff options
context:
space:
mode:
authorTsutomu Itoh <t-itoh@jp.fujitsu.com>2011-04-25 19:43:52 -0400
committerChris Mason <chris.mason@oracle.com>2011-04-25 19:43:52 -0400
commit8d413713ca744fa00cf4e05d4054d80727b84789 (patch)
treedf29b480d83806cd4e85508ac676eb69323ddc79 /fs/btrfs/inode.c
parent43e817a1fdda17f3357602ed7964c248c8c53ae0 (diff)
Btrfs: check return value of kmalloc()
The check on the return value of kmalloc() is added to some places. Signed-off-by: Tsutomu Itoh <t-itoh@jp.fujitsu.com> Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs/btrfs/inode.c')
-rw-r--r--fs/btrfs/inode.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c
index a4157cfdd533..c718d274a352 100644
--- a/fs/btrfs/inode.c
+++ b/fs/btrfs/inode.c
@@ -953,6 +953,7 @@ static int cow_file_range_async(struct inode *inode, struct page *locked_page,
953 1, 0, NULL, GFP_NOFS); 953 1, 0, NULL, GFP_NOFS);
954 while (start < end) { 954 while (start < end) {
955 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS); 955 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
956 BUG_ON(!async_cow);
956 async_cow->inode = inode; 957 async_cow->inode = inode;
957 async_cow->root = root; 958 async_cow->root = root;
958 async_cow->locked_page = locked_page; 959 async_cow->locked_page = locked_page;
@@ -5001,6 +5002,8 @@ static noinline int uncompress_inline(struct btrfs_path *path,
5001 inline_size = btrfs_file_extent_inline_item_len(leaf, 5002 inline_size = btrfs_file_extent_inline_item_len(leaf,
5002 btrfs_item_nr(leaf, path->slots[0])); 5003 btrfs_item_nr(leaf, path->slots[0]));
5003 tmp = kmalloc(inline_size, GFP_NOFS); 5004 tmp = kmalloc(inline_size, GFP_NOFS);
5005 if (!tmp)
5006 return -ENOMEM;
5004 ptr = btrfs_file_extent_inline_start(item); 5007 ptr = btrfs_file_extent_inline_start(item);
5005 5008
5006 read_extent_buffer(leaf, tmp, ptr, inline_size); 5009 read_extent_buffer(leaf, tmp, ptr, inline_size);