svn commit: r218163 - stable/8/sys/dev/md

Konstantin Belousov kib at FreeBSD.org
Tue Feb 1 10:18:36 UTC 2011


Author: kib
Date: Tue Feb  1 10:18:36 2011
New Revision: 218163
URL: http://svn.freebsd.org/changeset/base/218163

Log:
  MFC r217823:
  Bio shall not be accessed after g_io_deliver(9).

Modified:
  stable/8/sys/dev/md/md.c
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)

Modified: stable/8/sys/dev/md/md.c
==============================================================================
--- stable/8/sys/dev/md/md.c	Tue Feb  1 09:27:28 2011	(r218162)
+++ stable/8/sys/dev/md/md.c	Tue Feb  1 10:18:36 2011	(r218163)
@@ -731,9 +731,9 @@ md_kthread(void *arg)
 
 		if (error != -1) {
 			bp->bio_completed = bp->bio_length;
-			g_io_deliver(bp, error);
 			if ((bp->bio_cmd == BIO_READ) || (bp->bio_cmd == BIO_WRITE))
 				devstat_end_transaction_bio(sc->devstat, bp);
+			g_io_deliver(bp, error);
 		}
 	}
 }


More information about the svn-src-stable-8 mailing list