Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 30470
b: refs/heads/master
c: 08cd365
h: refs/heads/master
v: v3
  • Loading branch information
Andi Kleen authored and Linus Torvalds committed Jun 26, 2006
1 parent 4280fb4 commit f74abc0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 5282aab87a8be3f5e6c36a4c2ee4b71852def1bb
refs/heads/master: 08cd36570e47176c7b6bd3e80125aa46c4638097
5 changes: 5 additions & 0 deletions trunk/include/linux/bitmap.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@
* The available bitmap operations and their rough meaning in the
* case that the bitmap is a single unsigned long are thus:
*
* Note that nbits should be always a compile time evaluable constant.
* Otherwise many inlines will generate horrible code.
*
* bitmap_zero(dst, nbits) *dst = 0UL
* bitmap_fill(dst, nbits) *dst = ~0UL
* bitmap_copy(dst, src, nbits) *dst = *src
Expand Down Expand Up @@ -244,6 +247,8 @@ static inline int bitmap_full(const unsigned long *src, int nbits)

static inline int bitmap_weight(const unsigned long *src, int nbits)
{
if (nbits <= BITS_PER_LONG)
return hweight_long(*src & BITMAP_LAST_WORD_MASK(nbits));
return __bitmap_weight(src, nbits);
}

Expand Down

0 comments on commit f74abc0

Please sign in to comment.