All of lore.kernel.org
 help / color / mirror / Atom feed
From: Michael Roth <mdroth@linux.vnet.ibm.com>
To: Tomoki Sekiyama <tomoki.sekiyama@hds.com>, qemu-devel@nongnu.org
Cc: seiji.aguchi@hds.com, lcapitulino@redhat.com
Subject: Re: [Qemu-devel] [PATCH] qemu-ga: execute fsfreeze-freeze in reverse order of mounts
Date: Tue, 08 Oct 2013 15:49:07 -0500	[thread overview]
Message-ID: <20131008204907.28259.10823@loki> (raw)
In-Reply-To: <20131001210953.23207.28945.stgit@localhost.localdomain>

Quoting Tomoki Sekiyama (2013-10-01 16:09:53)
> Currently, fsfreeze-freeze may cause deadlock if a guest has loopback mounts
> of image files in its disk; e.g.:
> 
>     # mount | grep ^/
>     /dev/vda1 / type ext4 (rw,noatime,seclabel,data=ordered)
>     /tmp/disk.img on /mnt type ext4 (rw,relatime,seclabel)
> 
> To avoid the deadlock, this freeze filesystems in reverse order of mounts.
> 
> Signed-off-by: Tomoki Sekiyama <tomoki.sekiyama@hds.com>

Thanks, applied to qga tree:

https://github.com/mdroth/qemu/commits/qga

> ---
>  qga/commands-posix.c |    4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/qga/commands-posix.c b/qga/commands-posix.c
> index e199738..f453132 100644
> --- a/qga/commands-posix.c
> +++ b/qga/commands-posix.c
> @@ -566,7 +566,7 @@ typedef struct FsMount {
>      QTAILQ_ENTRY(FsMount) next;
>  } FsMount;
> 
> -typedef QTAILQ_HEAD(, FsMount) FsMountList;
> +typedef QTAILQ_HEAD(FsMountList, FsMount) FsMountList;
> 
>  static void free_fs_mount_list(FsMountList *mounts)
>  {
> @@ -728,7 +728,7 @@ int64_t qmp_guest_fsfreeze_freeze(Error **err)
>      /* cannot risk guest agent blocking itself on a write in this state */
>      ga_set_frozen(ga_state);
> 
> -    QTAILQ_FOREACH(mount, &mounts, next) {
> +    QTAILQ_FOREACH_REVERSE(mount, &mounts, FsMountList, next) {
>          fd = qemu_open(mount->dirname, O_RDONLY);
>          if (fd == -1) {
>              error_setg_errno(err, errno, "failed to open %s", mount->dirname);

      parent reply	other threads:[~2013-10-08 20:49 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-10-01 21:09 [Qemu-devel] [PATCH] qemu-ga: execute fsfreeze-freeze in reverse order of mounts Tomoki Sekiyama
2013-10-01 21:25 ` Eric Blake
2013-10-08 20:49 ` Michael Roth [this message]

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=20131008204907.28259.10823@loki \
    --to=mdroth@linux.vnet.ibm.com \
    --cc=lcapitulino@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=seiji.aguchi@hds.com \
    --cc=tomoki.sekiyama@hds.com \
    /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.