There are only 4 remaining kmallocs that don't have error handling in
btrfs.
fs/btrfs/inode.c +277 add_async_extent() 'async_extent'
async_extent = kmalloc(sizeof(*async_extent), GFP_NOFS);
async_extent->start = start;
fs/btrfs/inode.c +866 cow_file_range_async() 'async_cow'
async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
async_cow->inode = inode;
fs/btrfs/compression.c +355 btrfs_submit_compressed_write() 'cb'
cb = kmalloc(compressed_bio_size(root, compressed_len), GFP_NOFS);
atomic_set(&cb->pending_bios, 0);
fs/btrfs/compression.c +605 btrfs_submit_compressed_read() 'cb'
cb = kmalloc(compressed_bio_size(root, compressed_len), GFP_NOFS);
atomic_set(&cb->pending_bios, 0);
For this kernel release I'm fishing for reported by tags.
Reported-by: Dan Carpenter <error27@xxxxxxxxx>
regards,
dan carpenter
--
To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html