— Months In The Making, The “Schmidtcast,” A 7-Part Series Featuring Podcaster Marica Sharashenidze Interviewing Me About My Legal Career “American Immigration From Mariel to Miller” — Tune In Now! Why Legal Representation Is Essential To Due Process For Asylum Seekers (In Fewer Than ...
Signed-off-by: Stefan Hajnoczi <stefa...@redhat.com> Commit: 69bef7931e8880c709556f8444938d8bb9a16118https://github.com/qemu/qemu/commit/69bef7931e8880c709556f8444938d8bb9a16118Author: Amit Shah <amit.s...@redhat.com> Date: 2014-02-28 (Fri, 28 Feb 2014) Changed paths: M block...
as unavailable, removes all the buffers in the vqs and removes the port from the per-device list of ports. The second stage, invoked when all references drop to zero, releases the chardev and frees all other memory. Signed-off-by: Amit Shah <amit.s...@redhat.com> --- drivers/char/v...
@@ -1081,14 +1081,20 @@ static int add_port(struct ports_device *portdev, u32 id) port->in_vq = portdev->in_vqs[port->id]; port->out_vq = portdev->out_vqs[port->id]; - cdev_init(&port->cdev, &port_fops); + port->cdev = cdev_alloc(); + if (!port->cdev) { +...