On Tue, 9 Feb 2021 16:57:05 +0100 Thomas Huth <thuth@xxxxxxxxxx> wrote: > sizeof(somepointer) results in the size of the pointer, i.e. 8 on a > 64-bit system, so the > > memcmp(data->ext_names[0], vm_name_ext, sizeof(vm_name_ext)) > > only compared the first 8 characters of the VM name here. Switch > to a proper array to get the sizeof() right. > > Signed-off-by: Thomas Huth <thuth@xxxxxxxxxx> > --- > s390x/stsi.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Reviewed-by: Cornelia Huck <cohuck@xxxxxxxxxx>