Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 216024
b: refs/heads/master
c: ed9f524
h: refs/heads/master
v: v3
  • Loading branch information
Namhyung Kim authored and Jiri Kosina committed Sep 23, 2010
1 parent fed0565 commit 4e14a2f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 72b43570f304634532b4d66c991eef529135f68c
refs/heads/master: ed9f524ac79457f0c547c85746b19b92526be612
7 changes: 5 additions & 2 deletions trunk/include/linux/idr.h
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,13 @@ void idr_init(struct idr *idp);
/*
* IDA - IDR based id allocator, use when translation from id to
* pointer isn't necessary.
*
* IDA_BITMAP_LONGS is calculated to be one less to accommodate
* ida_bitmap->nr_busy so that the whole struct fits in 128 bytes.
*/
#define IDA_CHUNK_SIZE 128 /* 128 bytes per chunk */
#define IDA_BITMAP_LONGS (128 / sizeof(long) - 1)
#define IDA_BITMAP_BITS (IDA_BITMAP_LONGS * sizeof(long) * 8)
#define IDA_BITMAP_LONGS (IDA_CHUNK_SIZE / sizeof(long) - 1)
#define IDA_BITMAP_BITS (IDA_BITMAP_LONGS * sizeof(long) * 8)

struct ida_bitmap {
long nr_busy;
Expand Down

0 comments on commit 4e14a2f

Please sign in to comment.