Module Name: src
Committed By: riz
Date: Mon Jul 16 22:04:46 UTC 2012
Modified Files:
src/sys/dev [netbsd-6]: ldvar.h
Log Message:
Pull up following revision(s) (requested by nonaka in ticket #418):
sys/dev/ldvar.h: revision 1.21
use uint64_t for sc_disksize512.
fixed the problem with ataraid volumes larger than 2 TiB.
To generate a diff of this commit:
cvs rdiff -u -r1.20 -r1.20.2.1 src/sys/dev/ldvar.h
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/ldvar.h
diff -u src/sys/dev/ldvar.h:1.20 src/sys/dev/ldvar.h:1.20.2.1
--- src/sys/dev/ldvar.h:1.20 Thu Feb 2 19:43:01 2012
+++ src/sys/dev/ldvar.h Mon Jul 16 22:04:45 2012
@@ -1,4 +1,4 @@
-/* $NetBSD: ldvar.h,v 1.20 2012/02/02 19:43:01 tls Exp $ */
+/* $NetBSD: ldvar.h,v 1.20.2.1 2012/07/16 22:04:45 riz Exp $ */
/*-
* Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -46,7 +46,7 @@ struct ld_softc {
int sc_ncylinders; /* # cylinders */
int sc_nheads; /* # heads */
int sc_nsectors; /* # sectors per track */
- int sc_disksize512;
+ uint64_t sc_disksize512;
/*
* The following are filled by hardware specific attachment code.