aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/md/raid5.c (follow)
AgeCommit message (Expand)AuthorFilesLines
2015-09-05Merge linux-block/for-4.3/core into md/for-linuxNeilBrown1-86/+61
2015-09-02Merge branch 'for-4.3/core' of git://git.kernel.dk/linux-blockLinus Torvalds1-86/+61
2015-08-31md/raid5: ensure device failure recorded before write request returns.NeilBrown1-1/+23
2015-08-31md/raid5: use bio_list for the list of bios to return.NeilBrown1-26/+15
2015-08-31md/raid5: handle possible race as reshape completes.NeilBrown1-0/+5
2015-08-31md: be careful when testing resync_max against curr_resync_completed.NeilBrown1-1/+2
2015-08-31md/raid5: remove incorrect "min_t()" when calculating writepos.NeilBrown1-1/+6
2015-08-31md/raid5: strengthen check on reshape_position at run.NeilBrown1-15/+14
2015-08-31md/raid5: switch to use conf->chunk_sectors in place of mddev->chunk_sectors where possibleNeilBrown1-14/+14
2015-08-31md/raid5: always set conf->prev_chunk_sectors and ->prev_algoNeilBrown1-0/+3
2015-08-31md/raid5: consider updating reshape_position at start of reshape.NeilBrown1-2/+6
2015-08-13block: kill merge_bvec_fn() completelyKent Overstreet1-32/+0
2015-08-13md/raid5: get rid of bio_fits_rdev()Kent Overstreet1-22/+1
2015-08-13md/raid5: split bio for chunk_aligned_readMing Lin1-5/+32
2015-08-11block: don't access bio->bi_error after bio_put()Sasha Levin1-1/+2
2015-08-03md/raid5: don't let shrink_slab shrink too far.NeilBrown1-2/+3
2015-07-29block: manipulate bio->bi_flags through helpersJens Axboe1-1/+1
2015-07-29block: add a bi_error field to struct bioChristoph Hellwig1-26/+26
2015-07-24md/raid5: clear R5_NeedReplace when no longer needed.NeilBrown1-1/+3
2015-07-22md/raid5: avoid races when changing cache size.NeilBrown1-6/+25
2015-06-17md/raid5: ignore released_stripes checkShaohua Li1-2/+2
2015-06-17md/raid5: per hash value and exclusive wait_for_stripeYuanhan Liu1-8/+19
2015-06-17md/raid5: split wait_for_stripe and introduce wait_for_quiescentYuanhan Liu1-6/+9
2015-06-12md: make sure MD_RECOVERY_DONE is clear before starting recovery/resyncNeilBrown1-0/+1
2015-05-28md/raid5: break stripe-batches when the array has failed.NeilBrown1-0/+1
2015-05-28md/raid5: call break_stripe_batch_list from handle_stripe_clean_eventNeilBrown1-57/+4
2015-05-28md/raid5: be more selective about distributing flags across batch.NeilBrown1-11/+44
2015-05-28md/raid5: add handle_flags arg to break_stripe_batch_list.NeilBrown1-4/+8
2015-05-28md/raid5: duplicate some more handle_stripe_clean_event code in break_stripe_batch_listNeilBrown1-3/+16
2015-05-28md/raid5: remove condition test from check_break_stripe_batch_list.NeilBrown1-8/+4
2015-05-28md/raid5: Ensure a batch member is not handled prematurely.NeilBrown1-1/+5
2015-05-28md/raid5: close race between STRIPE_BIT_DELAY and batching.NeilBrown1-3/+22
2015-05-28md/raid5: ensure whole batch is delayed for all required bitmap updates.NeilBrown1-0/+9
2015-05-21raid5: fix broken async operation chainShaohua Li1-1/+1
2015-05-08md/raid5: fix handling of degraded stripes in batches.NeilBrown1-14/+3
2015-05-08md/raid5: fix allocation of 'scribble' array.NeilBrown1-22/+43
2015-05-08md/raid5: don't record new size if resize_stripes fails.NeilBrown1-1/+2
2015-05-08md/raid5: avoid reading parity blocks for full-stripe write to degraded arrayNeilBrown1-1/+3
2015-05-08md/raid5: more incorrect BUG_ON in handle_stripe_fill.NeilBrown1-1/+1
2015-05-08md/raid5: new alloc_stripe() to allocate an initialize a stripe.NeilBrown1-14/+18
2015-04-22md/raid5: don't do chunk aligned read on degraded array.Eric Mei1-3/+12
2015-04-22md/raid5: allow the stripe_cache to grow and shrink.NeilBrown1-7/+61
2015-04-22md/raid5: change ->inactive_blocked to a bit-flag.NeilBrown1-5/+8
2015-04-22md/raid5: move max_nr_stripes management into grow_one_stripe and drop_one_stripeNeilBrown1-33/+24
2015-04-22md/raid5: pass gfp_t arg to grow_one_stripe()NeilBrown1-7/+7
2015-04-22md/raid5: introduce configuration option rmw_levelMarkus Stockhausen1-0/+44
2015-04-22md/raid5: activate raid6 rmw featureMarkus Stockhausen1-26/+78
2015-04-22raid5: handle expansion/resync case with stripe batchingshli@kernel.org1-8/+16
2015-04-22raid5: handle io error of batch listshli@kernel.org1-0/+48
2015-04-22RAID5: batch adjacent full stripe writeshli@kernel.org1-25/+332