Skip to content

Commit

Permalink
Merge tag 'md-3.4-fixes' of git://neil.brown.name/md
Browse files Browse the repository at this point in the history
Pull one small fix for md/bitmaps from NeilBrown:
 "This fixes a regression that was introduced in the merge window."

* tag 'md-3.4-fixes' of git://neil.brown.name/md:
  md/bitmap: fix calculation of 'chunks' - missing shift.
  • Loading branch information
Linus Torvalds committed May 4, 2012
2 parents f462204 + b16b1b6 commit 0854224
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
3 changes: 1 addition & 2 deletions drivers/md/bitmap.c
Original file line number Diff line number Diff line change
Expand Up @@ -1727,8 +1727,7 @@ int bitmap_create(struct mddev *mddev)
bitmap->chunkshift = (ffz(~mddev->bitmap_info.chunksize)
- BITMAP_BLOCK_SHIFT);

/* now that chunksize and chunkshift are set, we can use these macros */
chunks = (blocks + bitmap->chunkshift - 1) >>
chunks = (blocks + (1 << bitmap->chunkshift) - 1) >>
bitmap->chunkshift;
pages = (chunks + PAGE_COUNTER_RATIO - 1) / PAGE_COUNTER_RATIO;

Expand Down
3 changes: 0 additions & 3 deletions drivers/md/bitmap.h
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,6 @@ typedef __u16 bitmap_counter_t;

#define BITMAP_BLOCK_SHIFT 9

/* how many blocks per chunk? (this is variable) */
#define CHUNK_BLOCK_RATIO(bitmap) ((bitmap)->mddev->bitmap_info.chunksize >> BITMAP_BLOCK_SHIFT)

#endif

/*
Expand Down

0 comments on commit 0854224

Please sign in to comment.