The patch titled md: fix /proc/mdstat refcounting has been removed from the -mm tree. Its filename is md-fix-proc-mdstat-refcounting.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: md: fix /proc/mdstat refcounting From: Akinobu Mita <akinobu.mita@xxxxxxxxx> I have seen mdadm oops after successfully unloading md module. This patch privents from unloading md module while mdadm is polling /proc/mdstat. Cc: Neil Brown <neilb@xxxxxxx> Signed-off-by: Akinbou Mita <akinobu.mita@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/md/md.c | 1 + 1 file changed, 1 insertion(+) diff -puN drivers/md/md.c~md-fix-proc-mdstat-refcounting drivers/md/md.c --- a/drivers/md/md.c~md-fix-proc-mdstat-refcounting +++ a/drivers/md/md.c @@ -4912,6 +4912,7 @@ static unsigned int mdstat_poll(struct f } static struct file_operations md_seq_fops = { + .owner = THIS_MODULE, .open = md_seq_open, .read = seq_read, .llseek = seq_lseek, _ Patches currently in -mm which might be from akinobu.mita@xxxxxxxxx are origin.patch jffs2-use-rb_first-and-rb_last-cleanup.patch git-ocfs2.patch git-cryptodev.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html