efi_driver: set DM_FLAG_NAME_ALLOCED flag
Set the DM_FLAG_NAME_ALLOCED flag to avoid a memory leak when the block device is removed. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Signed-off-by: Alexander Graf <agraf@suse.de>
This commit is contained in:
parent
1bfb1579be
commit
df76431b11
@ -161,6 +161,8 @@ static int efi_bl_bind(efi_handle_t handle, void *interface)
|
||||
return ret;
|
||||
if (!bdev)
|
||||
return -ENOENT;
|
||||
/* Set the DM_FLAG_NAME_ALLOCED flag to avoid a memory leak */
|
||||
device_set_name_alloced(bdev);
|
||||
/* Allocate priv */
|
||||
ret = device_probe(bdev);
|
||||
if (ret)
|
||||
|
Loading…
Reference in New Issue
Block a user