Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-8]: src/sys/dev/raidframe Pull up following revision(s) (requeste...
details: https://anonhg.NetBSD.org/src/rev/1294caa7fca7
branches: netbsd-8
changeset: 448757:1294caa7fca7
user: martin <martin%NetBSD.org@localhost>
date: Fri Feb 08 16:03:04 2019 +0000
description:
Pull up following revision(s) (requested by christos in ticket #1183):
sys/dev/raidframe/rf_disks.c: revision 1.90
PR/53956: Havard Eidnes: raidframe fails to create raid set on disks.
The test to check if force was reversed when the code was factored out.
diffstat:
sys/dev/raidframe/rf_disks.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r 26dea8f06064 -r 1294caa7fca7 sys/dev/raidframe/rf_disks.c
--- a/sys/dev/raidframe/rf_disks.c Thu Feb 07 06:15:54 2019 +0000
+++ b/sys/dev/raidframe/rf_disks.c Fri Feb 08 16:03:04 2019 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: rf_disks.c,v 1.89 2017/01/13 13:01:13 christos Exp $ */
+/* $NetBSD: rf_disks.c,v 1.89.8.1 2019/02/08 16:03:04 martin Exp $ */
/*-
* Copyright (c) 1999 The NetBSD Foundation, Inc.
* All rights reserved.
@@ -60,7 +60,7 @@
***************************************************************/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rf_disks.c,v 1.89 2017/01/13 13:01:13 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rf_disks.c,v 1.89.8.1 2019/02/08 16:03:04 martin Exp $");
#include <dev/raidframe/raidframevar.h>
@@ -705,7 +705,7 @@
int again)
{
printf("Hosed component: %s\n", &cfgPtr->devnames[0][hosed_column][0]);
- if (!cfgPtr->force)
+ if (cfgPtr->force)
return;
/* we'll fail this component, as if there are
Home |
Main Index |
Thread Index |
Old Index