Module Name: src
Committed By: mlelstv
Date: Wed Aug 19 20:15:20 UTC 2015
Modified Files:
src/sys/dev: cgd.c
Log Message:
restart queue when a request completes
To generate a diff of this commit:
cvs rdiff -u -r1.100 -r1.101 src/sys/dev/cgd.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/dev/cgd.c
diff -u src/sys/dev/cgd.c:1.100 src/sys/dev/cgd.c:1.101
--- src/sys/dev/cgd.c:1.100 Tue Aug 18 21:24:19 2015
+++ src/sys/dev/cgd.c Wed Aug 19 20:15:20 2015
@@ -1,4 +1,4 @@
-/* $NetBSD: cgd.c,v 1.100 2015/08/18 21:24:19 mlelstv Exp $ */
+/* $NetBSD: cgd.c,v 1.101 2015/08/19 20:15:20 mlelstv Exp $ */
/*-
* Copyright (c) 2002 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cgd.c,v 1.100 2015/08/18 21:24:19 mlelstv Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cgd.c,v 1.101 2015/08/19 20:15:20 mlelstv Exp $");
#include <sys/types.h>
#include <sys/param.h>
@@ -483,6 +483,7 @@ cgdiodone(struct buf *nbp)
obp->b_resid = obp->b_bcount;
dk_done(dksc, obp);
+ dk_start(dksc, NULL);
}
/* XXX: we should probably put these into dksubr.c, mostly */