Commit df700802 authored by Tiwei Bie's avatar Tiwei Bie Committed by Johannes Berg
Browse files

um: ubd: Initialize ubd's disk pointer in ubd_add



Currently, the initialization of the disk pointer in the ubd structure
is missing. It should be initialized with the allocated gendisk pointer
in ubd_add().

Fixes: 32621ad7 ("ubd: remove the ubd_gendisk array")
Signed-off-by: default avatarTiwei Bie <tiwei.btw@antgroup.com>
Acked-By: default avatarAnton Ivanov <anton.ivanov@cambridgegreys.com>
Link: https://patch.msgid.link/20241104163203.435515-2-tiwei.btw@antgroup.com


Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
parent 1d4d0ef8
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -898,6 +898,8 @@ static int ubd_add(int n, char **error_out)
	if (err)
		goto out_cleanup_disk;

	ubd_dev->disk = disk;

	return 0;

out_cleanup_disk: