The patch titled
     git-md-accel: fix type that is stopping raid5 grow from working.
has been removed from the -mm tree.  Its filename was
     git-md-accel-fix-type-that-is-stopping-raid5-grow-from-working.patch

This patch was dropped because it was merged into mainline or a subsystem tree

------------------------------------------------------
Subject: git-md-accel: fix type that is stopping raid5 grow from working.
From: NeilBrown <[EMAIL PROTECTED]>

This kmem_cache_create is creating a cache that already exists.  We could use
the alternate name, just like we do a few lines up.

Signed-off-by: Neil Brown <[EMAIL PROTECTED]>
Cc: "Dan Williams" <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---

 drivers/md/raid5.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff -puN 
drivers/md/raid5.c~git-md-accel-fix-type-that-is-stopping-raid5-grow-from-working
 drivers/md/raid5.c
--- 
a/drivers/md/raid5.c~git-md-accel-fix-type-that-is-stopping-raid5-grow-from-working
+++ a/drivers/md/raid5.c
@@ -1380,7 +1380,7 @@ static int resize_stripes(raid5_conf_t *
        if (!sc)
                return -ENOMEM;
 
-       sc_q = kmem_cache_create(conf->sq_cache_name[conf->active_name],
+       sc_q = kmem_cache_create(conf->sq_cache_name[1-conf->active_name],
                               (sizeof(struct stripe_queue)+(newsize-1) *
                                sizeof(struct r5_queue_dev)) +
                                r5_io_weight_size(newsize) +
_

Patches currently in -mm which might be from [EMAIL PROTECTED] are

origin.patch
git-md-accel.patch
ecryptfs-allow-lower-fs-to-interpret-attr_kill_sid.patch
knfsd-only-set-attr_kill_sid-if-attr_mode-isnt-being-explicitly-set.patch
vfs-make-notify_change-pass-attr_kill_sid-to-setattr-operations.patch
sysctl-remove-broken-sunrpc-debug-binary-sysctls.patch
exportfs-add-fid-type.patch
exportfs-add-new-methods.patch
ext2-new-export-ops.patch
ext3-new-export-ops.patch
ext4-new-export-ops.patch
efs-new-export-ops.patch
jfs-new-export-ops.patch
ntfs-new-export-ops.patch
fat-new-export-ops.patch
isofs-new-export-ops.patch
shmem-new-export-ops.patch
reiserfs-new-export-ops.patch
gfs2-new-export-ops.patch
ocfs2-new-export-ops.patch
exportfs-remove-old-methods.patch
exportfs-make-struct-export_operations-const.patch
exportfs-update-documentation.patch

-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to