[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH master] Ignore failure to unmap INVALID_GRANT_HANDLE


  • To: Demi Marie Obenour <demi@xxxxxxxxxxxxxxxxxxxxxx>
  • From: Oleksandr Tyshchenko <Oleksandr_Tyshchenko@xxxxxxxx>
  • Date: Sun, 10 Jul 2022 19:19:50 +0000
  • Accept-language: en-US, ru-RU
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=epam.com; dmarc=pass action=none header.from=epam.com; dkim=pass header.d=epam.com; arc=none
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1; bh=kZRHvcGm8ElQq6bAO2ejiNRTXZyHpnSAMPmZn0z/G8g=; b=iIyfAVfE+a46nMnwvQWJAGGqSwMvHFtkmRRhYUmiLy0/nSLO/qsbaSdVd1xPtfOOY5KxG+uD9SEtL8tlpwFP4/PNmIRQyrx3LE5LM0bRNosnfLYqKjXHbgb8PRZcp66CeHaKwNxcBqNo6kJxQf/tNwNXgNY8+QUDbjAn9j9P2eRWZrJ1GVGrWif0wU2Oz/gngS7EYkTINDHB9GY9WyWwTVVyEbc/Q+6hJb6uk5llYm02i7un5/jQR2rlSl3Ml/6ayMou2btBaHqhe96V4m/Vulry/s5thm+OsNEjLwDpmzQmbcoaiGgdhDeWis2n797743kMYUzzJanLPJss5lNPNQ==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=O62gmxvJAV++3UavCd/Jupt+O7UOfvU+3HpGfzgO7ufS4DZNxUuppXmmpqr6fZBpl7H0BGhwukGaW/6wA3hI9Jg36tORJa4BS1UpP0ShLfAbatwrr46Ie2ENnP+pSC32Jc0f+uSZFFmMoCe3jFPuouZizuyvYWshEPpAWizBjXSnmIrlgOJBYqcOvu/ojJFjjDKeK2KPgcCqcON7Jt8OOWqK42hPZ4EcY7OmV2ytwNbxW3PafsgIoVy+yrTe0repYzM2PbkMkSV4qRHomL7/YIlURiTyuzaRfCuwu7tejDaAXtMJjnzgpNKIjCntQs5MTP/dwf5J1U25oS2LRp8VmQ==
  • Cc: Linux kernel regressions <regressions@xxxxxxxxxxxxxxx>, "stable@xxxxxxxxxxxxxxx" <stable@xxxxxxxxxxxxxxx>, Greg KH <gregkh@xxxxxxxxxxxxxxxxxxx>, Linux kernel mailing list <linux-kernel@xxxxxxxxxxxxxxx>, Xen developer discussion <xen-devel@xxxxxxxxxxxxxxxxxxxx>, Stefano Stabellini <sstabellini@xxxxxxxxxx>, Juergen Gross <jgross@xxxxxxxx>
  • Delivery-date: Sun, 10 Jul 2022 19:20:25 +0000
  • List-id: Xen developer discussion <xen-devel.lists.xenproject.org>
  • Thread-index: AQHYkulN1X/lWVHlgEmBaIdfsTCb/q13/jiA
  • Thread-topic: [PATCH master] Ignore failure to unmap INVALID_GRANT_HANDLE

On 08.07.22 19:37, Demi Marie Obenour wrote:

Hello Demi Marie


Please add subsystem to the commit subject, for example "xen/gntdev:".


> The error paths of gntdev_mmap() can call unmap_grant_pages() even
> though not all of the pages have been successfully mapped.  This will
> trigger the WARN_ON()s in __unmap_grant_pages_done().  The number of
> warnings can be very large; I have observed thousands of lines of
> warnings in the systemd journal.
>
> Avoid this problem by only warning on unmapping failure if the handle
> being unmapped is not INVALID_GRANT_HANDLE.  The handle field of any
> page that was not successfully mapped will be INVALID_GRANT_HANDLE, so
> this catches all cases where unmapping can legitimately fail.
>
> Suggested-by: Juergen Gross <jgross@xxxxxxxx>
> Cc: stable@xxxxxxxxxxxxxxx
> Signed-off-by: Demi Marie Obenour <demi@xxxxxxxxxxxxxxxxxxxxxx>
> Fixes: dbe97cff7dd9 ("xen/gntdev: Avoid blocking in unmap_grant_pages()")
> ---
>   drivers/xen/gntdev.c | 8 ++++++--
>   1 file changed, 6 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/xen/gntdev.c b/drivers/xen/gntdev.c
> index 
> 4b56c39f766d4da68570d08d963f6ef40c8d9c37..22fcd503f4a4487d0aed147c94f432683dad8c73
>  100644
> --- a/drivers/xen/gntdev.c
> +++ b/drivers/xen/gntdev.c
> @@ -396,13 +396,17 @@ static void __unmap_grant_pages_done(int result,
>       unsigned int offset = data->unmap_ops - map->unmap_ops;
>   
>       for (i = 0; i < data->count; i++) {
> -             WARN_ON(map->unmap_ops[offset+i].status);
> +             WARN_ON(map->unmap_ops[offset+i].status &&
> +                     map->unmap_ops[offset+i].handle !=
> +                     INVALID_GRANT_HANDLE);


Nit: While extending the check I would clarify the first half of it: 
"map->unmap_ops[offset+i].status != GNTST_okay"


>               pr_debug("unmap handle=%d st=%d\n",
>                       map->unmap_ops[offset+i].handle,
>                       map->unmap_ops[offset+i].status);
>               map->unmap_ops[offset+i].handle = INVALID_GRANT_HANDLE;
>               if (use_ptemod) {
> -                     WARN_ON(map->kunmap_ops[offset+i].status);
> +                     WARN_ON(map->kunmap_ops[offset+i].status &&
> +                             map->kunmap_ops[offset+i].handle !=
> +                             INVALID_GRANT_HANDLE);

ditto



With updated subject:

Reviewed-by: Oleksandr Tyshchenko <oleksandr_tyshchenko@xxxxxxxx>


>                       pr_debug("kunmap handle=%u st=%d\n",
>                                map->kunmap_ops[offset+i].handle,
>                                map->kunmap_ops[offset+i].status);

-- 
Regards,

Oleksandr Tyshchenko

 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.