1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-03-08 08:58:50 +03:00

device_mapper: keep bigger size for most ioctls

Actually the idea was to keep 2K ioctl only for certain command,
so keep 16 for them.
This commit is contained in:
Zdenek Kabelac 2021-03-09 14:58:09 +01:00
parent d2a3bfe6ca
commit b2616cd456

View File

@ -1140,12 +1140,12 @@ static struct dm_ioctl *_flatten(struct dm_task *dmt, unsigned repeat_count)
switch (dmt->type) {
case DM_DEVICE_CREATE:
case DM_DEVICE_DEPS:
case DM_DEVICE_INFO:
case DM_DEVICE_LIST:
case DM_DEVICE_STATUS:
case DM_DEVICE_TABLE:
case DM_DEVICE_TARGET_MSG:
min_size = 16 * 1024;
break;
default:
min_size = 2 * 1024;
}