diff options
author | phk <phk@FreeBSD.org> | 2002-05-15 17:52:03 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2002-05-15 17:52:03 +0000 |
commit | 645c74d3431ad18171a05108a64edea5a6922e51 (patch) | |
tree | b1467175a45d9f6e900e5466b9b31a1046f465c3 | |
parent | 0ee62997d7a98d421e627ea5e0b8afd31b65c0a7 (diff) | |
download | FreeBSD-src-645c74d3431ad18171a05108a64edea5a6922e51.zip FreeBSD-src-645c74d3431ad18171a05108a64edea5a6922e51.tar.gz |
Revert daddr_t to 32 bits while we research the reported problems.
-rw-r--r-- | sys/sys/types.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/types.h b/sys/sys/types.h index 4811b0a..6ff98b7 100644 --- a/sys/sys/types.h +++ b/sys/sys/types.h @@ -126,8 +126,8 @@ typedef quad_t * qaddr_t; typedef char * caddr_t; /* core address */ typedef __const char * c_caddr_t; /* core address, pointer to const */ typedef __volatile char *v_caddr_t; /* core address, pointer to volatile */ -typedef int64_t daddr_t; /* disk address */ -typedef u_int64_t u_daddr_t; /* unsigned disk address */ +typedef int32_t daddr_t; /* disk address */ +typedef u_int32_t u_daddr_t; /* unsigned disk address */ typedef u_int32_t fixpt_t; /* fixed point number */ #ifdef _BSD_GID_T_ |