bitmap.c 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. * Bitmaps for set_bit, clear_bit, test_and_set_bit, ...
  3. * See include/asm/{bitops.h|posix_types.h} for details
  4. *
  5. * Copyright IBM Corp. 1999, 2009
  6. * Author(s): Martin Schwidefsky <schwidefsky@de.ibm.com>,
  7. */
  8. #include <linux/bitops.h>
  9. #include <linux/module.h>
  10. const char _zb_findmap[] = {
  11. 0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,
  12. 0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5,
  13. 0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,
  14. 0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,6,
  15. 0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,
  16. 0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5,
  17. 0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,
  18. 0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,7,
  19. 0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,
  20. 0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5,
  21. 0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,
  22. 0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,6,
  23. 0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,
  24. 0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5,
  25. 0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,
  26. 0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,8 };
  27. EXPORT_SYMBOL(_zb_findmap);
  28. const char _sb_findmap[] = {
  29. 8,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,
  30. 4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,
  31. 5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,
  32. 4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,
  33. 6,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,
  34. 4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,
  35. 5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,
  36. 4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,
  37. 7,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,
  38. 4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,
  39. 5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,
  40. 4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,
  41. 6,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,
  42. 4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,
  43. 5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,
  44. 4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0 };
  45. EXPORT_SYMBOL(_sb_findmap);