Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 30371
b: refs/heads/master
c: 0cdd02c
h: refs/heads/master
i:
  30369: 59067e2
  30367: d5aaf83
v: v3
  • Loading branch information
NeilBrown authored and Linus Torvalds committed Jun 26, 2006
1 parent 1b3f017 commit 07c9893
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 23 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: a647e4bc5ce697e25ff50d2e22de68a581b1ed38
refs/heads/master: 0cdd02cabd86b5d547f882005e23a93929f0ace9
22 changes: 0 additions & 22 deletions trunk/drivers/md/bitmap.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@
*
* flush after percent set rather than just time based. (maybe both).
* wait if count gets too high, wake when it drops to half.
* allow bitmap to be mirrored with superblock (before or after...)
* allow hot-add to re-instate a current device.
* allow hot-add of bitmap after quiessing device
*/

#include <linux/module.h>
Expand Down Expand Up @@ -70,23 +67,6 @@ static inline char * bmname(struct bitmap *bitmap)
return bitmap->mddev ? mdname(bitmap->mddev) : "mdX";
}


/*
* test if the bitmap is active
*/
int bitmap_active(struct bitmap *bitmap)
{
unsigned long flags;
int res = 0;

if (!bitmap)
return res;
spin_lock_irqsave(&bitmap->lock, flags);
res = bitmap->flags & BITMAP_ACTIVE;
spin_unlock_irqrestore(&bitmap->lock, flags);
return res;
}

#define WRITE_POOL_SIZE 256

/*
Expand Down Expand Up @@ -1496,8 +1476,6 @@ int bitmap_create(mddev_t *mddev)
if (!bitmap->bp)
goto error;

bitmap->flags |= BITMAP_ACTIVE;

/* now that we have some pages available, initialize the in-memory
* bitmap from the on-disk bitmap */
start = 0;
Expand Down

0 comments on commit 07c9893

Please sign in to comment.