WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-devel

[Xen-devel] [PATCH] linux/blktap: fix cleanup after unclean application

To: <xen-devel@xxxxxxxxxxxxxxxxxxx>
Subject: [Xen-devel] [PATCH] linux/blktap: fix cleanup after unclean application exit #2
From: "Jan Beulich" <JBeulich@xxxxxxxxxx>
Date: Wed, 21 Apr 2010 14:53:25 +0100
Delivery-date: Wed, 21 Apr 2010 06:55:09 -0700
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-devel-request@lists.xensource.com?subject=help>
List-id: Xen developer discussion <xen-devel.lists.xensource.com>
List-post: <mailto:xen-devel@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=unsubscribe>
Sender: xen-devel-bounces@xxxxxxxxxxxxxxxxxxx
Subject: blktap: fix cleanup after unclean application exit #2

When an application using blktap devices doesn't close the mmap-s of
/dev/xen/blktapN and the frontend driver never connects, we cannot
defer the mmput() on the stored mm until blktap_release() or the exit
path of the worker thread, as the former will never be called without
the mm's reference count dropping to zero, and the worker thread
would never get started.

Also remove a left-over from c/s 1013.

Signed-off-by: Jan Beulich <jbeulich@xxxxxxxxxx>

--- sle11sp1-2010-04-12.orig/drivers/xen/blktap/blktap.c        2010-04-21 
13:43:49.000000000 +0200
+++ sle11sp1-2010-04-12/drivers/xen/blktap/blktap.c     2010-04-20 
18:21:03.000000000 +0200
@@ -553,6 +553,7 @@ void signal_tapdisk(int idx) 
 {
        tap_blkif_t *info;
        struct task_struct *ptask;
+       struct mm_struct *mm;
 
        /*
         * if the userland tools set things up wrong, this could be negative;
@@ -573,7 +574,9 @@ void signal_tapdisk(int idx) 
        }
        info->blkif = NULL;
 
-       return;
+       mm = xchg(&info->mm, NULL);
+       if (mm)
+               mmput(mm);
 }
 
 static int blktap_open(struct inode *inode, struct file *filp)
@@ -653,7 +656,6 @@ static int blktap_release(struct inode *
        mm = xchg(&info->mm, NULL);
        if (mm)
                mmput(mm);
-       info->mm = NULL;
        kfree(info->foreign_map.map);
        info->foreign_map.map = NULL;
 



Attachment: xen-blktap-teardown-hvm.patch
Description: Text document

_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-devel] [PATCH] linux/blktap: fix cleanup after unclean application exit #2, Jan Beulich <=