Fix the status reporting for copybacks. Thanks to Hubert Feyrer for
reporting the problem.
This commit is contained in:
parent
5854678e15
commit
dc4b749234
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: rf_netbsdkintf.c,v 1.92 2000/06/04 02:16:05 oster Exp $ */
|
||||
/* $NetBSD: rf_netbsdkintf.c,v 1.93 2000/07/14 15:26:29 oster Exp $ */
|
||||
/*-
|
||||
* Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
|
||||
* All rights reserved.
|
||||
|
@ -1351,10 +1351,11 @@ raidioctl(dev, cmd, data, flag, p)
|
|||
return (0);
|
||||
|
||||
case RAIDFRAME_CHECK_COPYBACK_STATUS_EXT:
|
||||
progressInfoPtr = (RF_ProgressInfo_t **) data;
|
||||
if (raidPtr->copyback_in_progress == 1) {
|
||||
progressInfo.total = raidPtr->Layout.numStripe;
|
||||
progressInfo.completed =
|
||||
raidPtr->parity_rewrite_stripes_done;
|
||||
raidPtr->copyback_stripes_done;
|
||||
progressInfo.remaining = progressInfo.total -
|
||||
progressInfo.completed;
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue