raid1.c 60 KB

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