Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'md-3.4-fixes' of git://neil.brown.name/md

Pull one more md bugfix from NeilBrown:
"Fix bug in recent fix to RAID10.

Without this patch, recovery will crash"

* tag 'md-3.4-fixes' of git://neil.brown.name/md:
md/raid10: fix transcription error in calc_sectors conversion.

+1 -1
+1 -1
drivers/md/raid10.c
··· 3189 3189 if (conf->far_offset) 3190 3190 conf->stride = 1 << conf->chunk_shift; 3191 3191 else { 3192 - sector_div(size, conf->near_copies); 3192 + sector_div(size, conf->far_copies); 3193 3193 conf->stride = size << conf->chunk_shift; 3194 3194 } 3195 3195 }