raid1.c 62 KB

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