Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 2 | * Copyright (c) 2000-2005 Silicon Graphics, Inc. |
| 3 | * All Rights Reserved. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 5 | * This program is free software; you can redistribute it and/or |
| 6 | * modify it under the terms of the GNU General Public License as |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * published by the Free Software Foundation. |
| 8 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 9 | * This program is distributed in the hope that it would be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program; if not, write the Free Software Foundation, |
| 16 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include "xfs.h" |
| 19 | #include "xfs_bit.h" |
| 20 | #include "xfs_log.h" |
| 21 | #include "xfs_trans.h" |
| 22 | #include "xfs_buf_item.h" |
| 23 | |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 24 | /* |
| 25 | * XFS bit manipulation routines, used in non-realtime code. |
| 26 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | /* |
Eric Sandeen | 24ad33f | 2007-06-28 16:43:30 +1000 | [diff] [blame] | 29 | * Return whether bitmap is empty. |
| 30 | * Size is number of words in the bitmap, which is padded to word boundary |
| 31 | * Returns 1 for empty, 0 for non-empty. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | */ |
| 33 | int |
Eric Sandeen | 24ad33f | 2007-06-28 16:43:30 +1000 | [diff] [blame] | 34 | xfs_bitmap_empty(uint *map, uint size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | { |
Eric Sandeen | 24ad33f | 2007-06-28 16:43:30 +1000 | [diff] [blame] | 36 | uint i; |
| 37 | uint ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
Eric Sandeen | 24ad33f | 2007-06-28 16:43:30 +1000 | [diff] [blame] | 39 | for (i = 0; i < size; i++) { |
| 40 | ret |= map[i]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | } |
| 42 | |
Eric Sandeen | 24ad33f | 2007-06-28 16:43:30 +1000 | [diff] [blame] | 43 | return (ret == 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | } |
| 45 | |
| 46 | /* |
| 47 | * Count the number of contiguous bits set in the bitmap starting with bit |
| 48 | * start_bit. Size is the size of the bitmap in words. |
| 49 | */ |
| 50 | int |
| 51 | xfs_contig_bits(uint *map, uint size, uint start_bit) |
| 52 | { |
| 53 | uint * p = ((unsigned int *) map) + (start_bit >> BIT_TO_WORD_SHIFT); |
| 54 | uint result = 0; |
| 55 | uint tmp; |
| 56 | |
| 57 | size <<= BIT_TO_WORD_SHIFT; |
| 58 | |
| 59 | ASSERT(start_bit < size); |
| 60 | size -= start_bit & ~(NBWORD - 1); |
| 61 | start_bit &= (NBWORD - 1); |
| 62 | if (start_bit) { |
| 63 | tmp = *p++; |
| 64 | /* set to one first offset bits prior to start */ |
| 65 | tmp |= (~0U >> (NBWORD-start_bit)); |
| 66 | if (tmp != ~0U) |
| 67 | goto found; |
| 68 | result += NBWORD; |
| 69 | size -= NBWORD; |
| 70 | } |
| 71 | while (size) { |
| 72 | if ((tmp = *p++) != ~0U) |
| 73 | goto found; |
| 74 | result += NBWORD; |
| 75 | size -= NBWORD; |
| 76 | } |
| 77 | return result - start_bit; |
| 78 | found: |
| 79 | return result + ffz(tmp) - start_bit; |
| 80 | } |
| 81 | |
| 82 | /* |
| 83 | * This takes the bit number to start looking from and |
| 84 | * returns the next set bit from there. It returns -1 |
| 85 | * if there are no more bits set or the start bit is |
| 86 | * beyond the end of the bitmap. |
| 87 | * |
| 88 | * Size is the number of words, not bytes, in the bitmap. |
| 89 | */ |
| 90 | int xfs_next_bit(uint *map, uint size, uint start_bit) |
| 91 | { |
| 92 | uint * p = ((unsigned int *) map) + (start_bit >> BIT_TO_WORD_SHIFT); |
| 93 | uint result = start_bit & ~(NBWORD - 1); |
| 94 | uint tmp; |
| 95 | |
| 96 | size <<= BIT_TO_WORD_SHIFT; |
| 97 | |
| 98 | if (start_bit >= size) |
| 99 | return -1; |
| 100 | size -= result; |
| 101 | start_bit &= (NBWORD - 1); |
| 102 | if (start_bit) { |
| 103 | tmp = *p++; |
| 104 | /* set to zero first offset bits prior to start */ |
| 105 | tmp &= (~0U << start_bit); |
| 106 | if (tmp != 0U) |
| 107 | goto found; |
| 108 | result += NBWORD; |
| 109 | size -= NBWORD; |
| 110 | } |
| 111 | while (size) { |
| 112 | if ((tmp = *p++) != 0U) |
| 113 | goto found; |
| 114 | result += NBWORD; |
| 115 | size -= NBWORD; |
| 116 | } |
| 117 | return -1; |
| 118 | found: |
| 119 | return result + ffs(tmp) - 1; |
| 120 | } |