virtio_pci: document why we defer kfree
authorMichael S. Tsirkin <mst@redhat.com>
Sun, 4 Jan 2015 15:28:27 +0000 (17:28 +0200)
committerBen Hutchings <ben@decadent.org.uk>
Fri, 20 Feb 2015 00:49:34 +0000 (00:49 +0000)
commitc578662ec973f2cdc5e7a81f9fec1bfb45440342
tree36c2456f8d7b24ac1f0bc7fe1197482a068b1634
parent119d5897cc5f9f73e352a1c647d21b9d506b8c0a
virtio_pci: document why we defer kfree

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>
[bwh: Backported to 3.2: adjust filename]
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
drivers/virtio/virtio_pci.c