svn commit: r217466 - projects/graid/head/sys/geom/raid
Alexander Motin
mav at FreeBSD.org
Sat Jan 15 23:31:58 UTC 2011
Author: mav
Date: Sat Jan 15 23:31:57 2011
New Revision: 217466
URL: http://svn.freebsd.org/changeset/base/217466
Log:
sd_rebuild_pos should be off_t.
Modified:
projects/graid/head/sys/geom/raid/g_raid.h
Modified: projects/graid/head/sys/geom/raid/g_raid.h
==============================================================================
--- projects/graid/head/sys/geom/raid/g_raid.h Sat Jan 15 23:25:59 2011 (r217465)
+++ projects/graid/head/sys/geom/raid/g_raid.h Sat Jan 15 23:31:57 2011 (r217466)
@@ -137,7 +137,7 @@ struct g_raid_subdisk {
off_t sd_size; /* Size on the disk. */
u_int sd_pos; /* Position in volume. */
u_int sd_state; /* Subdisk state. */
- u_int sd_rebuild_pos; /* Rebuild position. */
+ off_t sd_rebuild_pos; /* Rebuild position. */
int sd_read_errs; /* Count of the read errors */
TAILQ_ENTRY(g_raid_subdisk) sd_next; /* Next subdisk on disk. */
};
More information about the svn-src-projects
mailing list