Hi: Haiwei Li <lihaiwei.kernel@xxxxxxxxx> wrote: > From: Haiwei Li <lihaiwei@xxxxxxxxxxx> > > If 'kvm_create_vm_debugfs()' fails in 'kzalloc(sizeof(*stat_data), ...)', 'kvm_destroy_vm_debugfs()' will be called by the final fput(file) in 'kvm_dev_ioctl_create_vm()'. > > Add the check and free to avoid unknown errors. Add the check and free? According to the code,it seem what you mean is "add the check against free" ? > > Signed-off-by: Haiwei Li <lihaiwei@xxxxxxxxxxx> > > if (kvm->debugfs_stat_data) { > - for (i = 0; i < kvm_debugfs_num_entries; i++) > + for (i = 0; i < kvm_debugfs_num_entries; i++) { > + if (!kvm->debugfs_stat_data[i]) > + break; > kfree(kvm->debugfs_stat_data[i]); > + } > kfree(kvm->debugfs_stat_data); > } > } If (!kvm->debugfs_stat_data[i]) is checked in kfree() internal. And break early seems have no different effect. Could you please explain what unknown errors may occur? And how? Thanks.