raid1.c 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256
  1. /*
  2. * raid1.c : Multiple Devices driver for Linux
  3. *
  4. * Copyright (C) 1999, 2000, 2001 Ingo Molnar, Red Hat
  5. *
  6. * Copyright (C) 1996, 1997, 1998 Ingo Molnar, Miguel de Icaza, Gadi Oxman
  7. *
  8. * RAID-1 management functions.
  9. *
  10. * Better read-balancing code written by Mika Kuoppala <miku@iki.fi>, 2000
  11. *
  12. * Fixes to reconstruction by Jakob Østergaard" <jakob@ostenfeld.dk>
  13. * Various fixes by Neil Brown <neilb@cse.unsw.edu.au>
  14. *
  15. * Changes by Peter T. Breuer <ptb@it.uc3m.es> 31/1/2003 to support
  16. * bitmapped intelligence in resync:
  17. *
  18. * - bitmap marked during normal i/o
  19. * - bitmap used to skip nondirty blocks during sync
  20. *
  21. * Additions to bitmap code, (C) 2003-2004 Paul Clements, SteelEye Technology:
  22. * - persistent bitmap code
  23. *
  24. * This program is free software; you can redistribute it and/or modify
  25. * it under the terms of the GNU General Public License as published by
  26. * the Free Software Foundation; either version 2, or (at your option)
  27. * any later version.
  28. *
  29. * You should have received a copy of the GNU General Public License
  30. * (for example /usr/src/linux/COPYING); if not, write to the Free
  31. * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  32. */
  33. #include <linux/slab.h>
  34. #include <linux/delay.h>
  35. #include <linux/blkdev.h>
  36. #include <linux/seq_file.h>
  37. #include "md.h"
  38. #include "raid1.h"
  39. #include "bitmap.h"
  40. #define DEBUG 0
  41. #if DEBUG
  42. #define PRINTK(x...) printk(x)
  43. #else
  44. #define PRINTK(x...)
  45. #endif
  46. /*
  47. * Number of guaranteed r1bios in case of extreme VM load:
  48. */
  49. #define NR_RAID1_BIOS 256
  50. static void allow_barrier(conf_t *conf);
  51. static void lower_barrier(conf_t *conf);
  52. static void * r1bio_pool_alloc(gfp_t gfp_flags, void *data)
  53. {
  54. struct pool_info *pi = data;
  55. int size = offsetof(r1bio_t, bios[pi->raid_disks]);
  56. /* allocate a r1bio with room for raid_disks entries in the bios array */
  57. return kzalloc(size, gfp_flags);
  58. }
  59. static void r1bio_pool_free(void *r1_bio, void *data)
  60. {
  61. kfree(r1_bio);
  62. }
  63. #define RESYNC_BLOCK_SIZE (64*1024)
  64. //#define RESYNC_BLOCK_SIZE PAGE_SIZE
  65. #define RESYNC_SECTORS (RESYNC_BLOCK_SIZE >> 9)
  66. #define RESYNC_PAGES ((RESYNC_BLOCK_SIZE + PAGE_SIZE-1) / PAGE_SIZE)
  67. #define RESYNC_WINDOW (2048*1024)
  68. static void * r1buf_pool_alloc(gfp_t gfp_flags, void *data)
  69. {
  70. struct pool_info *pi = data;
  71. struct page *page;
  72. r1bio_t *r1_bio;
  73. struct bio *bio;
  74. int i, j;
  75. r1_bio = r1bio_pool_alloc(gfp_flags, pi);
  76. if (!r1_bio)
  77. return NULL;
  78. /*
  79. * Allocate bios : 1 for reading, n-1 for writing
  80. */
  81. for (j = pi->raid_disks ; j-- ; ) {
  82. bio = bio_kmalloc(gfp_flags, RESYNC_PAGES);
  83. if (!bio)
  84. goto out_free_bio;
  85. r1_bio->bios[j] = bio;
  86. }
  87. /*
  88. * Allocate RESYNC_PAGES data pages and attach them to
  89. * the first bio.
  90. * If this is a user-requested check/repair, allocate
  91. * RESYNC_PAGES for each bio.
  92. */
  93. if (test_bit(MD_RECOVERY_REQUESTED, &pi->mddev->recovery))
  94. j = pi->raid_disks;
  95. else
  96. j = 1;
  97. while(j--) {
  98. bio = r1_bio->bios[j];
  99. for (i = 0; i < RESYNC_PAGES; i++) {
  100. page = alloc_page(gfp_flags);
  101. if (unlikely(!page))
  102. goto out_free_pages;
  103. bio->bi_io_vec[i].bv_page = page;
  104. bio->bi_vcnt = i+1;
  105. }
  106. }
  107. /* If not user-requests, copy the page pointers to all bios */
  108. if (!test_bit(MD_RECOVERY_REQUESTED, &pi->mddev->recovery)) {
  109. for (i=0; i<RESYNC_PAGES ; i++)
  110. for (j=1; j<pi->raid_disks; j++)
  111. r1_bio->bios[j]->bi_io_vec[i].bv_page =
  112. r1_bio->bios[0]->bi_io_vec[i].bv_page;
  113. }
  114. r1_bio->master_bio = NULL;
  115. return r1_bio;
  116. out_free_pages:
  117. for (j=0 ; j < pi->raid_disks; j++)
  118. for (i=0; i < r1_bio->bios[j]->bi_vcnt ; i++)
  119. put_page(r1_bio->bios[j]->bi_io_vec[i].bv_page);
  120. j = -1;
  121. out_free_bio:
  122. while ( ++j < pi->raid_disks )
  123. bio_put(r1_bio->bios[j]);
  124. r1bio_pool_free(r1_bio, data);
  125. return NULL;
  126. }
  127. static void r1buf_pool_free(void *__r1_bio, void *data)
  128. {
  129. struct pool_info *pi = data;
  130. int i,j;
  131. r1bio_t *r1bio = __r1_bio;
  132. for (i = 0; i < RESYNC_PAGES; i++)
  133. for (j = pi->raid_disks; j-- ;) {
  134. if (j == 0 ||
  135. r1bio->bios[j]->bi_io_vec[i].bv_page !=
  136. r1bio->bios[0]->bi_io_vec[i].bv_page)
  137. safe_put_page(r1bio->bios[j]->bi_io_vec[i].bv_page);
  138. }
  139. for (i=0 ; i < pi->raid_disks; i++)
  140. bio_put(r1bio->bios[i]);
  141. r1bio_pool_free(r1bio, data);
  142. }
  143. static void put_all_bios(conf_t *conf, r1bio_t *r1_bio)
  144. {
  145. int i;
  146. for (i = 0; i < conf->raid_disks; i++) {
  147. struct bio **bio = r1_bio->bios + i;
  148. if (*bio && *bio != IO_BLOCKED)
  149. bio_put(*bio);
  150. *bio = NULL;
  151. }
  152. }
  153. static void free_r1bio(r1bio_t *r1_bio)
  154. {
  155. conf_t *conf = r1_bio->mddev->private;
  156. /*
  157. * Wake up any possible resync thread that waits for the device
  158. * to go idle.
  159. */
  160. allow_barrier(conf);
  161. put_all_bios(conf, r1_bio);
  162. mempool_free(r1_bio, conf->r1bio_pool);
  163. }
  164. static void put_buf(r1bio_t *r1_bio)
  165. {
  166. conf_t *conf = r1_bio->mddev->private;
  167. int i;
  168. for (i=0; i<conf->raid_disks; i++) {
  169. struct bio *bio = r1_bio->bios[i];
  170. if (bio->bi_end_io)
  171. rdev_dec_pending(conf->mirrors[i].rdev, r1_bio->mddev);
  172. }
  173. mempool_free(r1_bio, conf->r1buf_pool);
  174. lower_barrier(conf);
  175. }
  176. static void reschedule_retry(r1bio_t *r1_bio)
  177. {
  178. unsigned long flags;
  179. mddev_t *mddev = r1_bio->mddev;
  180. conf_t *conf = mddev->private;
  181. spin_lock_irqsave(&conf->device_lock, flags);
  182. list_add(&r1_bio->retry_list, &conf->retry_list);
  183. conf->nr_queued ++;
  184. spin_unlock_irqrestore(&conf->device_lock, flags);
  185. wake_up(&conf->wait_barrier);
  186. md_wakeup_thread(mddev->thread);
  187. }
  188. /*
  189. * raid_end_bio_io() is called when we have finished servicing a mirrored
  190. * operation and are ready to return a success/failure code to the buffer
  191. * cache layer.
  192. */
  193. static void raid_end_bio_io(r1bio_t *r1_bio)
  194. {
  195. struct bio *bio = r1_bio->master_bio;
  196. /* if nobody has done the final endio yet, do it now */
  197. if (!test_and_set_bit(R1BIO_Returned, &r1_bio->state)) {
  198. PRINTK(KERN_DEBUG "raid1: sync end %s on sectors %llu-%llu\n",
  199. (bio_data_dir(bio) == WRITE) ? "write" : "read",
  200. (unsigned long long) bio->bi_sector,
  201. (unsigned long long) bio->bi_sector +
  202. (bio->bi_size >> 9) - 1);
  203. bio_endio(bio,
  204. test_bit(R1BIO_Uptodate, &r1_bio->state) ? 0 : -EIO);
  205. }
  206. free_r1bio(r1_bio);
  207. }
  208. /*
  209. * Update disk head position estimator based on IRQ completion info.
  210. */
  211. static inline void update_head_pos(int disk, r1bio_t *r1_bio)
  212. {
  213. conf_t *conf = r1_bio->mddev->private;
  214. conf->mirrors[disk].head_position =
  215. r1_bio->sector + (r1_bio->sectors);
  216. }
  217. static void raid1_end_read_request(struct bio *bio, int error)
  218. {
  219. int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
  220. r1bio_t *r1_bio = bio->bi_private;
  221. int mirror;
  222. conf_t *conf = r1_bio->mddev->private;
  223. mirror = r1_bio->read_disk;
  224. /*
  225. * this branch is our 'one mirror IO has finished' event handler:
  226. */
  227. update_head_pos(mirror, r1_bio);
  228. if (uptodate)
  229. set_bit(R1BIO_Uptodate, &r1_bio->state);
  230. else {
  231. /* If all other devices have failed, we want to return
  232. * the error upwards rather than fail the last device.
  233. * Here we redefine "uptodate" to mean "Don't want to retry"
  234. */
  235. unsigned long flags;
  236. spin_lock_irqsave(&conf->device_lock, flags);
  237. if (r1_bio->mddev->degraded == conf->raid_disks ||
  238. (r1_bio->mddev->degraded == conf->raid_disks-1 &&
  239. !test_bit(Faulty, &conf->mirrors[mirror].rdev->flags)))
  240. uptodate = 1;
  241. spin_unlock_irqrestore(&conf->device_lock, flags);
  242. }
  243. if (uptodate)
  244. raid_end_bio_io(r1_bio);
  245. else {
  246. /*
  247. * oops, read error:
  248. */
  249. char b[BDEVNAME_SIZE];
  250. if (printk_ratelimit())
  251. printk(KERN_ERR "md/raid1:%s: %s: rescheduling sector %llu\n",
  252. mdname(conf->mddev),
  253. bdevname(conf->mirrors[mirror].rdev->bdev,b), (unsigned long long)r1_bio->sector);
  254. reschedule_retry(r1_bio);
  255. }
  256. rdev_dec_pending(conf->mirrors[mirror].rdev, conf->mddev);
  257. }
  258. static void r1_bio_write_done(r1bio_t *r1_bio)
  259. {
  260. if (atomic_dec_and_test(&r1_bio->remaining))
  261. {
  262. /* it really is the end of this request */
  263. if (test_bit(R1BIO_BehindIO, &r1_bio->state)) {
  264. /* free extra copy of the data pages */
  265. int i = r1_bio->behind_page_count;
  266. while (i--)
  267. safe_put_page(r1_bio->behind_pages[i]);
  268. kfree(r1_bio->behind_pages);
  269. r1_bio->behind_pages = NULL;
  270. }
  271. /* clear the bitmap if all writes complete successfully */
  272. bitmap_endwrite(r1_bio->mddev->bitmap, r1_bio->sector,
  273. r1_bio->sectors,
  274. !test_bit(R1BIO_Degraded, &r1_bio->state),
  275. test_bit(R1BIO_BehindIO, &r1_bio->state));
  276. md_write_end(r1_bio->mddev);
  277. raid_end_bio_io(r1_bio);
  278. }
  279. }
  280. static void raid1_end_write_request(struct bio *bio, int error)
  281. {
  282. int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
  283. r1bio_t *r1_bio = bio->bi_private;
  284. int mirror, behind = test_bit(R1BIO_BehindIO, &r1_bio->state);
  285. conf_t *conf = r1_bio->mddev->private;
  286. struct bio *to_put = NULL;
  287. for (mirror = 0; mirror < conf->raid_disks; mirror++)
  288. if (r1_bio->bios[mirror] == bio)
  289. break;
  290. /*
  291. * 'one mirror IO has finished' event handler:
  292. */
  293. r1_bio->bios[mirror] = NULL;
  294. to_put = bio;
  295. if (!uptodate) {
  296. md_error(r1_bio->mddev, conf->mirrors[mirror].rdev);
  297. /* an I/O failed, we can't clear the bitmap */
  298. set_bit(R1BIO_Degraded, &r1_bio->state);
  299. } else
  300. /*
  301. * Set R1BIO_Uptodate in our master bio, so that we
  302. * will return a good error code for to the higher
  303. * levels even if IO on some other mirrored buffer
  304. * fails.
  305. *
  306. * The 'master' represents the composite IO operation
  307. * to user-side. So if something waits for IO, then it
  308. * will wait for the 'master' bio.
  309. */
  310. set_bit(R1BIO_Uptodate, &r1_bio->state);
  311. update_head_pos(mirror, r1_bio);
  312. if (behind) {
  313. if (test_bit(WriteMostly, &conf->mirrors[mirror].rdev->flags))
  314. atomic_dec(&r1_bio->behind_remaining);
  315. /*
  316. * In behind mode, we ACK the master bio once the I/O
  317. * has safely reached all non-writemostly
  318. * disks. Setting the Returned bit ensures that this
  319. * gets done only once -- we don't ever want to return
  320. * -EIO here, instead we'll wait
  321. */
  322. if (atomic_read(&r1_bio->behind_remaining) >= (atomic_read(&r1_bio->remaining)-1) &&
  323. test_bit(R1BIO_Uptodate, &r1_bio->state)) {
  324. /* Maybe we can return now */
  325. if (!test_and_set_bit(R1BIO_Returned, &r1_bio->state)) {
  326. struct bio *mbio = r1_bio->master_bio;
  327. PRINTK(KERN_DEBUG "raid1: behind end write sectors %llu-%llu\n",
  328. (unsigned long long) mbio->bi_sector,
  329. (unsigned long long) mbio->bi_sector +
  330. (mbio->bi_size >> 9) - 1);
  331. bio_endio(mbio, 0);
  332. }
  333. }
  334. }
  335. rdev_dec_pending(conf->mirrors[mirror].rdev, conf->mddev);
  336. /*
  337. * Let's see if all mirrored write operations have finished
  338. * already.
  339. */
  340. r1_bio_write_done(r1_bio);
  341. if (to_put)
  342. bio_put(to_put);
  343. }
  344. /*
  345. * This routine returns the disk from which the requested read should
  346. * be done. There is a per-array 'next expected sequential IO' sector
  347. * number - if this matches on the next IO then we use the last disk.
  348. * There is also a per-disk 'last know head position' sector that is
  349. * maintained from IRQ contexts, both the normal and the resync IO
  350. * completion handlers update this position correctly. If there is no
  351. * perfect sequential match then we pick the disk whose head is closest.
  352. *
  353. * If there are 2 mirrors in the same 2 devices, performance degrades
  354. * because position is mirror, not device based.
  355. *
  356. * The rdev for the device selected will have nr_pending incremented.
  357. */
  358. static int read_balance(conf_t *conf, r1bio_t *r1_bio)
  359. {
  360. const sector_t this_sector = r1_bio->sector;
  361. const int sectors = r1_bio->sectors;
  362. int start_disk;
  363. int best_disk;
  364. int i;
  365. sector_t best_dist;
  366. mdk_rdev_t *rdev;
  367. int choose_first;
  368. rcu_read_lock();
  369. /*
  370. * Check if we can balance. We can balance on the whole
  371. * device if no resync is going on, or below the resync window.
  372. * We take the first readable disk when above the resync window.
  373. */
  374. retry:
  375. best_disk = -1;
  376. best_dist = MaxSector;
  377. if (conf->mddev->recovery_cp < MaxSector &&
  378. (this_sector + sectors >= conf->next_resync)) {
  379. choose_first = 1;
  380. start_disk = 0;
  381. } else {
  382. choose_first = 0;
  383. start_disk = conf->last_used;
  384. }
  385. for (i = 0 ; i < conf->raid_disks ; i++) {
  386. sector_t dist;
  387. int disk = start_disk + i;
  388. if (disk >= conf->raid_disks)
  389. disk -= conf->raid_disks;
  390. rdev = rcu_dereference(conf->mirrors[disk].rdev);
  391. if (r1_bio->bios[disk] == IO_BLOCKED
  392. || rdev == NULL
  393. || test_bit(Faulty, &rdev->flags))
  394. continue;
  395. if (!test_bit(In_sync, &rdev->flags) &&
  396. rdev->recovery_offset < this_sector + sectors)
  397. continue;
  398. if (test_bit(WriteMostly, &rdev->flags)) {
  399. /* Don't balance among write-mostly, just
  400. * use the first as a last resort */
  401. if (best_disk < 0)
  402. best_disk = disk;
  403. continue;
  404. }
  405. /* This is a reasonable device to use. It might
  406. * even be best.
  407. */
  408. dist = abs(this_sector - conf->mirrors[disk].head_position);
  409. if (choose_first
  410. /* Don't change to another disk for sequential reads */
  411. || conf->next_seq_sect == this_sector
  412. || dist == 0
  413. /* If device is idle, use it */
  414. || atomic_read(&rdev->nr_pending) == 0) {
  415. best_disk = disk;
  416. break;
  417. }
  418. if (dist < best_dist) {
  419. best_dist = dist;
  420. best_disk = disk;
  421. }
  422. }
  423. if (best_disk >= 0) {
  424. rdev = rcu_dereference(conf->mirrors[best_disk].rdev);
  425. if (!rdev)
  426. goto retry;
  427. atomic_inc(&rdev->nr_pending);
  428. if (test_bit(Faulty, &rdev->flags)) {
  429. /* cannot risk returning a device that failed
  430. * before we inc'ed nr_pending
  431. */
  432. rdev_dec_pending(rdev, conf->mddev);
  433. goto retry;
  434. }
  435. conf->next_seq_sect = this_sector + sectors;
  436. conf->last_used = best_disk;
  437. }
  438. rcu_read_unlock();
  439. return best_disk;
  440. }
  441. static int raid1_congested(void *data, int bits)
  442. {
  443. mddev_t *mddev = data;
  444. conf_t *conf = mddev->private;
  445. int i, ret = 0;
  446. if (mddev_congested(mddev, bits))
  447. return 1;
  448. rcu_read_lock();
  449. for (i = 0; i < mddev->raid_disks; i++) {
  450. mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
  451. if (rdev && !test_bit(Faulty, &rdev->flags)) {
  452. struct request_queue *q = bdev_get_queue(rdev->bdev);
  453. /* Note the '|| 1' - when read_balance prefers
  454. * non-congested targets, it can be removed
  455. */
  456. if ((bits & (1<<BDI_async_congested)) || 1)
  457. ret |= bdi_congested(&q->backing_dev_info, bits);
  458. else
  459. ret &= bdi_congested(&q->backing_dev_info, bits);
  460. }
  461. }
  462. rcu_read_unlock();
  463. return ret;
  464. }
  465. static void flush_pending_writes(conf_t *conf)
  466. {
  467. /* Any writes that have been queued but are awaiting
  468. * bitmap updates get flushed here.
  469. */
  470. spin_lock_irq(&conf->device_lock);
  471. if (conf->pending_bio_list.head) {
  472. struct bio *bio;
  473. bio = bio_list_get(&conf->pending_bio_list);
  474. spin_unlock_irq(&conf->device_lock);
  475. /* flush any pending bitmap writes to
  476. * disk before proceeding w/ I/O */
  477. bitmap_unplug(conf->mddev->bitmap);
  478. while (bio) { /* submit pending writes */
  479. struct bio *next = bio->bi_next;
  480. bio->bi_next = NULL;
  481. generic_make_request(bio);
  482. bio = next;
  483. }
  484. } else
  485. spin_unlock_irq(&conf->device_lock);
  486. }
  487. /* Barriers....
  488. * Sometimes we need to suspend IO while we do something else,
  489. * either some resync/recovery, or reconfigure the array.
  490. * To do this we raise a 'barrier'.
  491. * The 'barrier' is a counter that can be raised multiple times
  492. * to count how many activities are happening which preclude
  493. * normal IO.
  494. * We can only raise the barrier if there is no pending IO.
  495. * i.e. if nr_pending == 0.
  496. * We choose only to raise the barrier if no-one is waiting for the
  497. * barrier to go down. This means that as soon as an IO request
  498. * is ready, no other operations which require a barrier will start
  499. * until the IO request has had a chance.
  500. *
  501. * So: regular IO calls 'wait_barrier'. When that returns there
  502. * is no backgroup IO happening, It must arrange to call
  503. * allow_barrier when it has finished its IO.
  504. * backgroup IO calls must call raise_barrier. Once that returns
  505. * there is no normal IO happeing. It must arrange to call
  506. * lower_barrier when the particular background IO completes.
  507. */
  508. #define RESYNC_DEPTH 32
  509. static void raise_barrier(conf_t *conf)
  510. {
  511. spin_lock_irq(&conf->resync_lock);
  512. /* Wait until no block IO is waiting */
  513. wait_event_lock_irq(conf->wait_barrier, !conf->nr_waiting,
  514. conf->resync_lock, );
  515. /* block any new IO from starting */
  516. conf->barrier++;
  517. /* Now wait for all pending IO to complete */
  518. wait_event_lock_irq(conf->wait_barrier,
  519. !conf->nr_pending && conf->barrier < RESYNC_DEPTH,
  520. conf->resync_lock, );
  521. spin_unlock_irq(&conf->resync_lock);
  522. }
  523. static void lower_barrier(conf_t *conf)
  524. {
  525. unsigned long flags;
  526. BUG_ON(conf->barrier <= 0);
  527. spin_lock_irqsave(&conf->resync_lock, flags);
  528. conf->barrier--;
  529. spin_unlock_irqrestore(&conf->resync_lock, flags);
  530. wake_up(&conf->wait_barrier);
  531. }
  532. static void wait_barrier(conf_t *conf)
  533. {
  534. spin_lock_irq(&conf->resync_lock);
  535. if (conf->barrier) {
  536. conf->nr_waiting++;
  537. wait_event_lock_irq(conf->wait_barrier, !conf->barrier,
  538. conf->resync_lock,
  539. );
  540. conf->nr_waiting--;
  541. }
  542. conf->nr_pending++;
  543. spin_unlock_irq(&conf->resync_lock);
  544. }
  545. static void allow_barrier(conf_t *conf)
  546. {
  547. unsigned long flags;
  548. spin_lock_irqsave(&conf->resync_lock, flags);
  549. conf->nr_pending--;
  550. spin_unlock_irqrestore(&conf->resync_lock, flags);
  551. wake_up(&conf->wait_barrier);
  552. }
  553. static void freeze_array(conf_t *conf)
  554. {
  555. /* stop syncio and normal IO and wait for everything to
  556. * go quite.
  557. * We increment barrier and nr_waiting, and then
  558. * wait until nr_pending match nr_queued+1
  559. * This is called in the context of one normal IO request
  560. * that has failed. Thus any sync request that might be pending
  561. * will be blocked by nr_pending, and we need to wait for
  562. * pending IO requests to complete or be queued for re-try.
  563. * Thus the number queued (nr_queued) plus this request (1)
  564. * must match the number of pending IOs (nr_pending) before
  565. * we continue.
  566. */
  567. spin_lock_irq(&conf->resync_lock);
  568. conf->barrier++;
  569. conf->nr_waiting++;
  570. wait_event_lock_irq(conf->wait_barrier,
  571. conf->nr_pending == conf->nr_queued+1,
  572. conf->resync_lock,
  573. flush_pending_writes(conf));
  574. spin_unlock_irq(&conf->resync_lock);
  575. }
  576. static void unfreeze_array(conf_t *conf)
  577. {
  578. /* reverse the effect of the freeze */
  579. spin_lock_irq(&conf->resync_lock);
  580. conf->barrier--;
  581. conf->nr_waiting--;
  582. wake_up(&conf->wait_barrier);
  583. spin_unlock_irq(&conf->resync_lock);
  584. }
  585. /* duplicate the data pages for behind I/O
  586. */
  587. static void alloc_behind_pages(struct bio *bio, r1bio_t *r1_bio)
  588. {
  589. int i;
  590. struct bio_vec *bvec;
  591. struct page **pages = kzalloc(bio->bi_vcnt * sizeof(struct page*),
  592. GFP_NOIO);
  593. if (unlikely(!pages))
  594. return;
  595. bio_for_each_segment(bvec, bio, i) {
  596. pages[i] = alloc_page(GFP_NOIO);
  597. if (unlikely(!pages[i]))
  598. goto do_sync_io;
  599. memcpy(kmap(pages[i]) + bvec->bv_offset,
  600. kmap(bvec->bv_page) + bvec->bv_offset, bvec->bv_len);
  601. kunmap(pages[i]);
  602. kunmap(bvec->bv_page);
  603. }
  604. r1_bio->behind_pages = pages;
  605. r1_bio->behind_page_count = bio->bi_vcnt;
  606. set_bit(R1BIO_BehindIO, &r1_bio->state);
  607. return;
  608. do_sync_io:
  609. for (i = 0; i < bio->bi_vcnt; i++)
  610. if (pages[i])
  611. put_page(pages[i]);
  612. kfree(pages);
  613. PRINTK("%dB behind alloc failed, doing sync I/O\n", bio->bi_size);
  614. }
  615. static int make_request(mddev_t *mddev, struct bio * bio)
  616. {
  617. conf_t *conf = mddev->private;
  618. mirror_info_t *mirror;
  619. r1bio_t *r1_bio;
  620. struct bio *read_bio;
  621. int i, targets = 0, disks;
  622. struct bitmap *bitmap;
  623. unsigned long flags;
  624. const int rw = bio_data_dir(bio);
  625. const unsigned long do_sync = (bio->bi_rw & REQ_SYNC);
  626. const unsigned long do_flush_fua = (bio->bi_rw & (REQ_FLUSH | REQ_FUA));
  627. mdk_rdev_t *blocked_rdev;
  628. int plugged;
  629. /*
  630. * Register the new request and wait if the reconstruction
  631. * thread has put up a bar for new requests.
  632. * Continue immediately if no resync is active currently.
  633. */
  634. md_write_start(mddev, bio); /* wait on superblock update early */
  635. if (bio_data_dir(bio) == WRITE &&
  636. bio->bi_sector + bio->bi_size/512 > mddev->suspend_lo &&
  637. bio->bi_sector < mddev->suspend_hi) {
  638. /* As the suspend_* range is controlled by
  639. * userspace, we want an interruptible
  640. * wait.
  641. */
  642. DEFINE_WAIT(w);
  643. for (;;) {
  644. flush_signals(current);
  645. prepare_to_wait(&conf->wait_barrier,
  646. &w, TASK_INTERRUPTIBLE);
  647. if (bio->bi_sector + bio->bi_size/512 <= mddev->suspend_lo ||
  648. bio->bi_sector >= mddev->suspend_hi)
  649. break;
  650. schedule();
  651. }
  652. finish_wait(&conf->wait_barrier, &w);
  653. }
  654. wait_barrier(conf);
  655. bitmap = mddev->bitmap;
  656. /*
  657. * make_request() can abort the operation when READA is being
  658. * used and no empty request is available.
  659. *
  660. */
  661. r1_bio = mempool_alloc(conf->r1bio_pool, GFP_NOIO);
  662. r1_bio->master_bio = bio;
  663. r1_bio->sectors = bio->bi_size >> 9;
  664. r1_bio->state = 0;
  665. r1_bio->mddev = mddev;
  666. r1_bio->sector = bio->bi_sector;
  667. if (rw == READ) {
  668. /*
  669. * read balancing logic:
  670. */
  671. int rdisk = read_balance(conf, r1_bio);
  672. if (rdisk < 0) {
  673. /* couldn't find anywhere to read from */
  674. raid_end_bio_io(r1_bio);
  675. return 0;
  676. }
  677. mirror = conf->mirrors + rdisk;
  678. if (test_bit(WriteMostly, &mirror->rdev->flags) &&
  679. bitmap) {
  680. /* Reading from a write-mostly device must
  681. * take care not to over-take any writes
  682. * that are 'behind'
  683. */
  684. wait_event(bitmap->behind_wait,
  685. atomic_read(&bitmap->behind_writes) == 0);
  686. }
  687. r1_bio->read_disk = rdisk;
  688. read_bio = bio_clone_mddev(bio, GFP_NOIO, mddev);
  689. r1_bio->bios[rdisk] = read_bio;
  690. read_bio->bi_sector = r1_bio->sector + mirror->rdev->data_offset;
  691. read_bio->bi_bdev = mirror->rdev->bdev;
  692. read_bio->bi_end_io = raid1_end_read_request;
  693. read_bio->bi_rw = READ | do_sync;
  694. read_bio->bi_private = r1_bio;
  695. generic_make_request(read_bio);
  696. return 0;
  697. }
  698. /*
  699. * WRITE:
  700. */
  701. /* first select target devices under spinlock and
  702. * inc refcount on their rdev. Record them by setting
  703. * bios[x] to bio
  704. */
  705. plugged = mddev_check_plugged(mddev);
  706. disks = conf->raid_disks;
  707. retry_write:
  708. blocked_rdev = NULL;
  709. rcu_read_lock();
  710. for (i = 0; i < disks; i++) {
  711. mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
  712. if (rdev && unlikely(test_bit(Blocked, &rdev->flags))) {
  713. atomic_inc(&rdev->nr_pending);
  714. blocked_rdev = rdev;
  715. break;
  716. }
  717. if (rdev && !test_bit(Faulty, &rdev->flags)) {
  718. atomic_inc(&rdev->nr_pending);
  719. if (test_bit(Faulty, &rdev->flags)) {
  720. rdev_dec_pending(rdev, mddev);
  721. r1_bio->bios[i] = NULL;
  722. } else {
  723. r1_bio->bios[i] = bio;
  724. targets++;
  725. }
  726. } else
  727. r1_bio->bios[i] = NULL;
  728. }
  729. rcu_read_unlock();
  730. if (unlikely(blocked_rdev)) {
  731. /* Wait for this device to become unblocked */
  732. int j;
  733. for (j = 0; j < i; j++)
  734. if (r1_bio->bios[j])
  735. rdev_dec_pending(conf->mirrors[j].rdev, mddev);
  736. allow_barrier(conf);
  737. md_wait_for_blocked_rdev(blocked_rdev, mddev);
  738. wait_barrier(conf);
  739. goto retry_write;
  740. }
  741. BUG_ON(targets == 0); /* we never fail the last device */
  742. if (targets < conf->raid_disks) {
  743. /* array is degraded, we will not clear the bitmap
  744. * on I/O completion (see raid1_end_write_request) */
  745. set_bit(R1BIO_Degraded, &r1_bio->state);
  746. }
  747. /* do behind I/O ?
  748. * Not if there are too many, or cannot allocate memory,
  749. * or a reader on WriteMostly is waiting for behind writes
  750. * to flush */
  751. if (bitmap &&
  752. (atomic_read(&bitmap->behind_writes)
  753. < mddev->bitmap_info.max_write_behind) &&
  754. !waitqueue_active(&bitmap->behind_wait))
  755. alloc_behind_pages(bio, r1_bio);
  756. atomic_set(&r1_bio->remaining, 1);
  757. atomic_set(&r1_bio->behind_remaining, 0);
  758. bitmap_startwrite(bitmap, bio->bi_sector, r1_bio->sectors,
  759. test_bit(R1BIO_BehindIO, &r1_bio->state));
  760. for (i = 0; i < disks; i++) {
  761. struct bio *mbio;
  762. if (!r1_bio->bios[i])
  763. continue;
  764. mbio = bio_clone_mddev(bio, GFP_NOIO, mddev);
  765. r1_bio->bios[i] = mbio;
  766. mbio->bi_sector = r1_bio->sector + conf->mirrors[i].rdev->data_offset;
  767. mbio->bi_bdev = conf->mirrors[i].rdev->bdev;
  768. mbio->bi_end_io = raid1_end_write_request;
  769. mbio->bi_rw = WRITE | do_flush_fua | do_sync;
  770. mbio->bi_private = r1_bio;
  771. if (r1_bio->behind_pages) {
  772. struct bio_vec *bvec;
  773. int j;
  774. /* Yes, I really want the '__' version so that
  775. * we clear any unused pointer in the io_vec, rather
  776. * than leave them unchanged. This is important
  777. * because when we come to free the pages, we won't
  778. * know the original bi_idx, so we just free
  779. * them all
  780. */
  781. __bio_for_each_segment(bvec, mbio, j, 0)
  782. bvec->bv_page = r1_bio->behind_pages[j];
  783. if (test_bit(WriteMostly, &conf->mirrors[i].rdev->flags))
  784. atomic_inc(&r1_bio->behind_remaining);
  785. }
  786. atomic_inc(&r1_bio->remaining);
  787. spin_lock_irqsave(&conf->device_lock, flags);
  788. bio_list_add(&conf->pending_bio_list, mbio);
  789. spin_unlock_irqrestore(&conf->device_lock, flags);
  790. }
  791. r1_bio_write_done(r1_bio);
  792. /* In case raid1d snuck in to freeze_array */
  793. wake_up(&conf->wait_barrier);
  794. if (do_sync || !bitmap || !plugged)
  795. md_wakeup_thread(mddev->thread);
  796. return 0;
  797. }
  798. static void status(struct seq_file *seq, mddev_t *mddev)
  799. {
  800. conf_t *conf = mddev->private;
  801. int i;
  802. seq_printf(seq, " [%d/%d] [", conf->raid_disks,
  803. conf->raid_disks - mddev->degraded);
  804. rcu_read_lock();
  805. for (i = 0; i < conf->raid_disks; i++) {
  806. mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
  807. seq_printf(seq, "%s",
  808. rdev && test_bit(In_sync, &rdev->flags) ? "U" : "_");
  809. }
  810. rcu_read_unlock();
  811. seq_printf(seq, "]");
  812. }
  813. static void error(mddev_t *mddev, mdk_rdev_t *rdev)
  814. {
  815. char b[BDEVNAME_SIZE];
  816. conf_t *conf = mddev->private;
  817. /*
  818. * If it is not operational, then we have already marked it as dead
  819. * else if it is the last working disks, ignore the error, let the
  820. * next level up know.
  821. * else mark the drive as failed
  822. */
  823. if (test_bit(In_sync, &rdev->flags)
  824. && (conf->raid_disks - mddev->degraded) == 1) {
  825. /*
  826. * Don't fail the drive, act as though we were just a
  827. * normal single drive.
  828. * However don't try a recovery from this drive as
  829. * it is very likely to fail.
  830. */
  831. mddev->recovery_disabled = 1;
  832. return;
  833. }
  834. if (test_and_clear_bit(In_sync, &rdev->flags)) {
  835. unsigned long flags;
  836. spin_lock_irqsave(&conf->device_lock, flags);
  837. mddev->degraded++;
  838. set_bit(Faulty, &rdev->flags);
  839. spin_unlock_irqrestore(&conf->device_lock, flags);
  840. /*
  841. * if recovery is running, make sure it aborts.
  842. */
  843. set_bit(MD_RECOVERY_INTR, &mddev->recovery);
  844. } else
  845. set_bit(Faulty, &rdev->flags);
  846. set_bit(MD_CHANGE_DEVS, &mddev->flags);
  847. printk(KERN_ALERT
  848. "md/raid1:%s: Disk failure on %s, disabling device.\n"
  849. "md/raid1:%s: Operation continuing on %d devices.\n",
  850. mdname(mddev), bdevname(rdev->bdev, b),
  851. mdname(mddev), conf->raid_disks - mddev->degraded);
  852. }
  853. static void print_conf(conf_t *conf)
  854. {
  855. int i;
  856. printk(KERN_DEBUG "RAID1 conf printout:\n");
  857. if (!conf) {
  858. printk(KERN_DEBUG "(!conf)\n");
  859. return;
  860. }
  861. printk(KERN_DEBUG " --- wd:%d rd:%d\n", conf->raid_disks - conf->mddev->degraded,
  862. conf->raid_disks);
  863. rcu_read_lock();
  864. for (i = 0; i < conf->raid_disks; i++) {
  865. char b[BDEVNAME_SIZE];
  866. mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
  867. if (rdev)
  868. printk(KERN_DEBUG " disk %d, wo:%d, o:%d, dev:%s\n",
  869. i, !test_bit(In_sync, &rdev->flags),
  870. !test_bit(Faulty, &rdev->flags),
  871. bdevname(rdev->bdev,b));
  872. }
  873. rcu_read_unlock();
  874. }
  875. static void close_sync(conf_t *conf)
  876. {
  877. wait_barrier(conf);
  878. allow_barrier(conf);
  879. mempool_destroy(conf->r1buf_pool);
  880. conf->r1buf_pool = NULL;
  881. }
  882. static int raid1_spare_active(mddev_t *mddev)
  883. {
  884. int i;
  885. conf_t *conf = mddev->private;
  886. int count = 0;
  887. unsigned long flags;
  888. /*
  889. * Find all failed disks within the RAID1 configuration
  890. * and mark them readable.
  891. * Called under mddev lock, so rcu protection not needed.
  892. */
  893. for (i = 0; i < conf->raid_disks; i++) {
  894. mdk_rdev_t *rdev = conf->mirrors[i].rdev;
  895. if (rdev
  896. && !test_bit(Faulty, &rdev->flags)
  897. && !test_and_set_bit(In_sync, &rdev->flags)) {
  898. count++;
  899. sysfs_notify_dirent(rdev->sysfs_state);
  900. }
  901. }
  902. spin_lock_irqsave(&conf->device_lock, flags);
  903. mddev->degraded -= count;
  904. spin_unlock_irqrestore(&conf->device_lock, flags);
  905. print_conf(conf);
  906. return count;
  907. }
  908. static int raid1_add_disk(mddev_t *mddev, mdk_rdev_t *rdev)
  909. {
  910. conf_t *conf = mddev->private;
  911. int err = -EEXIST;
  912. int mirror = 0;
  913. mirror_info_t *p;
  914. int first = 0;
  915. int last = mddev->raid_disks - 1;
  916. if (rdev->raid_disk >= 0)
  917. first = last = rdev->raid_disk;
  918. for (mirror = first; mirror <= last; mirror++)
  919. if ( !(p=conf->mirrors+mirror)->rdev) {
  920. disk_stack_limits(mddev->gendisk, rdev->bdev,
  921. rdev->data_offset << 9);
  922. /* as we don't honour merge_bvec_fn, we must
  923. * never risk violating it, so limit
  924. * ->max_segments to one lying with a single
  925. * page, as a one page request is never in
  926. * violation.
  927. */
  928. if (rdev->bdev->bd_disk->queue->merge_bvec_fn) {
  929. blk_queue_max_segments(mddev->queue, 1);
  930. blk_queue_segment_boundary(mddev->queue,
  931. PAGE_CACHE_SIZE - 1);
  932. }
  933. p->head_position = 0;
  934. rdev->raid_disk = mirror;
  935. err = 0;
  936. /* As all devices are equivalent, we don't need a full recovery
  937. * if this was recently any drive of the array
  938. */
  939. if (rdev->saved_raid_disk < 0)
  940. conf->fullsync = 1;
  941. rcu_assign_pointer(p->rdev, rdev);
  942. break;
  943. }
  944. md_integrity_add_rdev(rdev, mddev);
  945. print_conf(conf);
  946. return err;
  947. }
  948. static int raid1_remove_disk(mddev_t *mddev, int number)
  949. {
  950. conf_t *conf = mddev->private;
  951. int err = 0;
  952. mdk_rdev_t *rdev;
  953. mirror_info_t *p = conf->mirrors+ number;
  954. print_conf(conf);
  955. rdev = p->rdev;
  956. if (rdev) {
  957. if (test_bit(In_sync, &rdev->flags) ||
  958. atomic_read(&rdev->nr_pending)) {
  959. err = -EBUSY;
  960. goto abort;
  961. }
  962. /* Only remove non-faulty devices if recovery
  963. * is not possible.
  964. */
  965. if (!test_bit(Faulty, &rdev->flags) &&
  966. !mddev->recovery_disabled &&
  967. mddev->degraded < conf->raid_disks) {
  968. err = -EBUSY;
  969. goto abort;
  970. }
  971. p->rdev = NULL;
  972. synchronize_rcu();
  973. if (atomic_read(&rdev->nr_pending)) {
  974. /* lost the race, try later */
  975. err = -EBUSY;
  976. p->rdev = rdev;
  977. goto abort;
  978. }
  979. err = md_integrity_register(mddev);
  980. }
  981. abort:
  982. print_conf(conf);
  983. return err;
  984. }
  985. static void end_sync_read(struct bio *bio, int error)
  986. {
  987. r1bio_t *r1_bio = bio->bi_private;
  988. int i;
  989. for (i=r1_bio->mddev->raid_disks; i--; )
  990. if (r1_bio->bios[i] == bio)
  991. break;
  992. BUG_ON(i < 0);
  993. update_head_pos(i, r1_bio);
  994. /*
  995. * we have read a block, now it needs to be re-written,
  996. * or re-read if the read failed.
  997. * We don't do much here, just schedule handling by raid1d
  998. */
  999. if (test_bit(BIO_UPTODATE, &bio->bi_flags))
  1000. set_bit(R1BIO_Uptodate, &r1_bio->state);
  1001. if (atomic_dec_and_test(&r1_bio->remaining))
  1002. reschedule_retry(r1_bio);
  1003. }
  1004. static void end_sync_write(struct bio *bio, int error)
  1005. {
  1006. int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
  1007. r1bio_t *r1_bio = bio->bi_private;
  1008. mddev_t *mddev = r1_bio->mddev;
  1009. conf_t *conf = mddev->private;
  1010. int i;
  1011. int mirror=0;
  1012. for (i = 0; i < conf->raid_disks; i++)
  1013. if (r1_bio->bios[i] == bio) {
  1014. mirror = i;
  1015. break;
  1016. }
  1017. if (!uptodate) {
  1018. sector_t sync_blocks = 0;
  1019. sector_t s = r1_bio->sector;
  1020. long sectors_to_go = r1_bio->sectors;
  1021. /* make sure these bits doesn't get cleared. */
  1022. do {
  1023. bitmap_end_sync(mddev->bitmap, s,
  1024. &sync_blocks, 1);
  1025. s += sync_blocks;
  1026. sectors_to_go -= sync_blocks;
  1027. } while (sectors_to_go > 0);
  1028. md_error(mddev, conf->mirrors[mirror].rdev);
  1029. }
  1030. update_head_pos(mirror, r1_bio);
  1031. if (atomic_dec_and_test(&r1_bio->remaining)) {
  1032. sector_t s = r1_bio->sectors;
  1033. put_buf(r1_bio);
  1034. md_done_sync(mddev, s, uptodate);
  1035. }
  1036. }
  1037. static int fix_sync_read_error(r1bio_t *r1_bio)
  1038. {
  1039. /* Try some synchronous reads of other devices to get
  1040. * good data, much like with normal read errors. Only
  1041. * read into the pages we already have so we don't
  1042. * need to re-issue the read request.
  1043. * We don't need to freeze the array, because being in an
  1044. * active sync request, there is no normal IO, and
  1045. * no overlapping syncs.
  1046. */
  1047. mddev_t *mddev = r1_bio->mddev;
  1048. conf_t *conf = mddev->private;
  1049. struct bio *bio = r1_bio->bios[r1_bio->read_disk];
  1050. sector_t sect = r1_bio->sector;
  1051. int sectors = r1_bio->sectors;
  1052. int idx = 0;
  1053. while(sectors) {
  1054. int s = sectors;
  1055. int d = r1_bio->read_disk;
  1056. int success = 0;
  1057. mdk_rdev_t *rdev;
  1058. int start;
  1059. if (s > (PAGE_SIZE>>9))
  1060. s = PAGE_SIZE >> 9;
  1061. do {
  1062. if (r1_bio->bios[d]->bi_end_io == end_sync_read) {
  1063. /* No rcu protection needed here devices
  1064. * can only be removed when no resync is
  1065. * active, and resync is currently active
  1066. */
  1067. rdev = conf->mirrors[d].rdev;
  1068. if (sync_page_io(rdev,
  1069. sect,
  1070. s<<9,
  1071. bio->bi_io_vec[idx].bv_page,
  1072. READ, false)) {
  1073. success = 1;
  1074. break;
  1075. }
  1076. }
  1077. d++;
  1078. if (d == conf->raid_disks)
  1079. d = 0;
  1080. } while (!success && d != r1_bio->read_disk);
  1081. if (!success) {
  1082. char b[BDEVNAME_SIZE];
  1083. /* Cannot read from anywhere, array is toast */
  1084. md_error(mddev, conf->mirrors[r1_bio->read_disk].rdev);
  1085. printk(KERN_ALERT "md/raid1:%s: %s: unrecoverable I/O read error"
  1086. " for block %llu\n",
  1087. mdname(mddev),
  1088. bdevname(bio->bi_bdev, b),
  1089. (unsigned long long)r1_bio->sector);
  1090. md_done_sync(mddev, r1_bio->sectors, 0);
  1091. put_buf(r1_bio);
  1092. return 0;
  1093. }
  1094. start = d;
  1095. /* write it back and re-read */
  1096. while (d != r1_bio->read_disk) {
  1097. if (d == 0)
  1098. d = conf->raid_disks;
  1099. d--;
  1100. if (r1_bio->bios[d]->bi_end_io != end_sync_read)
  1101. continue;
  1102. rdev = conf->mirrors[d].rdev;
  1103. if (sync_page_io(rdev,
  1104. sect,
  1105. s<<9,
  1106. bio->bi_io_vec[idx].bv_page,
  1107. WRITE, false) == 0) {
  1108. r1_bio->bios[d]->bi_end_io = NULL;
  1109. rdev_dec_pending(rdev, mddev);
  1110. md_error(mddev, rdev);
  1111. } else
  1112. atomic_add(s, &rdev->corrected_errors);
  1113. }
  1114. d = start;
  1115. while (d != r1_bio->read_disk) {
  1116. if (d == 0)
  1117. d = conf->raid_disks;
  1118. d--;
  1119. if (r1_bio->bios[d]->bi_end_io != end_sync_read)
  1120. continue;
  1121. rdev = conf->mirrors[d].rdev;
  1122. if (sync_page_io(rdev,
  1123. sect,
  1124. s<<9,
  1125. bio->bi_io_vec[idx].bv_page,
  1126. READ, false) == 0)
  1127. md_error(mddev, rdev);
  1128. }
  1129. sectors -= s;
  1130. sect += s;
  1131. idx ++;
  1132. }
  1133. set_bit(R1BIO_Uptodate, &r1_bio->state);
  1134. set_bit(BIO_UPTODATE, &bio->bi_flags);
  1135. return 1;
  1136. }
  1137. static int process_checks(r1bio_t *r1_bio)
  1138. {
  1139. /* We have read all readable devices. If we haven't
  1140. * got the block, then there is no hope left.
  1141. * If we have, then we want to do a comparison
  1142. * and skip the write if everything is the same.
  1143. * If any blocks failed to read, then we need to
  1144. * attempt an over-write
  1145. */
  1146. mddev_t *mddev = r1_bio->mddev;
  1147. conf_t *conf = mddev->private;
  1148. int primary;
  1149. int i;
  1150. for (primary = 0; primary < conf->raid_disks; primary++)
  1151. if (r1_bio->bios[primary]->bi_end_io == end_sync_read &&
  1152. test_bit(BIO_UPTODATE, &r1_bio->bios[primary]->bi_flags)) {
  1153. r1_bio->bios[primary]->bi_end_io = NULL;
  1154. rdev_dec_pending(conf->mirrors[primary].rdev, mddev);
  1155. break;
  1156. }
  1157. r1_bio->read_disk = primary;
  1158. for (i = 0; i < conf->raid_disks; i++) {
  1159. int j;
  1160. int vcnt = r1_bio->sectors >> (PAGE_SHIFT- 9);
  1161. struct bio *pbio = r1_bio->bios[primary];
  1162. struct bio *sbio = r1_bio->bios[i];
  1163. int size;
  1164. if (r1_bio->bios[i]->bi_end_io != end_sync_read)
  1165. continue;
  1166. if (test_bit(BIO_UPTODATE, &sbio->bi_flags)) {
  1167. for (j = vcnt; j-- ; ) {
  1168. struct page *p, *s;
  1169. p = pbio->bi_io_vec[j].bv_page;
  1170. s = sbio->bi_io_vec[j].bv_page;
  1171. if (memcmp(page_address(p),
  1172. page_address(s),
  1173. PAGE_SIZE))
  1174. break;
  1175. }
  1176. } else
  1177. j = 0;
  1178. if (j >= 0)
  1179. mddev->resync_mismatches += r1_bio->sectors;
  1180. if (j < 0 || (test_bit(MD_RECOVERY_CHECK, &mddev->recovery)
  1181. && test_bit(BIO_UPTODATE, &sbio->bi_flags))) {
  1182. /* No need to write to this device. */
  1183. sbio->bi_end_io = NULL;
  1184. rdev_dec_pending(conf->mirrors[i].rdev, mddev);
  1185. continue;
  1186. }
  1187. /* fixup the bio for reuse */
  1188. sbio->bi_vcnt = vcnt;
  1189. sbio->bi_size = r1_bio->sectors << 9;
  1190. sbio->bi_idx = 0;
  1191. sbio->bi_phys_segments = 0;
  1192. sbio->bi_flags &= ~(BIO_POOL_MASK - 1);
  1193. sbio->bi_flags |= 1 << BIO_UPTODATE;
  1194. sbio->bi_next = NULL;
  1195. sbio->bi_sector = r1_bio->sector +
  1196. conf->mirrors[i].rdev->data_offset;
  1197. sbio->bi_bdev = conf->mirrors[i].rdev->bdev;
  1198. size = sbio->bi_size;
  1199. for (j = 0; j < vcnt ; j++) {
  1200. struct bio_vec *bi;
  1201. bi = &sbio->bi_io_vec[j];
  1202. bi->bv_offset = 0;
  1203. if (size > PAGE_SIZE)
  1204. bi->bv_len = PAGE_SIZE;
  1205. else
  1206. bi->bv_len = size;
  1207. size -= PAGE_SIZE;
  1208. memcpy(page_address(bi->bv_page),
  1209. page_address(pbio->bi_io_vec[j].bv_page),
  1210. PAGE_SIZE);
  1211. }
  1212. }
  1213. return 0;
  1214. }
  1215. static void sync_request_write(mddev_t *mddev, r1bio_t *r1_bio)
  1216. {
  1217. conf_t *conf = mddev->private;
  1218. int i;
  1219. int disks = conf->raid_disks;
  1220. struct bio *bio, *wbio;
  1221. bio = r1_bio->bios[r1_bio->read_disk];
  1222. if (!test_bit(R1BIO_Uptodate, &r1_bio->state))
  1223. /* ouch - failed to read all of that. */
  1224. if (!fix_sync_read_error(r1_bio))
  1225. return;
  1226. if (test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery))
  1227. if (process_checks(r1_bio) < 0)
  1228. return;
  1229. /*
  1230. * schedule writes
  1231. */
  1232. atomic_set(&r1_bio->remaining, 1);
  1233. for (i = 0; i < disks ; i++) {
  1234. wbio = r1_bio->bios[i];
  1235. if (wbio->bi_end_io == NULL ||
  1236. (wbio->bi_end_io == end_sync_read &&
  1237. (i == r1_bio->read_disk ||
  1238. !test_bit(MD_RECOVERY_SYNC, &mddev->recovery))))
  1239. continue;
  1240. wbio->bi_rw = WRITE;
  1241. wbio->bi_end_io = end_sync_write;
  1242. atomic_inc(&r1_bio->remaining);
  1243. md_sync_acct(conf->mirrors[i].rdev->bdev, wbio->bi_size >> 9);
  1244. generic_make_request(wbio);
  1245. }
  1246. if (atomic_dec_and_test(&r1_bio->remaining)) {
  1247. /* if we're here, all write(s) have completed, so clean up */
  1248. md_done_sync(mddev, r1_bio->sectors, 1);
  1249. put_buf(r1_bio);
  1250. }
  1251. }
  1252. /*
  1253. * This is a kernel thread which:
  1254. *
  1255. * 1. Retries failed read operations on working mirrors.
  1256. * 2. Updates the raid superblock when problems encounter.
  1257. * 3. Performs writes following reads for array syncronising.
  1258. */
  1259. static void fix_read_error(conf_t *conf, int read_disk,
  1260. sector_t sect, int sectors)
  1261. {
  1262. mddev_t *mddev = conf->mddev;
  1263. while(sectors) {
  1264. int s = sectors;
  1265. int d = read_disk;
  1266. int success = 0;
  1267. int start;
  1268. mdk_rdev_t *rdev;
  1269. if (s > (PAGE_SIZE>>9))
  1270. s = PAGE_SIZE >> 9;
  1271. do {
  1272. /* Note: no rcu protection needed here
  1273. * as this is synchronous in the raid1d thread
  1274. * which is the thread that might remove
  1275. * a device. If raid1d ever becomes multi-threaded....
  1276. */
  1277. rdev = conf->mirrors[d].rdev;
  1278. if (rdev &&
  1279. test_bit(In_sync, &rdev->flags) &&
  1280. sync_page_io(rdev, sect, s<<9,
  1281. conf->tmppage, READ, false))
  1282. success = 1;
  1283. else {
  1284. d++;
  1285. if (d == conf->raid_disks)
  1286. d = 0;
  1287. }
  1288. } while (!success && d != read_disk);
  1289. if (!success) {
  1290. /* Cannot read from anywhere -- bye bye array */
  1291. md_error(mddev, conf->mirrors[read_disk].rdev);
  1292. break;
  1293. }
  1294. /* write it back and re-read */
  1295. start = d;
  1296. while (d != read_disk) {
  1297. if (d==0)
  1298. d = conf->raid_disks;
  1299. d--;
  1300. rdev = conf->mirrors[d].rdev;
  1301. if (rdev &&
  1302. test_bit(In_sync, &rdev->flags)) {
  1303. if (sync_page_io(rdev, sect, s<<9,
  1304. conf->tmppage, WRITE, false)
  1305. == 0)
  1306. /* Well, this device is dead */
  1307. md_error(mddev, rdev);
  1308. }
  1309. }
  1310. d = start;
  1311. while (d != read_disk) {
  1312. char b[BDEVNAME_SIZE];
  1313. if (d==0)
  1314. d = conf->raid_disks;
  1315. d--;
  1316. rdev = conf->mirrors[d].rdev;
  1317. if (rdev &&
  1318. test_bit(In_sync, &rdev->flags)) {
  1319. if (sync_page_io(rdev, sect, s<<9,
  1320. conf->tmppage, READ, false)
  1321. == 0)
  1322. /* Well, this device is dead */
  1323. md_error(mddev, rdev);
  1324. else {
  1325. atomic_add(s, &rdev->corrected_errors);
  1326. printk(KERN_INFO
  1327. "md/raid1:%s: read error corrected "
  1328. "(%d sectors at %llu on %s)\n",
  1329. mdname(mddev), s,
  1330. (unsigned long long)(sect +
  1331. rdev->data_offset),
  1332. bdevname(rdev->bdev, b));
  1333. }
  1334. }
  1335. }
  1336. sectors -= s;
  1337. sect += s;
  1338. }
  1339. }
  1340. static void raid1d(mddev_t *mddev)
  1341. {
  1342. r1bio_t *r1_bio;
  1343. struct bio *bio;
  1344. unsigned long flags;
  1345. conf_t *conf = mddev->private;
  1346. struct list_head *head = &conf->retry_list;
  1347. mdk_rdev_t *rdev;
  1348. struct blk_plug plug;
  1349. md_check_recovery(mddev);
  1350. blk_start_plug(&plug);
  1351. for (;;) {
  1352. char b[BDEVNAME_SIZE];
  1353. if (atomic_read(&mddev->plug_cnt) == 0)
  1354. flush_pending_writes(conf);
  1355. spin_lock_irqsave(&conf->device_lock, flags);
  1356. if (list_empty(head)) {
  1357. spin_unlock_irqrestore(&conf->device_lock, flags);
  1358. break;
  1359. }
  1360. r1_bio = list_entry(head->prev, r1bio_t, retry_list);
  1361. list_del(head->prev);
  1362. conf->nr_queued--;
  1363. spin_unlock_irqrestore(&conf->device_lock, flags);
  1364. mddev = r1_bio->mddev;
  1365. conf = mddev->private;
  1366. if (test_bit(R1BIO_IsSync, &r1_bio->state))
  1367. sync_request_write(mddev, r1_bio);
  1368. else {
  1369. int disk;
  1370. /* we got a read error. Maybe the drive is bad. Maybe just
  1371. * the block and we can fix it.
  1372. * We freeze all other IO, and try reading the block from
  1373. * other devices. When we find one, we re-write
  1374. * and check it that fixes the read error.
  1375. * This is all done synchronously while the array is
  1376. * frozen
  1377. */
  1378. if (mddev->ro == 0) {
  1379. freeze_array(conf);
  1380. fix_read_error(conf, r1_bio->read_disk,
  1381. r1_bio->sector,
  1382. r1_bio->sectors);
  1383. unfreeze_array(conf);
  1384. } else
  1385. md_error(mddev,
  1386. conf->mirrors[r1_bio->read_disk].rdev);
  1387. bio = r1_bio->bios[r1_bio->read_disk];
  1388. if ((disk=read_balance(conf, r1_bio)) == -1) {
  1389. printk(KERN_ALERT "md/raid1:%s: %s: unrecoverable I/O"
  1390. " read error for block %llu\n",
  1391. mdname(mddev),
  1392. bdevname(bio->bi_bdev,b),
  1393. (unsigned long long)r1_bio->sector);
  1394. raid_end_bio_io(r1_bio);
  1395. } else {
  1396. const unsigned long do_sync = r1_bio->master_bio->bi_rw & REQ_SYNC;
  1397. r1_bio->bios[r1_bio->read_disk] =
  1398. mddev->ro ? IO_BLOCKED : NULL;
  1399. r1_bio->read_disk = disk;
  1400. bio_put(bio);
  1401. bio = bio_clone_mddev(r1_bio->master_bio,
  1402. GFP_NOIO, mddev);
  1403. r1_bio->bios[r1_bio->read_disk] = bio;
  1404. rdev = conf->mirrors[disk].rdev;
  1405. if (printk_ratelimit())
  1406. printk(KERN_ERR "md/raid1:%s: redirecting sector %llu to"
  1407. " other mirror: %s\n",
  1408. mdname(mddev),
  1409. (unsigned long long)r1_bio->sector,
  1410. bdevname(rdev->bdev,b));
  1411. bio->bi_sector = r1_bio->sector + rdev->data_offset;
  1412. bio->bi_bdev = rdev->bdev;
  1413. bio->bi_end_io = raid1_end_read_request;
  1414. bio->bi_rw = READ | do_sync;
  1415. bio->bi_private = r1_bio;
  1416. generic_make_request(bio);
  1417. }
  1418. }
  1419. cond_resched();
  1420. }
  1421. blk_finish_plug(&plug);
  1422. }
  1423. static int init_resync(conf_t *conf)
  1424. {
  1425. int buffs;
  1426. buffs = RESYNC_WINDOW / RESYNC_BLOCK_SIZE;
  1427. BUG_ON(conf->r1buf_pool);
  1428. conf->r1buf_pool = mempool_create(buffs, r1buf_pool_alloc, r1buf_pool_free,
  1429. conf->poolinfo);
  1430. if (!conf->r1buf_pool)
  1431. return -ENOMEM;
  1432. conf->next_resync = 0;
  1433. return 0;
  1434. }
  1435. /*
  1436. * perform a "sync" on one "block"
  1437. *
  1438. * We need to make sure that no normal I/O request - particularly write
  1439. * requests - conflict with active sync requests.
  1440. *
  1441. * This is achieved by tracking pending requests and a 'barrier' concept
  1442. * that can be installed to exclude normal IO requests.
  1443. */
  1444. static sector_t sync_request(mddev_t *mddev, sector_t sector_nr, int *skipped, int go_faster)
  1445. {
  1446. conf_t *conf = mddev->private;
  1447. r1bio_t *r1_bio;
  1448. struct bio *bio;
  1449. sector_t max_sector, nr_sectors;
  1450. int disk = -1;
  1451. int i;
  1452. int wonly = -1;
  1453. int write_targets = 0, read_targets = 0;
  1454. sector_t sync_blocks;
  1455. int still_degraded = 0;
  1456. if (!conf->r1buf_pool)
  1457. if (init_resync(conf))
  1458. return 0;
  1459. max_sector = mddev->dev_sectors;
  1460. if (sector_nr >= max_sector) {
  1461. /* If we aborted, we need to abort the
  1462. * sync on the 'current' bitmap chunk (there will
  1463. * only be one in raid1 resync.
  1464. * We can find the current addess in mddev->curr_resync
  1465. */
  1466. if (mddev->curr_resync < max_sector) /* aborted */
  1467. bitmap_end_sync(mddev->bitmap, mddev->curr_resync,
  1468. &sync_blocks, 1);
  1469. else /* completed sync */
  1470. conf->fullsync = 0;
  1471. bitmap_close_sync(mddev->bitmap);
  1472. close_sync(conf);
  1473. return 0;
  1474. }
  1475. if (mddev->bitmap == NULL &&
  1476. mddev->recovery_cp == MaxSector &&
  1477. !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery) &&
  1478. conf->fullsync == 0) {
  1479. *skipped = 1;
  1480. return max_sector - sector_nr;
  1481. }
  1482. /* before building a request, check if we can skip these blocks..
  1483. * This call the bitmap_start_sync doesn't actually record anything
  1484. */
  1485. if (!bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, 1) &&
  1486. !conf->fullsync && !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery)) {
  1487. /* We can skip this block, and probably several more */
  1488. *skipped = 1;
  1489. return sync_blocks;
  1490. }
  1491. /*
  1492. * If there is non-resync activity waiting for a turn,
  1493. * and resync is going fast enough,
  1494. * then let it though before starting on this new sync request.
  1495. */
  1496. if (!go_faster && conf->nr_waiting)
  1497. msleep_interruptible(1000);
  1498. bitmap_cond_end_sync(mddev->bitmap, sector_nr);
  1499. r1_bio = mempool_alloc(conf->r1buf_pool, GFP_NOIO);
  1500. raise_barrier(conf);
  1501. conf->next_resync = sector_nr;
  1502. rcu_read_lock();
  1503. /*
  1504. * If we get a correctably read error during resync or recovery,
  1505. * we might want to read from a different device. So we
  1506. * flag all drives that could conceivably be read from for READ,
  1507. * and any others (which will be non-In_sync devices) for WRITE.
  1508. * If a read fails, we try reading from something else for which READ
  1509. * is OK.
  1510. */
  1511. r1_bio->mddev = mddev;
  1512. r1_bio->sector = sector_nr;
  1513. r1_bio->state = 0;
  1514. set_bit(R1BIO_IsSync, &r1_bio->state);
  1515. for (i=0; i < conf->raid_disks; i++) {
  1516. mdk_rdev_t *rdev;
  1517. bio = r1_bio->bios[i];
  1518. /* take from bio_init */
  1519. bio->bi_next = NULL;
  1520. bio->bi_flags &= ~(BIO_POOL_MASK-1);
  1521. bio->bi_flags |= 1 << BIO_UPTODATE;
  1522. bio->bi_comp_cpu = -1;
  1523. bio->bi_rw = READ;
  1524. bio->bi_vcnt = 0;
  1525. bio->bi_idx = 0;
  1526. bio->bi_phys_segments = 0;
  1527. bio->bi_size = 0;
  1528. bio->bi_end_io = NULL;
  1529. bio->bi_private = NULL;
  1530. rdev = rcu_dereference(conf->mirrors[i].rdev);
  1531. if (rdev == NULL ||
  1532. test_bit(Faulty, &rdev->flags)) {
  1533. still_degraded = 1;
  1534. continue;
  1535. } else if (!test_bit(In_sync, &rdev->flags)) {
  1536. bio->bi_rw = WRITE;
  1537. bio->bi_end_io = end_sync_write;
  1538. write_targets ++;
  1539. } else {
  1540. /* may need to read from here */
  1541. bio->bi_rw = READ;
  1542. bio->bi_end_io = end_sync_read;
  1543. if (test_bit(WriteMostly, &rdev->flags)) {
  1544. if (wonly < 0)
  1545. wonly = i;
  1546. } else {
  1547. if (disk < 0)
  1548. disk = i;
  1549. }
  1550. read_targets++;
  1551. }
  1552. atomic_inc(&rdev->nr_pending);
  1553. bio->bi_sector = sector_nr + rdev->data_offset;
  1554. bio->bi_bdev = rdev->bdev;
  1555. bio->bi_private = r1_bio;
  1556. }
  1557. rcu_read_unlock();
  1558. if (disk < 0)
  1559. disk = wonly;
  1560. r1_bio->read_disk = disk;
  1561. if (test_bit(MD_RECOVERY_SYNC, &mddev->recovery) && read_targets > 0)
  1562. /* extra read targets are also write targets */
  1563. write_targets += read_targets-1;
  1564. if (write_targets == 0 || read_targets == 0) {
  1565. /* There is nowhere to write, so all non-sync
  1566. * drives must be failed - so we are finished
  1567. */
  1568. sector_t rv = max_sector - sector_nr;
  1569. *skipped = 1;
  1570. put_buf(r1_bio);
  1571. return rv;
  1572. }
  1573. if (max_sector > mddev->resync_max)
  1574. max_sector = mddev->resync_max; /* Don't do IO beyond here */
  1575. nr_sectors = 0;
  1576. sync_blocks = 0;
  1577. do {
  1578. struct page *page;
  1579. int len = PAGE_SIZE;
  1580. if (sector_nr + (len>>9) > max_sector)
  1581. len = (max_sector - sector_nr) << 9;
  1582. if (len == 0)
  1583. break;
  1584. if (sync_blocks == 0) {
  1585. if (!bitmap_start_sync(mddev->bitmap, sector_nr,
  1586. &sync_blocks, still_degraded) &&
  1587. !conf->fullsync &&
  1588. !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery))
  1589. break;
  1590. BUG_ON(sync_blocks < (PAGE_SIZE>>9));
  1591. if ((len >> 9) > sync_blocks)
  1592. len = sync_blocks<<9;
  1593. }
  1594. for (i=0 ; i < conf->raid_disks; i++) {
  1595. bio = r1_bio->bios[i];
  1596. if (bio->bi_end_io) {
  1597. page = bio->bi_io_vec[bio->bi_vcnt].bv_page;
  1598. if (bio_add_page(bio, page, len, 0) == 0) {
  1599. /* stop here */
  1600. bio->bi_io_vec[bio->bi_vcnt].bv_page = page;
  1601. while (i > 0) {
  1602. i--;
  1603. bio = r1_bio->bios[i];
  1604. if (bio->bi_end_io==NULL)
  1605. continue;
  1606. /* remove last page from this bio */
  1607. bio->bi_vcnt--;
  1608. bio->bi_size -= len;
  1609. bio->bi_flags &= ~(1<< BIO_SEG_VALID);
  1610. }
  1611. goto bio_full;
  1612. }
  1613. }
  1614. }
  1615. nr_sectors += len>>9;
  1616. sector_nr += len>>9;
  1617. sync_blocks -= (len>>9);
  1618. } while (r1_bio->bios[disk]->bi_vcnt < RESYNC_PAGES);
  1619. bio_full:
  1620. r1_bio->sectors = nr_sectors;
  1621. /* For a user-requested sync, we read all readable devices and do a
  1622. * compare
  1623. */
  1624. if (test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery)) {
  1625. atomic_set(&r1_bio->remaining, read_targets);
  1626. for (i=0; i<conf->raid_disks; i++) {
  1627. bio = r1_bio->bios[i];
  1628. if (bio->bi_end_io == end_sync_read) {
  1629. md_sync_acct(bio->bi_bdev, nr_sectors);
  1630. generic_make_request(bio);
  1631. }
  1632. }
  1633. } else {
  1634. atomic_set(&r1_bio->remaining, 1);
  1635. bio = r1_bio->bios[r1_bio->read_disk];
  1636. md_sync_acct(bio->bi_bdev, nr_sectors);
  1637. generic_make_request(bio);
  1638. }
  1639. return nr_sectors;
  1640. }
  1641. static sector_t raid1_size(mddev_t *mddev, sector_t sectors, int raid_disks)
  1642. {
  1643. if (sectors)
  1644. return sectors;
  1645. return mddev->dev_sectors;
  1646. }
  1647. static conf_t *setup_conf(mddev_t *mddev)
  1648. {
  1649. conf_t *conf;
  1650. int i;
  1651. mirror_info_t *disk;
  1652. mdk_rdev_t *rdev;
  1653. int err = -ENOMEM;
  1654. conf = kzalloc(sizeof(conf_t), GFP_KERNEL);
  1655. if (!conf)
  1656. goto abort;
  1657. conf->mirrors = kzalloc(sizeof(struct mirror_info)*mddev->raid_disks,
  1658. GFP_KERNEL);
  1659. if (!conf->mirrors)
  1660. goto abort;
  1661. conf->tmppage = alloc_page(GFP_KERNEL);
  1662. if (!conf->tmppage)
  1663. goto abort;
  1664. conf->poolinfo = kzalloc(sizeof(*conf->poolinfo), GFP_KERNEL);
  1665. if (!conf->poolinfo)
  1666. goto abort;
  1667. conf->poolinfo->raid_disks = mddev->raid_disks;
  1668. conf->r1bio_pool = mempool_create(NR_RAID1_BIOS, r1bio_pool_alloc,
  1669. r1bio_pool_free,
  1670. conf->poolinfo);
  1671. if (!conf->r1bio_pool)
  1672. goto abort;
  1673. conf->poolinfo->mddev = mddev;
  1674. spin_lock_init(&conf->device_lock);
  1675. list_for_each_entry(rdev, &mddev->disks, same_set) {
  1676. int disk_idx = rdev->raid_disk;
  1677. if (disk_idx >= mddev->raid_disks
  1678. || disk_idx < 0)
  1679. continue;
  1680. disk = conf->mirrors + disk_idx;
  1681. disk->rdev = rdev;
  1682. disk->head_position = 0;
  1683. }
  1684. conf->raid_disks = mddev->raid_disks;
  1685. conf->mddev = mddev;
  1686. INIT_LIST_HEAD(&conf->retry_list);
  1687. spin_lock_init(&conf->resync_lock);
  1688. init_waitqueue_head(&conf->wait_barrier);
  1689. bio_list_init(&conf->pending_bio_list);
  1690. conf->last_used = -1;
  1691. for (i = 0; i < conf->raid_disks; i++) {
  1692. disk = conf->mirrors + i;
  1693. if (!disk->rdev ||
  1694. !test_bit(In_sync, &disk->rdev->flags)) {
  1695. disk->head_position = 0;
  1696. if (disk->rdev)
  1697. conf->fullsync = 1;
  1698. } else if (conf->last_used < 0)
  1699. /*
  1700. * The first working device is used as a
  1701. * starting point to read balancing.
  1702. */
  1703. conf->last_used = i;
  1704. }
  1705. err = -EIO;
  1706. if (conf->last_used < 0) {
  1707. printk(KERN_ERR "md/raid1:%s: no operational mirrors\n",
  1708. mdname(mddev));
  1709. goto abort;
  1710. }
  1711. err = -ENOMEM;
  1712. conf->thread = md_register_thread(raid1d, mddev, NULL);
  1713. if (!conf->thread) {
  1714. printk(KERN_ERR
  1715. "md/raid1:%s: couldn't allocate thread\n",
  1716. mdname(mddev));
  1717. goto abort;
  1718. }
  1719. return conf;
  1720. abort:
  1721. if (conf) {
  1722. if (conf->r1bio_pool)
  1723. mempool_destroy(conf->r1bio_pool);
  1724. kfree(conf->mirrors);
  1725. safe_put_page(conf->tmppage);
  1726. kfree(conf->poolinfo);
  1727. kfree(conf);
  1728. }
  1729. return ERR_PTR(err);
  1730. }
  1731. static int run(mddev_t *mddev)
  1732. {
  1733. conf_t *conf;
  1734. int i;
  1735. mdk_rdev_t *rdev;
  1736. if (mddev->level != 1) {
  1737. printk(KERN_ERR "md/raid1:%s: raid level not set to mirroring (%d)\n",
  1738. mdname(mddev), mddev->level);
  1739. return -EIO;
  1740. }
  1741. if (mddev->reshape_position != MaxSector) {
  1742. printk(KERN_ERR "md/raid1:%s: reshape_position set but not supported\n",
  1743. mdname(mddev));
  1744. return -EIO;
  1745. }
  1746. /*
  1747. * copy the already verified devices into our private RAID1
  1748. * bookkeeping area. [whatever we allocate in run(),
  1749. * should be freed in stop()]
  1750. */
  1751. if (mddev->private == NULL)
  1752. conf = setup_conf(mddev);
  1753. else
  1754. conf = mddev->private;
  1755. if (IS_ERR(conf))
  1756. return PTR_ERR(conf);
  1757. list_for_each_entry(rdev, &mddev->disks, same_set) {
  1758. disk_stack_limits(mddev->gendisk, rdev->bdev,
  1759. rdev->data_offset << 9);
  1760. /* as we don't honour merge_bvec_fn, we must never risk
  1761. * violating it, so limit ->max_segments to 1 lying within
  1762. * a single page, as a one page request is never in violation.
  1763. */
  1764. if (rdev->bdev->bd_disk->queue->merge_bvec_fn) {
  1765. blk_queue_max_segments(mddev->queue, 1);
  1766. blk_queue_segment_boundary(mddev->queue,
  1767. PAGE_CACHE_SIZE - 1);
  1768. }
  1769. }
  1770. mddev->degraded = 0;
  1771. for (i=0; i < conf->raid_disks; i++)
  1772. if (conf->mirrors[i].rdev == NULL ||
  1773. !test_bit(In_sync, &conf->mirrors[i].rdev->flags) ||
  1774. test_bit(Faulty, &conf->mirrors[i].rdev->flags))
  1775. mddev->degraded++;
  1776. if (conf->raid_disks - mddev->degraded == 1)
  1777. mddev->recovery_cp = MaxSector;
  1778. if (mddev->recovery_cp != MaxSector)
  1779. printk(KERN_NOTICE "md/raid1:%s: not clean"
  1780. " -- starting background reconstruction\n",
  1781. mdname(mddev));
  1782. printk(KERN_INFO
  1783. "md/raid1:%s: active with %d out of %d mirrors\n",
  1784. mdname(mddev), mddev->raid_disks - mddev->degraded,
  1785. mddev->raid_disks);
  1786. /*
  1787. * Ok, everything is just fine now
  1788. */
  1789. mddev->thread = conf->thread;
  1790. conf->thread = NULL;
  1791. mddev->private = conf;
  1792. md_set_array_sectors(mddev, raid1_size(mddev, 0, 0));
  1793. mddev->queue->backing_dev_info.congested_fn = raid1_congested;
  1794. mddev->queue->backing_dev_info.congested_data = mddev;
  1795. return md_integrity_register(mddev);
  1796. }
  1797. static int stop(mddev_t *mddev)
  1798. {
  1799. conf_t *conf = mddev->private;
  1800. struct bitmap *bitmap = mddev->bitmap;
  1801. /* wait for behind writes to complete */
  1802. if (bitmap && atomic_read(&bitmap->behind_writes) > 0) {
  1803. printk(KERN_INFO "md/raid1:%s: behind writes in progress - waiting to stop.\n",
  1804. mdname(mddev));
  1805. /* need to kick something here to make sure I/O goes? */
  1806. wait_event(bitmap->behind_wait,
  1807. atomic_read(&bitmap->behind_writes) == 0);
  1808. }
  1809. raise_barrier(conf);
  1810. lower_barrier(conf);
  1811. md_unregister_thread(mddev->thread);
  1812. mddev->thread = NULL;
  1813. if (conf->r1bio_pool)
  1814. mempool_destroy(conf->r1bio_pool);
  1815. kfree(conf->mirrors);
  1816. kfree(conf->poolinfo);
  1817. kfree(conf);
  1818. mddev->private = NULL;
  1819. return 0;
  1820. }
  1821. static int raid1_resize(mddev_t *mddev, sector_t sectors)
  1822. {
  1823. /* no resync is happening, and there is enough space
  1824. * on all devices, so we can resize.
  1825. * We need to make sure resync covers any new space.
  1826. * If the array is shrinking we should possibly wait until
  1827. * any io in the removed space completes, but it hardly seems
  1828. * worth it.
  1829. */
  1830. md_set_array_sectors(mddev, raid1_size(mddev, sectors, 0));
  1831. if (mddev->array_sectors > raid1_size(mddev, sectors, 0))
  1832. return -EINVAL;
  1833. set_capacity(mddev->gendisk, mddev->array_sectors);
  1834. revalidate_disk(mddev->gendisk);
  1835. if (sectors > mddev->dev_sectors &&
  1836. mddev->recovery_cp > mddev->dev_sectors) {
  1837. mddev->recovery_cp = mddev->dev_sectors;
  1838. set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
  1839. }
  1840. mddev->dev_sectors = sectors;
  1841. mddev->resync_max_sectors = sectors;
  1842. return 0;
  1843. }
  1844. static int raid1_reshape(mddev_t *mddev)
  1845. {
  1846. /* We need to:
  1847. * 1/ resize the r1bio_pool
  1848. * 2/ resize conf->mirrors
  1849. *
  1850. * We allocate a new r1bio_pool if we can.
  1851. * Then raise a device barrier and wait until all IO stops.
  1852. * Then resize conf->mirrors and swap in the new r1bio pool.
  1853. *
  1854. * At the same time, we "pack" the devices so that all the missing
  1855. * devices have the higher raid_disk numbers.
  1856. */
  1857. mempool_t *newpool, *oldpool;
  1858. struct pool_info *newpoolinfo;
  1859. mirror_info_t *newmirrors;
  1860. conf_t *conf = mddev->private;
  1861. int cnt, raid_disks;
  1862. unsigned long flags;
  1863. int d, d2, err;
  1864. /* Cannot change chunk_size, layout, or level */
  1865. if (mddev->chunk_sectors != mddev->new_chunk_sectors ||
  1866. mddev->layout != mddev->new_layout ||
  1867. mddev->level != mddev->new_level) {
  1868. mddev->new_chunk_sectors = mddev->chunk_sectors;
  1869. mddev->new_layout = mddev->layout;
  1870. mddev->new_level = mddev->level;
  1871. return -EINVAL;
  1872. }
  1873. err = md_allow_write(mddev);
  1874. if (err)
  1875. return err;
  1876. raid_disks = mddev->raid_disks + mddev->delta_disks;
  1877. if (raid_disks < conf->raid_disks) {
  1878. cnt=0;
  1879. for (d= 0; d < conf->raid_disks; d++)
  1880. if (conf->mirrors[d].rdev)
  1881. cnt++;
  1882. if (cnt > raid_disks)
  1883. return -EBUSY;
  1884. }
  1885. newpoolinfo = kmalloc(sizeof(*newpoolinfo), GFP_KERNEL);
  1886. if (!newpoolinfo)
  1887. return -ENOMEM;
  1888. newpoolinfo->mddev = mddev;
  1889. newpoolinfo->raid_disks = raid_disks;
  1890. newpool = mempool_create(NR_RAID1_BIOS, r1bio_pool_alloc,
  1891. r1bio_pool_free, newpoolinfo);
  1892. if (!newpool) {
  1893. kfree(newpoolinfo);
  1894. return -ENOMEM;
  1895. }
  1896. newmirrors = kzalloc(sizeof(struct mirror_info) * raid_disks, GFP_KERNEL);
  1897. if (!newmirrors) {
  1898. kfree(newpoolinfo);
  1899. mempool_destroy(newpool);
  1900. return -ENOMEM;
  1901. }
  1902. raise_barrier(conf);
  1903. /* ok, everything is stopped */
  1904. oldpool = conf->r1bio_pool;
  1905. conf->r1bio_pool = newpool;
  1906. for (d = d2 = 0; d < conf->raid_disks; d++) {
  1907. mdk_rdev_t *rdev = conf->mirrors[d].rdev;
  1908. if (rdev && rdev->raid_disk != d2) {
  1909. char nm[20];
  1910. sprintf(nm, "rd%d", rdev->raid_disk);
  1911. sysfs_remove_link(&mddev->kobj, nm);
  1912. rdev->raid_disk = d2;
  1913. sprintf(nm, "rd%d", rdev->raid_disk);
  1914. sysfs_remove_link(&mddev->kobj, nm);
  1915. if (sysfs_create_link(&mddev->kobj,
  1916. &rdev->kobj, nm))
  1917. printk(KERN_WARNING
  1918. "md/raid1:%s: cannot register "
  1919. "%s\n",
  1920. mdname(mddev), nm);
  1921. }
  1922. if (rdev)
  1923. newmirrors[d2++].rdev = rdev;
  1924. }
  1925. kfree(conf->mirrors);
  1926. conf->mirrors = newmirrors;
  1927. kfree(conf->poolinfo);
  1928. conf->poolinfo = newpoolinfo;
  1929. spin_lock_irqsave(&conf->device_lock, flags);
  1930. mddev->degraded += (raid_disks - conf->raid_disks);
  1931. spin_unlock_irqrestore(&conf->device_lock, flags);
  1932. conf->raid_disks = mddev->raid_disks = raid_disks;
  1933. mddev->delta_disks = 0;
  1934. conf->last_used = 0; /* just make sure it is in-range */
  1935. lower_barrier(conf);
  1936. set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
  1937. md_wakeup_thread(mddev->thread);
  1938. mempool_destroy(oldpool);
  1939. return 0;
  1940. }
  1941. static void raid1_quiesce(mddev_t *mddev, int state)
  1942. {
  1943. conf_t *conf = mddev->private;
  1944. switch(state) {
  1945. case 2: /* wake for suspend */
  1946. wake_up(&conf->wait_barrier);
  1947. break;
  1948. case 1:
  1949. raise_barrier(conf);
  1950. break;
  1951. case 0:
  1952. lower_barrier(conf);
  1953. break;
  1954. }
  1955. }
  1956. static void *raid1_takeover(mddev_t *mddev)
  1957. {
  1958. /* raid1 can take over:
  1959. * raid5 with 2 devices, any layout or chunk size
  1960. */
  1961. if (mddev->level == 5 && mddev->raid_disks == 2) {
  1962. conf_t *conf;
  1963. mddev->new_level = 1;
  1964. mddev->new_layout = 0;
  1965. mddev->new_chunk_sectors = 0;
  1966. conf = setup_conf(mddev);
  1967. if (!IS_ERR(conf))
  1968. conf->barrier = 1;
  1969. return conf;
  1970. }
  1971. return ERR_PTR(-EINVAL);
  1972. }
  1973. static struct mdk_personality raid1_personality =
  1974. {
  1975. .name = "raid1",
  1976. .level = 1,
  1977. .owner = THIS_MODULE,
  1978. .make_request = make_request,
  1979. .run = run,
  1980. .stop = stop,
  1981. .status = status,
  1982. .error_handler = error,
  1983. .hot_add_disk = raid1_add_disk,
  1984. .hot_remove_disk= raid1_remove_disk,
  1985. .spare_active = raid1_spare_active,
  1986. .sync_request = sync_request,
  1987. .resize = raid1_resize,
  1988. .size = raid1_size,
  1989. .check_reshape = raid1_reshape,
  1990. .quiesce = raid1_quiesce,
  1991. .takeover = raid1_takeover,
  1992. };
  1993. static int __init raid_init(void)
  1994. {
  1995. return register_md_personality(&raid1_personality);
  1996. }
  1997. static void raid_exit(void)
  1998. {
  1999. unregister_md_personality(&raid1_personality);
  2000. }
  2001. module_init(raid_init);
  2002. module_exit(raid_exit);
  2003. MODULE_LICENSE("GPL");
  2004. MODULE_DESCRIPTION("RAID1 (mirroring) personality for MD");
  2005. MODULE_ALIAS("md-personality-3"); /* RAID1 */
  2006. MODULE_ALIAS("md-raid1");
  2007. MODULE_ALIAS("md-level-1");