bitmap.c 669 B

1234567891011121314151617181920212223242526272829303132
  1. /*
  2. * linux/fs/ext3/bitmap.c
  3. *
  4. * Copyright (C) 1992, 1993, 1994, 1995
  5. * Remy Card (card@masi.ibp.fr)
  6. * Laboratoire MASI - Institut Blaise Pascal
  7. * Universite Pierre et Marie Curie (Paris VI)
  8. */
  9. #ifdef EXT3FS_DEBUG
  10. #include <linux/buffer_head.h>
  11. #include "ext3_fs.h"
  12. static int nibblemap[] = {4, 3, 3, 2, 3, 2, 2, 1, 3, 2, 2, 1, 2, 1, 1, 0};
  13. unsigned long ext3_count_free (struct buffer_head * map, unsigned int numchars)
  14. {
  15. unsigned int i;
  16. unsigned long sum = 0;
  17. if (!map)
  18. return (0);
  19. for (i = 0; i < numchars; i++)
  20. sum += nibblemap[map->b_data[i] & 0xf] +
  21. nibblemap[(map->b_data[i] >> 4) & 0xf];
  22. return (sum);
  23. }
  24. #endif /* EXT3FS_DEBUG */