search for: 973010

Displaying 1 result from an estimated 1 matches for "973010".

Did you mean: 373010
2015 Jan 02
0
[PATCH 2/2] virtio: don't free memory until the underlying struct device has been released
When releasing a virtio device, We can't free a struct virtio_device until the underlying struct device has been released, which might not happen immediately on device_unregister() even if that was the device's last reference. Instead, free the memory only once we know the device is gone in the release callback. Signed-off-by: Sasha Levin <sasha.levin at oracle.com> ---