]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
virtio_pci: document why we defer kfree
authorMichael S. Tsirkin <mst@redhat.com>
Sun, 4 Jan 2015 15:28:27 +0000 (17:28 +0200)
committerLuis Henriques <luis.henriques@canonical.com>
Thu, 19 Feb 2015 10:39:52 +0000 (10:39 +0000)
commit a1eb03f546d651a8f39c7d0692b1f7f5b4e7e3cd upstream.

The reason we defer kfree until release function is because it's a
general rule for kobjects: kfree of the reference counter itself is only
legal in the release function.

Previous patch didn't make this clear, document this in code.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
[ luis: backported to 3.16:
  - file rename: virtio_pci_legacy.c -> virtio_pci.c ]
Signed-off-by: Luis Henriques <luis.henriques@canonical.com>
drivers/virtio/virtio_pci.c

index a46570005a987277fc75af89534c3abc0b461433..52c4607fec9e4ea1f2cbc3b18f77d993d74c6a6f 100644 (file)
@@ -671,6 +671,9 @@ static void virtio_pci_release_dev(struct device *_d)
        struct virtio_device *vdev = dev_to_virtio(_d);
        struct virtio_pci_device *vp_dev = to_vp_device(vdev);
 
+       /* As struct device is a kobject, it's not safe to
+        * free the memory (including the reference counter itself)
+        * until it's release callback. */
        kfree(vp_dev);
 }