All of lore.kernel.org
 help / color / mirror / Atom feed
From: Boris Ostrovsky <boris.ostrovsky@oracle.com>
To: Oleksandr <olekstysh@gmail.com>,
	Stefano Stabellini <sstabellini@kernel.org>
Cc: xen-devel@lists.xenproject.org, linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	Juergen Gross <jgross@suse.com>, Julien Grall <julien@xen.org>,
	Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>,
	"Michael S. Tsirkin" <mst@redhat.com>,
	Christoph Hellwig <hch@infradead.org>
Subject: Re: [PATCH V2 2/7] xen/grants: support allocating consecutive grants
Date: Wed, 11 May 2022 17:09:33 -0400	[thread overview]
Message-ID: <24748b59-e2ed-1d7d-801e-ab9dc12b0983@oracle.com> (raw)
In-Reply-To: <8409e636-94e3-e231-f181-c76a849534a1@gmail.com>


On 5/11/22 2:00 PM, Oleksandr wrote:
>
> On 07.05.22 21:19, Oleksandr Tyshchenko wrote:
>
> Hello Boris, Stefano
>
>
>> From: Juergen Gross <jgross@suse.com>
>>
>> For support of virtio via grant mappings in rare cases larger mappings
>> using consecutive grants are needed. Support those by adding a bitmap
>> of free grants.
>>
>> As consecutive grants will be needed only in very rare cases (e.g. when
>> configuring a virtio device with a multi-page ring), optimize for the
>> normal case of non-consecutive allocations.
>>
>> Signed-off-by: Juergen Gross <jgross@suse.com>
>> ---
>> Changes RFC -> V1:
>>     - no changes
>>     Changes V1 -> V2:
>>     - no changes
>
>
> May I please ask for the review here?



I had a quick look but I am stuck on get_free_seq(), I need to stare at it some more. Unless someone else reviews this, I will try to get to this in the next couple of days.


One thing I did notice is


>
>> @@ -1452,6 +1624,13 @@ int gnttab_init(void)
>>           }
>>       }
>>   +    i = gnttab_interface->grefs_per_grant_frame * max_nr_grant_frames;
>> +    gnttab_free_bitmap = bitmap_zalloc(i, GFP_KERNEL);
>> +    if (!gnttab_free_bitmap) {
>> +        ret = -ENOMEM;
>> +        goto ini_nomem;
>> +    }


This overwrites 'i' and will break error handling at ini_nomem.


-boris




WARNING: multiple messages have this Message-ID (diff)
From: Boris Ostrovsky <boris.ostrovsky@oracle.com>
To: Oleksandr <olekstysh@gmail.com>,
	Stefano Stabellini <sstabellini@kernel.org>
Cc: xen-devel@lists.xenproject.org, linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	Juergen Gross <jgross@suse.com>, Julien Grall <julien@xen.org>,
	Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>,
	"Michael S. Tsirkin" <mst@redhat.com>,
	Christoph Hellwig <hch@infradead.org>
Subject: Re: [PATCH V2 2/7] xen/grants: support allocating consecutive grants
Date: Wed, 11 May 2022 17:09:33 -0400	[thread overview]
Message-ID: <24748b59-e2ed-1d7d-801e-ab9dc12b0983@oracle.com> (raw)
In-Reply-To: <8409e636-94e3-e231-f181-c76a849534a1@gmail.com>


On 5/11/22 2:00 PM, Oleksandr wrote:
>
> On 07.05.22 21:19, Oleksandr Tyshchenko wrote:
>
> Hello Boris, Stefano
>
>
>> From: Juergen Gross <jgross@suse.com>
>>
>> For support of virtio via grant mappings in rare cases larger mappings
>> using consecutive grants are needed. Support those by adding a bitmap
>> of free grants.
>>
>> As consecutive grants will be needed only in very rare cases (e.g. when
>> configuring a virtio device with a multi-page ring), optimize for the
>> normal case of non-consecutive allocations.
>>
>> Signed-off-by: Juergen Gross <jgross@suse.com>
>> ---
>> Changes RFC -> V1:
>>     - no changes
>>     Changes V1 -> V2:
>>     - no changes
>
>
> May I please ask for the review here?



