|
@@ -457,6 +457,14 @@ static int create_log_context(struct dm_dirty_log *log, struct dm_target *ti,
|
|
*/
|
|
*/
|
|
buf_size = dm_round_up((LOG_OFFSET << SECTOR_SHIFT) +
|
|
buf_size = dm_round_up((LOG_OFFSET << SECTOR_SHIFT) +
|
|
bitset_size, ti->limits.hardsect_size);
|
|
bitset_size, ti->limits.hardsect_size);
|
|
|
|
+
|
|
|
|
+ if (buf_size > dev->bdev->bd_inode->i_size) {
|
|
|
|
+ DMWARN("log device %s too small: need %llu bytes",
|
|
|
|
+ dev->name, (unsigned long long)buf_size);
|
|
|
|
+ kfree(lc);
|
|
|
|
+ return -EINVAL;
|
|
|
|
+ }
|
|
|
|
+
|
|
lc->header_location.count = buf_size >> SECTOR_SHIFT;
|
|
lc->header_location.count = buf_size >> SECTOR_SHIFT;
|
|
|
|
|
|
lc->io_req.mem.type = DM_IO_VMA;
|
|
lc->io_req.mem.type = DM_IO_VMA;
|