dm writecache: fix the maximum number of arguments

Advance the maximum number of arguments to 16.
This fixes issue where certain operations, combined with table
configured args, exceed 10 arguments.

Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
Fixes: 48debafe4f ("dm: add writecache target")
Cc: stable@vger.kernel.org # v4.18+
Signed-off-by: Mike Snitzer <snitzer@redhat.com>
This commit is contained in:
Mikulas Patocka 2020-11-10 07:45:13 -05:00 коммит произвёл Mike Snitzer
Родитель e5d41cbca1
Коммит 67aa3ec3db
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -2041,7 +2041,7 @@ static int writecache_ctr(struct dm_target *ti, unsigned argc, char **argv)
struct wc_memory_superblock s; struct wc_memory_superblock s;
static struct dm_arg _args[] = { static struct dm_arg _args[] = {
{0, 10, "Invalid number of feature args"}, {0, 16, "Invalid number of feature args"},
}; };
as.argc = argc; as.argc = argc;