I had a quick look but I am stuck on get_free_seq(), I need to stare at it some more. Unless someone else reviews this, I will try to get to this in the next couple of days.


One thing I did notice is


>
>> @@ -1452,6 +1624,13 @@ int gnttab_init(void)
>>           }
>>       }
>>   +    i = gnttab_interface->grefs_per_grant_frame * max_nr_grant_frames;
>> +    gnttab_free_bitmap = bitmap_zalloc(i, GFP_KERNEL);
>> +    if (!gnttab_free_bitmap) {
>> +        ret = -ENOMEM;
>> +        goto ini_nomem;
>> +    }


This overwrites 'i' and will break error handling at ini_nomem.


-boris



_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  reply	other threads:[~2022-05-11 21:10 UTC|newest]

Thread overview: 93+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-05-07 18:19 [PATCH V2 0/7] virtio: Solution to restrict memory access under Xen using xen-grant DMA-mapping layer Oleksandr Tyshchenko
2022-05-07 18:19 ` Oleksandr Tyshchenko
2022-05-07 18:19 ` [PATCH V2 1/7] arm/xen: Introduce xen_setup_dma_ops() Oleksandr Tyshchenko
2022-05-07 18:19   ` Oleksandr Tyshchenko
2022-05-07 18:52   ` Catalin Marinas
2022-05-07 18:52     ` Catalin Marinas
2022-05-07 18:19 ` [PATCH V2 2/7] xen/grants: support allocating consecutive grants Oleksandr Tyshchenko
2022-05-07 18:19   ` Oleksandr Tyshchenko
2022-05-11 18:00   ` Oleksandr
2022-05-11 18:00     ` Oleksandr
2022-05-11 21:09     ` Boris Ostrovsky [this message]
2022-05-11 21:09       ` Boris Ostrovsky
2022-05-12  6:11       ` Oleksandr
2022-05-12  6:11         ` Oleksandr
2022-05-12 20:01   ` Boris Ostrovsky
2022-05-12 20:01     ` Boris Ostrovsky
2022-05-13  5:33     ` Juergen Gross
2022-05-13  5:33       ` Juergen Gross
2022-05-13 10:43       ` Oleksandr
2022-05-13 10:43         ` Oleksandr
2022-05-14  2:34       ` Boris Ostrovsky
2022-05-14  2:34         ` Boris Ostrovsky
2022-05-16  5:59         ` Juergen Gross
2022-05-16  5:59           ` Juergen Gross
2022-05-16 16:00           ` Boris Ostrovsky
2022-05-16 16:00             ` Boris Ostrovsky
2022-05-16 18:30             ` Oleksandr
2022-05-16 18:30               ` Oleksandr
2022-05-16 18:57               ` Boris Ostrovsky
2022-05-16 18:57                 ` Boris Ostrovsky
2022-05-07 18:19 ` [PATCH V2 3/7] xen/grant-dma-ops: Add option to restrict memory access under Xen Oleksandr Tyshchenko
2022-05-07 18:19   ` Oleksandr Tyshchenko
2022-05-09 21:39   ` Stefano Stabellini
2022-05-09 21:39     ` Stefano Stabellini
2022-05-07 18:19 ` [PATCH V2 4/7] xen/virtio: Enable restricted memory access using Xen grant mappings Oleksandr Tyshchenko
2022-05-07 18:19   ` Oleksandr Tyshchenko
2022-05-09 21:39   ` Stefano Stabellini
2022-05-09 21:39     ` Stefano Stabellini
2022-05-07 18:19 ` [PATCH V2 5/7] dt-bindings: Add xen,dev-domid property description for xen-grant DMA ops Oleksandr Tyshchenko
2022-05-07 18:19   ` [PATCH V2 5/7] dt-bindings: Add xen, dev-domid " Oleksandr Tyshchenko
2022-05-09 21:39   ` Stefano Stabellini
2022-05-09 21:39     ` Stefano Stabellini
2022-05-09 21:39     ` Stefano Stabellini
2022-05-17  0:27   ` [PATCH V2 5/7] dt-bindings: Add xen,dev-domid " Rob Herring
2022-05-17  0:27     ` Rob Herring
2022-05-17  0:27     ` Rob Herring
2022-05-18 14:12     ` Oleksandr
2022-05-18 14:12       ` Oleksandr
2022-05-18 14:32   ` Arnd Bergmann
2022-05-18 14:32     ` Arnd Bergmann
2022-05-18 14:32     ` Arnd Bergmann
2022-05-18 16:06     ` Oleksandr
2022-05-18 16:06       ` Oleksandr
2022-05-18 16:39       ` Arnd Bergmann
2022-05-18 16:39         ` Arnd Bergmann
2022-05-18 16:39         ` Arnd Bergmann
2022-05-18 23:32         ` Oleksandr
2022-05-18 23:32           ` Oleksandr
2022-05-19  1:06           ` [PATCH V2 5/7] dt-bindings: Add xen, dev-domid " Stefano Stabellini
2022-05-19  1:06             ` Stefano Stabellini
2022-05-19  1:06             ` [PATCH V2 5/7] dt-bindings: Add xen,dev-domid " Stefano Stabellini
2022-05-19  6:03             ` Oleksandr
2022-05-19  6:03               ` Oleksandr
2022-05-23 17:30               ` Oleksandr
2022-05-23 17:30                 ` Oleksandr
2022-05-24  1:58                 ` [PATCH V2 5/7] dt-bindings: Add xen, dev-domid " Stefano Stabellini
2022-05-24  1:58                   ` Stefano Stabellini
2022-05-24  1:58                   ` [PATCH V2 5/7] dt-bindings: Add xen,dev-domid " Stefano Stabellini
2022-05-24 16:01                   ` Rob Herring
2022-05-24 16:01                     ` Rob Herring
2022-05-24 16:01                     ` Rob Herring
2022-05-24 18:34                     ` Saravana Kannan
2022-05-24 18:34                       ` Saravana Kannan
2022-05-25 16:30                       ` Oleksandr
2022-05-25 16:30                         ` Oleksandr
2022-05-24 16:11                   ` Oleksandr
2022-05-24 16:11                     ` Oleksandr
2022-05-24 17:59                     ` [PATCH V2 5/7] dt-bindings: Add xen, dev-domid " Stefano Stabellini
2022-05-24 17:59                       ` Stefano Stabellini
2022-05-24 17:59                       ` [PATCH V2 5/7] dt-bindings: Add xen,dev-domid " Stefano Stabellini
2022-05-25 11:15                       ` Oleksandr
2022-05-25 11:15                         ` Oleksandr
2022-05-18 18:59     ` Rob Herring
2022-05-18 18:59       ` Rob Herring
2022-05-18 18:59       ` Rob Herring
2022-05-18 23:48       ` Oleksandr
2022-05-18 23:48         ` Oleksandr
2022-05-07 18:19 ` [PATCH V2 6/7] xen/grant-dma-ops: Retrieve the ID of backend's domain for DT devices Oleksandr Tyshchenko
2022-05-07 18:19   ` Oleksandr Tyshchenko
2022-05-09 21:39   ` Stefano Stabellini
2022-05-09 21:39     ` Stefano Stabellini
2022-05-07 18:19 ` [PATCH V2 7/7] arm/xen: Assign xen-grant DMA ops for xen-grant DMA devices Oleksandr Tyshchenko
2022-05-07 18:19   ` Oleksandr Tyshchenko

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=24748b59-e2ed-1d7d-801e-ab9dc12b0983@oracle.com \
    --to=boris.ostrovsky@oracle.com \
    --cc=hch@infradead.org \
    --cc=jgross@suse.com \
    --cc=julien@xen.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mst@redhat.com \
    --cc=oleksandr_tyshchenko@epam.com \
    --cc=olekstysh@gmail.com \
    --cc=sstabellini@kernel.org \
    --cc=xen-devel@lists.xenproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.