Module Name:    src
Committed By:   martin
Date:           Sun Jan  5 09:30:04 UTC 2020

Modified Files:
        src/sys/dev/usb [netbsd-9]: umidi.c

Log Message:
Pull up following revision(s) (requested by maxv in ticket #600):

        sys/dev/usb/umidi.c: revision 1.82

Remove the call to KERNEL_UNLOCK_ONE(), it was forgotten when the biglock
was dropped in rev1.63. Found via vHCI.


To generate a diff of this commit:
cvs rdiff -u -r1.78 -r1.78.2.1 src/sys/dev/usb/umidi.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/usb/umidi.c
diff -u src/sys/dev/usb/umidi.c:1.78 src/sys/dev/usb/umidi.c:1.78.2.1
--- src/sys/dev/usb/umidi.c:1.78	Wed May  8 13:40:19 2019
+++ src/sys/dev/usb/umidi.c	Sun Jan  5 09:30:04 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: umidi.c,v 1.78 2019/05/08 13:40:19 isaki Exp $	*/
+/*	$NetBSD: umidi.c,v 1.78.2.1 2020/01/05 09:30:04 martin Exp $	*/
 
 /*
  * Copyright (c) 2001, 2012, 2014 The NetBSD Foundation, Inc.
@@ -32,7 +32,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: umidi.c,v 1.78 2019/05/08 13:40:19 isaki Exp $");
+__KERNEL_RCSID(0, "$NetBSD: umidi.c,v 1.78.2.1 2020/01/05 09:30:04 martin Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_usb.h"
@@ -414,7 +414,6 @@ out_free_endpoints:
 out:
 	aprint_error_dev(self, "disabled.\n");
 	sc->sc_dying = 1;
-	KERNEL_UNLOCK_ONE(curlwp);
 	return;
 }
 

Reply via email to