qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH for-2.9?] 9pfs: fix migration_block leak


From: Eric Blake
Subject: Re: [Qemu-devel] [PATCH for-2.9?] 9pfs: fix migration_block leak
Date: Thu, 30 Mar 2017 08:25:25 -0500
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.8.0

On 03/30/2017 07:27 AM, Li Qiang wrote:
> The guest can leave the pdu->s->migration_blocker exists by attach

s/exists/in place/
s/attach/attaching/

> but not remove a fid. Then if we hot unplug the 9pfs device, the

s/remove/removing/

> v9fs_reset() just free the fids, but not free the migration_blocker.
> This will leak a memory leak. This patch avoid this.

s/leak a/cause a/
s/avoid/avoids/

> 
> Signed-off-by: Li Qiang <address@hidden>
> ---
>  hw/9pfs/9p.c | 6 ++++++
>  1 file changed, 6 insertions(+)

Probably worth including in 2.9 as a bug fix.

Reviewed-by: Eric Blake <address@hidden>

> 
> diff --git a/hw/9pfs/9p.c b/hw/9pfs/9p.c
> index 48babce..b55c02d 100644
> --- a/hw/9pfs/9p.c
> +++ b/hw/9pfs/9p.c
> @@ -548,6 +548,12 @@ static void coroutine_fn virtfs_reset(V9fsPDU *pdu)
>              free_fid(pdu, fidp);
>          }
>      }
> +
> +    if (pdu->s->migration_blocker) {
> +        migrate_del_blocker(pdu->s->migration_blocker);
> +        error_free(pdu->s->migration_blocker);
> +        pdu->s->migration_blocker = NULL;
> +    }
>  }
>  
>  #define P9_QID_TYPE_DIR         0x80
> 

-- 
Eric Blake   eblake redhat com    +1-919-301-3266
Libvirt virtualization library http://libvirt.org

Attachment: signature.asc
Description: OpenPGP digital signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]