libufsdat.h 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /*-
  2. * Copyright (c) 1991, 1993
  3. * The Regents of the University of California. All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions
  7. * are met:
  8. * 1. Redistributions of source code must retain the above copyright
  9. * notice, this list of conditions and the following disclaimer.
  10. * 2. Redistributions in binary form must reproduce the above copyright
  11. * notice, this list of conditions and the following disclaimer in the
  12. * documentation and/or other materials provided with the distribution.
  13. * 3. Neither the name of the University nor the names of its contributors
  14. * may be used to endorse or promote products derived from this software
  15. * without specific prior written permission.
  16. *
  17. * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  18. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  19. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  20. * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  21. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  22. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  23. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  24. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  25. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  26. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  27. * SUCH DAMAGE.
  28. *
  29. * @(#)queue.h 8.5 (Berkeley) 8/20/94
  30. * $FreeBSD$
  31. */
  32. typedef int64_t daddr_t; /* disk address */
  33. typedef char *caddr_t; /* core address */
  34. typedef int64_t off_t; /* File offset */
  35. typedef uint32_t ino_t; /* inode number */
  36. /*
  37. * The size of physical and logical block numbers and time fields in UFS.
  38. */
  39. typedef int32_t ufs1_daddr_t;
  40. typedef int64_t ufs2_daddr_t;
  41. typedef int64_t ufs_lbn_t;
  42. typedef int64_t ufs_time_t;
  43. /*
  44. * MAXBSIZE - Filesystems are made out of blocks of at most MAXBSIZE bytes
  45. * per block. MAXBSIZE may be made larger without effecting
  46. * any existing filesystems as long as it does not exceed MAXPHYS,
  47. * and may be made smaller at the risk of not being able to use
  48. * filesystems which require a block size exceeding MAXBSIZE.
  49. */
  50. #define MAXBSIZE 65536 /* must be power of 2 */
  51. #define MAXPHYS (128 * 1024) /* max raw I/O transfer size */
  52. #define DEV_BSHIFT 9 /* log2(DEV_BSIZE) */
  53. #define DEV_BSIZE (1<<DEV_BSHIFT)
  54. #define NBBY 8 /* number of bits in a byte */
  55. #define setbit(a,i) (((unsigned char *)(a))[(i)/NBBY] |= 1<<((i)%NBBY))
  56. #define clrbit(a,i) (((unsigned char *)(a))[(i)/NBBY] &= ~(1<<((i)%NBBY)))
  57. #define isclr(a,i) \
  58. ((((const unsigned char *)(a))[(i)/NBBY] & (1<<((i)%NBBY))) == 0)
  59. /*
  60. * btodb() is messy and perhaps slow because `bytes' may be an off_t. We
  61. * want to shift an unsigned type to avoid sign extension and we don't
  62. * want to widen `bytes' unnecessarily. Assume that the result fits in
  63. * a daddr_t.
  64. */
  65. #define btodb(bytes) /* calculates (bytes / DEV_BSIZE) */ \
  66. (sizeof (bytes) > sizeof(long) \
  67. ? (daddr_t)((unsigned long long)(bytes) >> DEV_BSHIFT) \
  68. : (daddr_t)((unsigned long)(bytes) >> DEV_BSHIFT))
  69. #define dbtob(db) /* calculates (db * DEV_BSIZE) */ \
  70. ((off_t)(db) << DEV_BSHIFT)