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@novell.com>
{
tap_blkif_t *info;
struct task_struct *ptask;
+ struct mm_struct *mm;
/*
* if the userland tools set things up wrong, this could be negative;
}
info->blkif = NULL;
- return;
+ mm = xchg(&info->mm, NULL);
+ if (mm)
+ mmput(mm);
}
static int blktap_open(struct inode *inode, struct file *filp)
mm = xchg(&info->mm, NULL);
if (mm)
mmput(mm);
- info->mm = NULL;
kfree(info->foreign_map.map);
info->foreign_map.map = NULL;