Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 24077
b: refs/heads/master
c: 26b6e05
h: refs/heads/master
i:
  24075: 74ecc14
v: v3
  • Loading branch information
Matthew Dobson authored and Linus Torvalds committed Mar 26, 2006
1 parent c8269bc commit 466c24b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 16 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: f183323d3822dee4d7b3147a59b6e8987fe201e0
refs/heads/master: 26b6e051bc36b968a0b5ac96903b99e050d20b87
17 changes: 2 additions & 15 deletions trunk/drivers/md/multipath.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,18 +35,6 @@
#define NR_RESERVED_BUFS 32


static void *mp_pool_alloc(gfp_t gfp_flags, void *data)
{
struct multipath_bh *mpb;
mpb = kzalloc(sizeof(*mpb), gfp_flags);
return mpb;
}

static void mp_pool_free(void *mpb, void *data)
{
kfree(mpb);
}

static int multipath_map (multipath_conf_t *conf)
{
int i, disks = conf->raid_disks;
Expand Down Expand Up @@ -494,9 +482,8 @@ static int multipath_run (mddev_t *mddev)
}
mddev->degraded = conf->raid_disks = conf->working_disks;

conf->pool = mempool_create(NR_RESERVED_BUFS,
mp_pool_alloc, mp_pool_free,
NULL);
conf->pool = mempool_create_kzalloc_pool(NR_RESERVED_BUFS,
sizeof(struct multipath_bh));
if (conf->pool == NULL) {
printk(KERN_ERR
"multipath: couldn't allocate memory for %s\n",
Expand Down

0 comments on commit 466c24b

Please sign in to comment.