summaryrefslogtreecommitdiff
path: root/sys/dev/raidframe
diff options
context:
space:
mode:
authoroster <oster@NetBSD.org>2006-08-07 20:02:22 +0000
committeroster <oster@NetBSD.org>2006-08-07 20:02:22 +0000
commit803c52c2a4ad659a4e0cf2764f4ff9af361b6606 (patch)
tree157442e5adef0f89e0712dd9b26bb704b0c6c66d /sys/dev/raidframe
parente350cc0fbe01ed5e30744fb576a7d45279c462a7 (diff)
sc_size should be a 64-bit quantity. Notice by Matthias Drochner.
Diffstat (limited to 'sys/dev/raidframe')
-rw-r--r--sys/dev/raidframe/rf_netbsdkintf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/raidframe/rf_netbsdkintf.c b/sys/dev/raidframe/rf_netbsdkintf.c
index 53c83e4c028..5785dbca476 100644
--- a/sys/dev/raidframe/rf_netbsdkintf.c
+++ b/sys/dev/raidframe/rf_netbsdkintf.c
@@ -1,4 +1,4 @@
-/* $NetBSD: rf_netbsdkintf.c,v 1.211 2006/08/07 17:08:18 oster Exp $ */
+/* $NetBSD: rf_netbsdkintf.c,v 1.212 2006/08/07 20:02:22 oster Exp $ */
/*-
* Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
* All rights reserved.
@@ -146,7 +146,7 @@
***********************************************************/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rf_netbsdkintf.c,v 1.211 2006/08/07 17:08:18 oster Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rf_netbsdkintf.c,v 1.212 2006/08/07 20:02:22 oster Exp $");
#include <sys/param.h>
#include <sys/errno.h>
@@ -241,7 +241,7 @@ const struct cdevsw raid_cdevsw = {
struct raid_softc {
int sc_flags; /* flags */
int sc_cflags; /* configuration flags */
- size_t sc_size; /* size of the raid device */
+ uint64_t sc_size; /* size of the raid device */
char sc_xname[20]; /* XXX external name */
struct disk sc_dkdev; /* generic disk device info */
struct bufq_state *buf_queue; /* used for the device queue */