Module Name:    src
Committed By:   jdolecek
Date:           Mon Sep 19 23:37:10 UTC 2016

Modified Files:
        src/sys/dev/raidframe: rf_netbsdkintf.c

Log Message:
fix mistake fallthrough in the ioctl switch introduced in previous commit


To generate a diff of this commit:
cvs rdiff -u -r1.346 -r1.347 src/sys/dev/raidframe/rf_netbsdkintf.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/raidframe/rf_netbsdkintf.c
diff -u src/sys/dev/raidframe/rf_netbsdkintf.c:1.346 src/sys/dev/raidframe/rf_netbsdkintf.c:1.347
--- src/sys/dev/raidframe/rf_netbsdkintf.c:1.346	Mon Sep 19 23:32:30 2016
+++ src/sys/dev/raidframe/rf_netbsdkintf.c	Mon Sep 19 23:37:10 2016
@@ -1,4 +1,4 @@
-/*	$NetBSD: rf_netbsdkintf.c,v 1.346 2016/09/19 23:32:30 jdolecek Exp $	*/
+/*	$NetBSD: rf_netbsdkintf.c,v 1.347 2016/09/19 23:37:10 jdolecek Exp $	*/
 
 /*-
  * Copyright (c) 1996, 1997, 1998, 2008-2011 The NetBSD Foundation, Inc.
@@ -101,7 +101,7 @@
  ***********************************************************/
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rf_netbsdkintf.c,v 1.346 2016/09/19 23:32:30 jdolecek Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rf_netbsdkintf.c,v 1.347 2016/09/19 23:37:10 jdolecek Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_compat_netbsd.h"
@@ -1789,9 +1789,11 @@ raidioctl(dev_t dev, u_long cmd, void *d
 	switch (cmd) {
 	case DIOCCACHESYNC:
 		retcode = rf_sync_component_caches(raidPtr);
+		break;
 
 	default:
 		retcode = dk_ioctl(dksc, dev, cmd, data, flag, l);
+		break;
 	}
 
 	return (retcode);

Reply via email to