Re: [Qemu-devel] [PATCH v7 2/6] virtio-pmem: Add virtio pmem driver

From: Jakub StaroÅ
Date: Wed May 08 2019 - 15:06:49 EST


On 5/8/19 4:12 AM, Pankaj Gupta wrote:
>
>>
>> On 4/25/19 10:00 PM, Pankaj Gupta wrote:
>>
>>> +void host_ack(struct virtqueue *vq)
>>> +{
>>> + unsigned int len;
>>> + unsigned long flags;
>>> + struct virtio_pmem_request *req, *req_buf;
>>> + struct virtio_pmem *vpmem = vq->vdev->priv;
>>> +
>>> + spin_lock_irqsave(&vpmem->pmem_lock, flags);
>>> + while ((req = virtqueue_get_buf(vq, &len)) != NULL) {
>>> + req->done = true;
>>> + wake_up(&req->host_acked);
>>> +
>>> + if (!list_empty(&vpmem->req_list)) {
>>> + req_buf = list_first_entry(&vpmem->req_list,
>>> + struct virtio_pmem_request, list);
>>> + list_del(&vpmem->req_list);
>>
>> Shouldn't it be rather `list_del(vpmem->req_list.next)`? We are trying to
>> unlink
>> first element of the list and `vpmem->req_list` is just the list head.
>
> This looks correct. We are not deleting head but first entry in 'req_list'
> which is device corresponding list of pending requests.
>
> Please see below:
>
> /**
> * Retrieve the first list entry for the given list pointer.
> *
> * Example:
> * struct foo *first;
> * first = list_first_entry(&bar->list_of_foos, struct foo, list_of_foos);
> *
> * @param ptr The list head
> * @param type Data type of the list element to retrieve
> * @param member Member name of the struct list_head field in the list element.
> * @return A pointer to the first list element.
> */
> #define list_first_entry(ptr, type, member) \
> list_entry((ptr)->next, type, member)

Please look at this StackOverflow question:
https://stackoverflow.com/questions/19675419/deleting-first-element-of-a-list-h-list

Author asks about deleting first element of the queue. In our case
(and also in the question's author case), `vpmem->req_list` is not element
of any request struct and not an element of the list. It's just a list head storing
`next` and `prev` pointers which are then pointing to respectively first and
last element of the list. We want to unlink the first element of the list,
so we need to pass pointer to the first element of the list to
the `list_del` function - that is, the `vpmem->req_list.next`.

Thank you,
Jakub Staron