blk-core.c 77 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907
  1. /*
  2. * Copyright (C) 1991, 1992 Linus Torvalds
  3. * Copyright (C) 1994, Karl Keyte: Added support for disk statistics
  4. * Elevator latency, (C) 2000 Andrea Arcangeli <andrea@suse.de> SuSE
  5. * Queue request tables / lock, selectable elevator, Jens Axboe <axboe@suse.de>
  6. * kernel-doc documentation started by NeilBrown <neilb@cse.unsw.edu.au>
  7. * - July2000
  8. * bio rewrite, highmem i/o, etc, Jens Axboe <axboe@suse.de> - may 2001
  9. */
  10. /*
  11. * This handles all read/write requests to block devices
  12. */
  13. #include <linux/kernel.h>
  14. #include <linux/module.h>
  15. #include <linux/backing-dev.h>
  16. #include <linux/bio.h>
  17. #include <linux/blkdev.h>
  18. #include <linux/highmem.h>
  19. #include <linux/mm.h>
  20. #include <linux/kernel_stat.h>
  21. #include <linux/string.h>
  22. #include <linux/init.h>
  23. #include <linux/completion.h>
  24. #include <linux/slab.h>
  25. #include <linux/swap.h>
  26. #include <linux/writeback.h>
  27. #include <linux/task_io_accounting_ops.h>
  28. #include <linux/fault-inject.h>
  29. #include <linux/list_sort.h>
  30. #include <linux/delay.h>
  31. #define CREATE_TRACE_POINTS
  32. #include <trace/events/block.h>
  33. #include "blk.h"
  34. EXPORT_TRACEPOINT_SYMBOL_GPL(block_bio_remap);
  35. EXPORT_TRACEPOINT_SYMBOL_GPL(block_rq_remap);
  36. EXPORT_TRACEPOINT_SYMBOL_GPL(block_bio_complete);
  37. DEFINE_IDA(blk_queue_ida);
  38. /*
  39. * For the allocated request tables
  40. */
  41. static struct kmem_cache *request_cachep;
  42. /*
  43. * For queue allocation
  44. */
  45. struct kmem_cache *blk_requestq_cachep;
  46. /*
  47. * Controlling structure to kblockd
  48. */
  49. static struct workqueue_struct *kblockd_workqueue;
  50. static void drive_stat_acct(struct request *rq, int new_io)
  51. {
  52. struct hd_struct *part;
  53. int rw = rq_data_dir(rq);
  54. int cpu;
  55. if (!blk_do_io_stat(rq))
  56. return;
  57. cpu = part_stat_lock();
  58. if (!new_io) {
  59. part = rq->part;
  60. part_stat_inc(cpu, part, merges[rw]);
  61. } else {
  62. part = disk_map_sector_rcu(rq->rq_disk, blk_rq_pos(rq));
  63. if (!hd_struct_try_get(part)) {
  64. /*
  65. * The partition is already being removed,
  66. * the request will be accounted on the disk only
  67. *
  68. * We take a reference on disk->part0 although that
  69. * partition will never be deleted, so we can treat
  70. * it as any other partition.
  71. */
  72. part = &rq->rq_disk->part0;
  73. hd_struct_get(part);
  74. }
  75. part_round_stats(cpu, part);
  76. part_inc_in_flight(part, rw);
  77. rq->part = part;
  78. }
  79. part_stat_unlock();
  80. }
  81. void blk_queue_congestion_threshold(struct request_queue *q)
  82. {
  83. int nr;
  84. nr = q->nr_requests - (q->nr_requests / 8) + 1;
  85. if (nr > q->nr_requests)
  86. nr = q->nr_requests;
  87. q->nr_congestion_on = nr;
  88. nr = q->nr_requests - (q->nr_requests / 8) - (q->nr_requests / 16) - 1;
  89. if (nr < 1)
  90. nr = 1;
  91. q->nr_congestion_off = nr;
  92. }
  93. /**
  94. * blk_get_backing_dev_info - get the address of a queue's backing_dev_info
  95. * @bdev: device
  96. *
  97. * Locates the passed device's request queue and returns the address of its
  98. * backing_dev_info
  99. *
  100. * Will return NULL if the request queue cannot be located.
  101. */
  102. struct backing_dev_info *blk_get_backing_dev_info(struct block_device *bdev)
  103. {
  104. struct backing_dev_info *ret = NULL;
  105. struct request_queue *q = bdev_get_queue(bdev);
  106. if (q)
  107. ret = &q->backing_dev_info;
  108. return ret;
  109. }
  110. EXPORT_SYMBOL(blk_get_backing_dev_info);
  111. void blk_rq_init(struct request_queue *q, struct request *rq)
  112. {
  113. memset(rq, 0, sizeof(*rq));
  114. INIT_LIST_HEAD(&rq->queuelist);
  115. INIT_LIST_HEAD(&rq->timeout_list);
  116. rq->cpu = -1;
  117. rq->q = q;
  118. rq->__sector = (sector_t) -1;
  119. INIT_HLIST_NODE(&rq->hash);
  120. RB_CLEAR_NODE(&rq->rb_node);
  121. rq->cmd = rq->__cmd;
  122. rq->cmd_len = BLK_MAX_CDB;
  123. rq->tag = -1;
  124. rq->ref_count = 1;
  125. rq->start_time = jiffies;
  126. set_start_time_ns(rq);
  127. rq->part = NULL;
  128. }
  129. EXPORT_SYMBOL(blk_rq_init);
  130. static void req_bio_endio(struct request *rq, struct bio *bio,
  131. unsigned int nbytes, int error)
  132. {
  133. if (error)
  134. clear_bit(BIO_UPTODATE, &bio->bi_flags);
  135. else if (!test_bit(BIO_UPTODATE, &bio->bi_flags))
  136. error = -EIO;
  137. if (unlikely(nbytes > bio->bi_size)) {
  138. printk(KERN_ERR "%s: want %u bytes done, %u left\n",
  139. __func__, nbytes, bio->bi_size);
  140. nbytes = bio->bi_size;
  141. }
  142. if (unlikely(rq->cmd_flags & REQ_QUIET))
  143. set_bit(BIO_QUIET, &bio->bi_flags);
  144. bio->bi_size -= nbytes;
  145. bio->bi_sector += (nbytes >> 9);
  146. if (bio_integrity(bio))
  147. bio_integrity_advance(bio, nbytes);
  148. /* don't actually finish bio if it's part of flush sequence */
  149. if (bio->bi_size == 0 && !(rq->cmd_flags & REQ_FLUSH_SEQ))
  150. bio_endio(bio, error);
  151. }
  152. void blk_dump_rq_flags(struct request *rq, char *msg)
  153. {
  154. int bit;
  155. printk(KERN_INFO "%s: dev %s: type=%x, flags=%x\n", msg,
  156. rq->rq_disk ? rq->rq_disk->disk_name : "?", rq->cmd_type,
  157. rq->cmd_flags);
  158. printk(KERN_INFO " sector %llu, nr/cnr %u/%u\n",
  159. (unsigned long long)blk_rq_pos(rq),
  160. blk_rq_sectors(rq), blk_rq_cur_sectors(rq));
  161. printk(KERN_INFO " bio %p, biotail %p, buffer %p, len %u\n",
  162. rq->bio, rq->biotail, rq->buffer, blk_rq_bytes(rq));
  163. if (rq->cmd_type == REQ_TYPE_BLOCK_PC) {
  164. printk(KERN_INFO " cdb: ");
  165. for (bit = 0; bit < BLK_MAX_CDB; bit++)
  166. printk("%02x ", rq->cmd[bit]);
  167. printk("\n");
  168. }
  169. }
  170. EXPORT_SYMBOL(blk_dump_rq_flags);
  171. static void blk_delay_work(struct work_struct *work)
  172. {
  173. struct request_queue *q;
  174. q = container_of(work, struct request_queue, delay_work.work);
  175. spin_lock_irq(q->queue_lock);
  176. __blk_run_queue(q);
  177. spin_unlock_irq(q->queue_lock);
  178. }
  179. /**
  180. * blk_delay_queue - restart queueing after defined interval
  181. * @q: The &struct request_queue in question
  182. * @msecs: Delay in msecs
  183. *
  184. * Description:
  185. * Sometimes queueing needs to be postponed for a little while, to allow
  186. * resources to come back. This function will make sure that queueing is
  187. * restarted around the specified time.
  188. */
  189. void blk_delay_queue(struct request_queue *q, unsigned long msecs)
  190. {
  191. queue_delayed_work(kblockd_workqueue, &q->delay_work,
  192. msecs_to_jiffies(msecs));
  193. }
  194. EXPORT_SYMBOL(blk_delay_queue);
  195. /**
  196. * blk_start_queue - restart a previously stopped queue
  197. * @q: The &struct request_queue in question
  198. *
  199. * Description:
  200. * blk_start_queue() will clear the stop flag on the queue, and call
  201. * the request_fn for the queue if it was in a stopped state when
  202. * entered. Also see blk_stop_queue(). Queue lock must be held.
  203. **/
  204. void blk_start_queue(struct request_queue *q)
  205. {
  206. WARN_ON(!irqs_disabled());
  207. queue_flag_clear(QUEUE_FLAG_STOPPED, q);
  208. __blk_run_queue(q);
  209. }
  210. EXPORT_SYMBOL(blk_start_queue);
  211. /**
  212. * blk_stop_queue - stop a queue
  213. * @q: The &struct request_queue in question
  214. *
  215. * Description:
  216. * The Linux block layer assumes that a block driver will consume all
  217. * entries on the request queue when the request_fn strategy is called.
  218. * Often this will not happen, because of hardware limitations (queue
  219. * depth settings). If a device driver gets a 'queue full' response,
  220. * or if it simply chooses not to queue more I/O at one point, it can
  221. * call this function to prevent the request_fn from being called until
  222. * the driver has signalled it's ready to go again. This happens by calling
  223. * blk_start_queue() to restart queue operations. Queue lock must be held.
  224. **/
  225. void blk_stop_queue(struct request_queue *q)
  226. {
  227. __cancel_delayed_work(&q->delay_work);
  228. queue_flag_set(QUEUE_FLAG_STOPPED, q);
  229. }
  230. EXPORT_SYMBOL(blk_stop_queue);
  231. /**
  232. * blk_sync_queue - cancel any pending callbacks on a queue
  233. * @q: the queue
  234. *
  235. * Description:
  236. * The block layer may perform asynchronous callback activity
  237. * on a queue, such as calling the unplug function after a timeout.
  238. * A block device may call blk_sync_queue to ensure that any
  239. * such activity is cancelled, thus allowing it to release resources
  240. * that the callbacks might use. The caller must already have made sure
  241. * that its ->make_request_fn will not re-add plugging prior to calling
  242. * this function.
  243. *
  244. * This function does not cancel any asynchronous activity arising
  245. * out of elevator or throttling code. That would require elevaotor_exit()
  246. * and blk_throtl_exit() to be called with queue lock initialized.
  247. *
  248. */
  249. void blk_sync_queue(struct request_queue *q)
  250. {
  251. del_timer_sync(&q->timeout);
  252. cancel_delayed_work_sync(&q->delay_work);
  253. }
  254. EXPORT_SYMBOL(blk_sync_queue);
  255. /**
  256. * __blk_run_queue - run a single device queue
  257. * @q: The queue to run
  258. *
  259. * Description:
  260. * See @blk_run_queue. This variant must be called with the queue lock
  261. * held and interrupts disabled.
  262. */
  263. void __blk_run_queue(struct request_queue *q)
  264. {
  265. if (unlikely(blk_queue_stopped(q)))
  266. return;
  267. q->request_fn(q);
  268. }
  269. EXPORT_SYMBOL(__blk_run_queue);
  270. /**
  271. * blk_run_queue_async - run a single device queue in workqueue context
  272. * @q: The queue to run
  273. *
  274. * Description:
  275. * Tells kblockd to perform the equivalent of @blk_run_queue on behalf
  276. * of us.
  277. */
  278. void blk_run_queue_async(struct request_queue *q)
  279. {
  280. if (likely(!blk_queue_stopped(q))) {
  281. __cancel_delayed_work(&q->delay_work);
  282. queue_delayed_work(kblockd_workqueue, &q->delay_work, 0);
  283. }
  284. }
  285. EXPORT_SYMBOL(blk_run_queue_async);
  286. /**
  287. * blk_run_queue - run a single device queue
  288. * @q: The queue to run
  289. *
  290. * Description:
  291. * Invoke request handling on this queue, if it has pending work to do.
  292. * May be used to restart queueing when a request has completed.
  293. */
  294. void blk_run_queue(struct request_queue *q)
  295. {
  296. unsigned long flags;
  297. spin_lock_irqsave(q->queue_lock, flags);
  298. __blk_run_queue(q);
  299. spin_unlock_irqrestore(q->queue_lock, flags);
  300. }
  301. EXPORT_SYMBOL(blk_run_queue);
  302. void blk_put_queue(struct request_queue *q)
  303. {
  304. kobject_put(&q->kobj);
  305. }
  306. EXPORT_SYMBOL(blk_put_queue);
  307. /**
  308. * blk_drain_queue - drain requests from request_queue
  309. * @q: queue to drain
  310. * @drain_all: whether to drain all requests or only the ones w/ ELVPRIV
  311. *
  312. * Drain requests from @q. If @drain_all is set, all requests are drained.
  313. * If not, only ELVPRIV requests are drained. The caller is responsible
  314. * for ensuring that no new requests which need to be drained are queued.
  315. */
  316. void blk_drain_queue(struct request_queue *q, bool drain_all)
  317. {
  318. while (true) {
  319. bool drain = false;
  320. int i;
  321. spin_lock_irq(q->queue_lock);
  322. elv_drain_elevator(q);
  323. if (drain_all)
  324. blk_throtl_drain(q);
  325. /*
  326. * This function might be called on a queue which failed
  327. * driver init after queue creation. Some drivers
  328. * (e.g. fd) get unhappy in such cases. Kick queue iff
  329. * dispatch queue has something on it.
  330. */
  331. if (!list_empty(&q->queue_head))
  332. __blk_run_queue(q);
  333. drain |= q->rq.elvpriv;
  334. /*
  335. * Unfortunately, requests are queued at and tracked from
  336. * multiple places and there's no single counter which can
  337. * be drained. Check all the queues and counters.
  338. */
  339. if (drain_all) {
  340. drain |= !list_empty(&q->queue_head);
  341. for (i = 0; i < 2; i++) {
  342. drain |= q->rq.count[i];
  343. drain |= q->in_flight[i];
  344. drain |= !list_empty(&q->flush_queue[i]);
  345. }
  346. }
  347. spin_unlock_irq(q->queue_lock);
  348. if (!drain)
  349. break;
  350. msleep(10);
  351. }
  352. }
  353. /**
  354. * blk_cleanup_queue - shutdown a request queue
  355. * @q: request queue to shutdown
  356. *
  357. * Mark @q DEAD, drain all pending requests, destroy and put it. All
  358. * future requests will be failed immediately with -ENODEV.
  359. */
  360. void blk_cleanup_queue(struct request_queue *q)
  361. {
  362. spinlock_t *lock = q->queue_lock;
  363. /* mark @q DEAD, no new request or merges will be allowed afterwards */
  364. mutex_lock(&q->sysfs_lock);
  365. queue_flag_set_unlocked(QUEUE_FLAG_DEAD, q);
  366. spin_lock_irq(lock);
  367. queue_flag_set(QUEUE_FLAG_NOMERGES, q);
  368. queue_flag_set(QUEUE_FLAG_NOXMERGES, q);
  369. queue_flag_set(QUEUE_FLAG_DEAD, q);
  370. if (q->queue_lock != &q->__queue_lock)
  371. q->queue_lock = &q->__queue_lock;
  372. spin_unlock_irq(lock);
  373. mutex_unlock(&q->sysfs_lock);
  374. /*
  375. * Drain all requests queued before DEAD marking. The caller might
  376. * be trying to tear down @q before its elevator is initialized, in
  377. * which case we don't want to call into draining.
  378. */
  379. if (q->elevator)
  380. blk_drain_queue(q, true);
  381. /* @q won't process any more request, flush async actions */
  382. del_timer_sync(&q->backing_dev_info.laptop_mode_wb_timer);
  383. blk_sync_queue(q);
  384. /* @q is and will stay empty, shutdown and put */
  385. blk_put_queue(q);
  386. }
  387. EXPORT_SYMBOL(blk_cleanup_queue);
  388. static int blk_init_free_list(struct request_queue *q)
  389. {
  390. struct request_list *rl = &q->rq;
  391. if (unlikely(rl->rq_pool))
  392. return 0;
  393. rl->count[BLK_RW_SYNC] = rl->count[BLK_RW_ASYNC] = 0;
  394. rl->starved[BLK_RW_SYNC] = rl->starved[BLK_RW_ASYNC] = 0;
  395. rl->elvpriv = 0;
  396. init_waitqueue_head(&rl->wait[BLK_RW_SYNC]);
  397. init_waitqueue_head(&rl->wait[BLK_RW_ASYNC]);
  398. rl->rq_pool = mempool_create_node(BLKDEV_MIN_RQ, mempool_alloc_slab,
  399. mempool_free_slab, request_cachep, q->node);
  400. if (!rl->rq_pool)
  401. return -ENOMEM;
  402. return 0;
  403. }
  404. struct request_queue *blk_alloc_queue(gfp_t gfp_mask)
  405. {
  406. return blk_alloc_queue_node(gfp_mask, -1);
  407. }
  408. EXPORT_SYMBOL(blk_alloc_queue);
  409. struct request_queue *blk_alloc_queue_node(gfp_t gfp_mask, int node_id)
  410. {
  411. struct request_queue *q;
  412. int err;
  413. q = kmem_cache_alloc_node(blk_requestq_cachep,
  414. gfp_mask | __GFP_ZERO, node_id);
  415. if (!q)
  416. return NULL;
  417. q->id = ida_simple_get(&blk_queue_ida, 0, 0, GFP_KERNEL);
  418. if (q->id < 0)
  419. goto fail_q;
  420. q->backing_dev_info.ra_pages =
  421. (VM_MAX_READAHEAD * 1024) / PAGE_CACHE_SIZE;
  422. q->backing_dev_info.state = 0;
  423. q->backing_dev_info.capabilities = BDI_CAP_MAP_COPY;
  424. q->backing_dev_info.name = "block";
  425. q->node = node_id;
  426. err = bdi_init(&q->backing_dev_info);
  427. if (err)
  428. goto fail_id;
  429. if (blk_throtl_init(q))
  430. goto fail_id;
  431. setup_timer(&q->backing_dev_info.laptop_mode_wb_timer,
  432. laptop_mode_timer_fn, (unsigned long) q);
  433. setup_timer(&q->timeout, blk_rq_timed_out_timer, (unsigned long) q);
  434. INIT_LIST_HEAD(&q->timeout_list);
  435. INIT_LIST_HEAD(&q->icq_list);
  436. INIT_LIST_HEAD(&q->flush_queue[0]);
  437. INIT_LIST_HEAD(&q->flush_queue[1]);
  438. INIT_LIST_HEAD(&q->flush_data_in_flight);
  439. INIT_DELAYED_WORK(&q->delay_work, blk_delay_work);
  440. kobject_init(&q->kobj, &blk_queue_ktype);
  441. mutex_init(&q->sysfs_lock);
  442. spin_lock_init(&q->__queue_lock);
  443. /*
  444. * By default initialize queue_lock to internal lock and driver can
  445. * override it later if need be.
  446. */
  447. q->queue_lock = &q->__queue_lock;
  448. return q;
  449. fail_id:
  450. ida_simple_remove(&blk_queue_ida, q->id);
  451. fail_q:
  452. kmem_cache_free(blk_requestq_cachep, q);
  453. return NULL;
  454. }
  455. EXPORT_SYMBOL(blk_alloc_queue_node);
  456. /**
  457. * blk_init_queue - prepare a request queue for use with a block device
  458. * @rfn: The function to be called to process requests that have been
  459. * placed on the queue.
  460. * @lock: Request queue spin lock
  461. *
  462. * Description:
  463. * If a block device wishes to use the standard request handling procedures,
  464. * which sorts requests and coalesces adjacent requests, then it must
  465. * call blk_init_queue(). The function @rfn will be called when there
  466. * are requests on the queue that need to be processed. If the device
  467. * supports plugging, then @rfn may not be called immediately when requests
  468. * are available on the queue, but may be called at some time later instead.
  469. * Plugged queues are generally unplugged when a buffer belonging to one
  470. * of the requests on the queue is needed, or due to memory pressure.
  471. *
  472. * @rfn is not required, or even expected, to remove all requests off the
  473. * queue, but only as many as it can handle at a time. If it does leave
  474. * requests on the queue, it is responsible for arranging that the requests
  475. * get dealt with eventually.
  476. *
  477. * The queue spin lock must be held while manipulating the requests on the
  478. * request queue; this lock will be taken also from interrupt context, so irq
  479. * disabling is needed for it.
  480. *
  481. * Function returns a pointer to the initialized request queue, or %NULL if
  482. * it didn't succeed.
  483. *
  484. * Note:
  485. * blk_init_queue() must be paired with a blk_cleanup_queue() call
  486. * when the block device is deactivated (such as at module unload).
  487. **/
  488. struct request_queue *blk_init_queue(request_fn_proc *rfn, spinlock_t *lock)
  489. {
  490. return blk_init_queue_node(rfn, lock, -1);
  491. }
  492. EXPORT_SYMBOL(blk_init_queue);
  493. struct request_queue *
  494. blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id)
  495. {
  496. struct request_queue *uninit_q, *q;
  497. uninit_q = blk_alloc_queue_node(GFP_KERNEL, node_id);
  498. if (!uninit_q)
  499. return NULL;
  500. q = blk_init_allocated_queue(uninit_q, rfn, lock);
  501. if (!q)
  502. blk_cleanup_queue(uninit_q);
  503. return q;
  504. }
  505. EXPORT_SYMBOL(blk_init_queue_node);
  506. struct request_queue *
  507. blk_init_allocated_queue(struct request_queue *q, request_fn_proc *rfn,
  508. spinlock_t *lock)
  509. {
  510. if (!q)
  511. return NULL;
  512. if (blk_init_free_list(q))
  513. return NULL;
  514. q->request_fn = rfn;
  515. q->prep_rq_fn = NULL;
  516. q->unprep_rq_fn = NULL;
  517. q->queue_flags = QUEUE_FLAG_DEFAULT;
  518. /* Override internal queue lock with supplied lock pointer */
  519. if (lock)
  520. q->queue_lock = lock;
  521. /*
  522. * This also sets hw/phys segments, boundary and size
  523. */
  524. blk_queue_make_request(q, blk_queue_bio);
  525. q->sg_reserved_size = INT_MAX;
  526. /*
  527. * all done
  528. */
  529. if (!elevator_init(q, NULL)) {
  530. blk_queue_congestion_threshold(q);
  531. return q;
  532. }
  533. return NULL;
  534. }
  535. EXPORT_SYMBOL(blk_init_allocated_queue);
  536. bool blk_get_queue(struct request_queue *q)
  537. {
  538. if (likely(!blk_queue_dead(q))) {
  539. __blk_get_queue(q);
  540. return true;
  541. }
  542. return false;
  543. }
  544. EXPORT_SYMBOL(blk_get_queue);
  545. static inline void blk_free_request(struct request_queue *q, struct request *rq)
  546. {
  547. if (rq->cmd_flags & REQ_ELVPRIV) {
  548. elv_put_request(q, rq);
  549. if (rq->elv.icq)
  550. put_io_context(rq->elv.icq->ioc);
  551. }
  552. mempool_free(rq, q->rq.rq_pool);
  553. }
  554. static struct request *
  555. blk_alloc_request(struct request_queue *q, struct io_cq *icq,
  556. unsigned int flags, gfp_t gfp_mask)
  557. {
  558. struct request *rq = mempool_alloc(q->rq.rq_pool, gfp_mask);
  559. if (!rq)
  560. return NULL;
  561. blk_rq_init(q, rq);
  562. rq->cmd_flags = flags | REQ_ALLOCED;
  563. if (flags & REQ_ELVPRIV) {
  564. rq->elv.icq = icq;
  565. if (unlikely(elv_set_request(q, rq, gfp_mask))) {
  566. mempool_free(rq, q->rq.rq_pool);
  567. return NULL;
  568. }
  569. /* @rq->elv.icq holds on to io_context until @rq is freed */
  570. if (icq)
  571. get_io_context(icq->ioc);
  572. }
  573. return rq;
  574. }
  575. /*
  576. * ioc_batching returns true if the ioc is a valid batching request and
  577. * should be given priority access to a request.
  578. */
  579. static inline int ioc_batching(struct request_queue *q, struct io_context *ioc)
  580. {
  581. if (!ioc)
  582. return 0;
  583. /*
  584. * Make sure the process is able to allocate at least 1 request
  585. * even if the batch times out, otherwise we could theoretically
  586. * lose wakeups.
  587. */
  588. return ioc->nr_batch_requests == q->nr_batching ||
  589. (ioc->nr_batch_requests > 0
  590. && time_before(jiffies, ioc->last_waited + BLK_BATCH_TIME));
  591. }
  592. /*
  593. * ioc_set_batching sets ioc to be a new "batcher" if it is not one. This
  594. * will cause the process to be a "batcher" on all queues in the system. This
  595. * is the behaviour we want though - once it gets a wakeup it should be given
  596. * a nice run.
  597. */
  598. static void ioc_set_batching(struct request_queue *q, struct io_context *ioc)
  599. {
  600. if (!ioc || ioc_batching(q, ioc))
  601. return;
  602. ioc->nr_batch_requests = q->nr_batching;
  603. ioc->last_waited = jiffies;
  604. }
  605. static void __freed_request(struct request_queue *q, int sync)
  606. {
  607. struct request_list *rl = &q->rq;
  608. if (rl->count[sync] < queue_congestion_off_threshold(q))
  609. blk_clear_queue_congested(q, sync);
  610. if (rl->count[sync] + 1 <= q->nr_requests) {
  611. if (waitqueue_active(&rl->wait[sync]))
  612. wake_up(&rl->wait[sync]);
  613. blk_clear_queue_full(q, sync);
  614. }
  615. }
  616. /*
  617. * A request has just been released. Account for it, update the full and
  618. * congestion status, wake up any waiters. Called under q->queue_lock.
  619. */
  620. static void freed_request(struct request_queue *q, unsigned int flags)
  621. {
  622. struct request_list *rl = &q->rq;
  623. int sync = rw_is_sync(flags);
  624. rl->count[sync]--;
  625. if (flags & REQ_ELVPRIV)
  626. rl->elvpriv--;
  627. __freed_request(q, sync);
  628. if (unlikely(rl->starved[sync ^ 1]))
  629. __freed_request(q, sync ^ 1);
  630. }
  631. /*
  632. * Determine if elevator data should be initialized when allocating the
  633. * request associated with @bio.
  634. */
  635. static bool blk_rq_should_init_elevator(struct bio *bio)
  636. {
  637. if (!bio)
  638. return true;
  639. /*
  640. * Flush requests do not use the elevator so skip initialization.
  641. * This allows a request to share the flush and elevator data.
  642. */
  643. if (bio->bi_rw & (REQ_FLUSH | REQ_FUA))
  644. return false;
  645. return true;
  646. }
  647. /**
  648. * get_request - get a free request
  649. * @q: request_queue to allocate request from
  650. * @rw_flags: RW and SYNC flags
  651. * @bio: bio to allocate request for (can be %NULL)
  652. * @gfp_mask: allocation mask
  653. *
  654. * Get a free request from @q. This function may fail under memory
  655. * pressure or if @q is dead.
  656. *
  657. * Must be callled with @q->queue_lock held and,
  658. * Returns %NULL on failure, with @q->queue_lock held.
  659. * Returns !%NULL on success, with @q->queue_lock *not held*.
  660. */
  661. static struct request *get_request(struct request_queue *q, int rw_flags,
  662. struct bio *bio, gfp_t gfp_mask)
  663. {
  664. struct request *rq = NULL;
  665. struct request_list *rl = &q->rq;
  666. struct elevator_type *et;
  667. struct io_context *ioc;
  668. struct io_cq *icq = NULL;
  669. const bool is_sync = rw_is_sync(rw_flags) != 0;
  670. bool retried = false;
  671. int may_queue;
  672. retry:
  673. et = q->elevator->type;
  674. ioc = current->io_context;
  675. if (unlikely(blk_queue_dead(q)))
  676. return NULL;
  677. may_queue = elv_may_queue(q, rw_flags);
  678. if (may_queue == ELV_MQUEUE_NO)
  679. goto rq_starved;
  680. if (rl->count[is_sync]+1 >= queue_congestion_on_threshold(q)) {
  681. if (rl->count[is_sync]+1 >= q->nr_requests) {
  682. /*
  683. * We want ioc to record batching state. If it's
  684. * not already there, creating a new one requires
  685. * dropping queue_lock, which in turn requires
  686. * retesting conditions to avoid queue hang.
  687. */
  688. if (!ioc && !retried) {
  689. spin_unlock_irq(q->queue_lock);
  690. create_io_context(current, gfp_mask, q->node);
  691. spin_lock_irq(q->queue_lock);
  692. retried = true;
  693. goto retry;
  694. }
  695. /*
  696. * The queue will fill after this allocation, so set
  697. * it as full, and mark this process as "batching".
  698. * This process will be allowed to complete a batch of
  699. * requests, others will be blocked.
  700. */
  701. if (!blk_queue_full(q, is_sync)) {
  702. ioc_set_batching(q, ioc);
  703. blk_set_queue_full(q, is_sync);
  704. } else {
  705. if (may_queue != ELV_MQUEUE_MUST
  706. && !ioc_batching(q, ioc)) {
  707. /*
  708. * The queue is full and the allocating
  709. * process is not a "batcher", and not
  710. * exempted by the IO scheduler
  711. */
  712. goto out;
  713. }
  714. }
  715. }
  716. blk_set_queue_congested(q, is_sync);
  717. }
  718. /*
  719. * Only allow batching queuers to allocate up to 50% over the defined
  720. * limit of requests, otherwise we could have thousands of requests
  721. * allocated with any setting of ->nr_requests
  722. */
  723. if (rl->count[is_sync] >= (3 * q->nr_requests / 2))
  724. goto out;
  725. rl->count[is_sync]++;
  726. rl->starved[is_sync] = 0;
  727. /*
  728. * Decide whether the new request will be managed by elevator. If
  729. * so, mark @rw_flags and increment elvpriv. Non-zero elvpriv will
  730. * prevent the current elevator from being destroyed until the new
  731. * request is freed. This guarantees icq's won't be destroyed and
  732. * makes creating new ones safe.
  733. *
  734. * Also, lookup icq while holding queue_lock. If it doesn't exist,
  735. * it will be created after releasing queue_lock.
  736. */
  737. if (blk_rq_should_init_elevator(bio) &&
  738. !test_bit(QUEUE_FLAG_ELVSWITCH, &q->queue_flags)) {
  739. rw_flags |= REQ_ELVPRIV;
  740. rl->elvpriv++;
  741. if (et->icq_cache && ioc)
  742. icq = ioc_lookup_icq(ioc, q);
  743. }
  744. if (blk_queue_io_stat(q))
  745. rw_flags |= REQ_IO_STAT;
  746. spin_unlock_irq(q->queue_lock);
  747. /* create icq if missing */
  748. if ((rw_flags & REQ_ELVPRIV) && unlikely(et->icq_cache && !icq)) {
  749. icq = ioc_create_icq(q, gfp_mask);
  750. if (!icq)
  751. goto fail_icq;
  752. }
  753. rq = blk_alloc_request(q, icq, rw_flags, gfp_mask);
  754. fail_icq:
  755. if (unlikely(!rq)) {
  756. /*
  757. * Allocation failed presumably due to memory. Undo anything
  758. * we might have messed up.
  759. *
  760. * Allocating task should really be put onto the front of the
  761. * wait queue, but this is pretty rare.
  762. */
  763. spin_lock_irq(q->queue_lock);
  764. freed_request(q, rw_flags);
  765. /*
  766. * in the very unlikely event that allocation failed and no
  767. * requests for this direction was pending, mark us starved
  768. * so that freeing of a request in the other direction will
  769. * notice us. another possible fix would be to split the
  770. * rq mempool into READ and WRITE
  771. */
  772. rq_starved:
  773. if (unlikely(rl->count[is_sync] == 0))
  774. rl->starved[is_sync] = 1;
  775. goto out;
  776. }
  777. /*
  778. * ioc may be NULL here, and ioc_batching will be false. That's
  779. * OK, if the queue is under the request limit then requests need
  780. * not count toward the nr_batch_requests limit. There will always
  781. * be some limit enforced by BLK_BATCH_TIME.
  782. */
  783. if (ioc_batching(q, ioc))
  784. ioc->nr_batch_requests--;
  785. trace_block_getrq(q, bio, rw_flags & 1);
  786. out:
  787. return rq;
  788. }
  789. /**
  790. * get_request_wait - get a free request with retry
  791. * @q: request_queue to allocate request from
  792. * @rw_flags: RW and SYNC flags
  793. * @bio: bio to allocate request for (can be %NULL)
  794. *
  795. * Get a free request from @q. This function keeps retrying under memory
  796. * pressure and fails iff @q is dead.
  797. *
  798. * Must be callled with @q->queue_lock held and,
  799. * Returns %NULL on failure, with @q->queue_lock held.
  800. * Returns !%NULL on success, with @q->queue_lock *not held*.
  801. */
  802. static struct request *get_request_wait(struct request_queue *q, int rw_flags,
  803. struct bio *bio)
  804. {
  805. const bool is_sync = rw_is_sync(rw_flags) != 0;
  806. struct request *rq;
  807. rq = get_request(q, rw_flags, bio, GFP_NOIO);
  808. while (!rq) {
  809. DEFINE_WAIT(wait);
  810. struct request_list *rl = &q->rq;
  811. if (unlikely(blk_queue_dead(q)))
  812. return NULL;
  813. prepare_to_wait_exclusive(&rl->wait[is_sync], &wait,
  814. TASK_UNINTERRUPTIBLE);
  815. trace_block_sleeprq(q, bio, rw_flags & 1);
  816. spin_unlock_irq(q->queue_lock);
  817. io_schedule();
  818. /*
  819. * After sleeping, we become a "batching" process and
  820. * will be able to allocate at least one request, and
  821. * up to a big batch of them for a small period time.
  822. * See ioc_batching, ioc_set_batching
  823. */
  824. create_io_context(current, GFP_NOIO, q->node);
  825. ioc_set_batching(q, current->io_context);
  826. spin_lock_irq(q->queue_lock);
  827. finish_wait(&rl->wait[is_sync], &wait);
  828. rq = get_request(q, rw_flags, bio, GFP_NOIO);
  829. };
  830. return rq;
  831. }
  832. struct request *blk_get_request(struct request_queue *q, int rw, gfp_t gfp_mask)
  833. {
  834. struct request *rq;
  835. BUG_ON(rw != READ && rw != WRITE);
  836. spin_lock_irq(q->queue_lock);
  837. if (gfp_mask & __GFP_WAIT)
  838. rq = get_request_wait(q, rw, NULL);
  839. else
  840. rq = get_request(q, rw, NULL, gfp_mask);
  841. if (!rq)
  842. spin_unlock_irq(q->queue_lock);
  843. /* q->queue_lock is unlocked at this point */
  844. return rq;
  845. }
  846. EXPORT_SYMBOL(blk_get_request);
  847. /**
  848. * blk_make_request - given a bio, allocate a corresponding struct request.
  849. * @q: target request queue
  850. * @bio: The bio describing the memory mappings that will be submitted for IO.
  851. * It may be a chained-bio properly constructed by block/bio layer.
  852. * @gfp_mask: gfp flags to be used for memory allocation
  853. *
  854. * blk_make_request is the parallel of generic_make_request for BLOCK_PC
  855. * type commands. Where the struct request needs to be farther initialized by
  856. * the caller. It is passed a &struct bio, which describes the memory info of
  857. * the I/O transfer.
  858. *
  859. * The caller of blk_make_request must make sure that bi_io_vec
  860. * are set to describe the memory buffers. That bio_data_dir() will return
  861. * the needed direction of the request. (And all bio's in the passed bio-chain
  862. * are properly set accordingly)
  863. *
  864. * If called under none-sleepable conditions, mapped bio buffers must not
  865. * need bouncing, by calling the appropriate masked or flagged allocator,
  866. * suitable for the target device. Otherwise the call to blk_queue_bounce will
  867. * BUG.
  868. *
  869. * WARNING: When allocating/cloning a bio-chain, careful consideration should be
  870. * given to how you allocate bios. In particular, you cannot use __GFP_WAIT for
  871. * anything but the first bio in the chain. Otherwise you risk waiting for IO
  872. * completion of a bio that hasn't been submitted yet, thus resulting in a
  873. * deadlock. Alternatively bios should be allocated using bio_kmalloc() instead
  874. * of bio_alloc(), as that avoids the mempool deadlock.
  875. * If possible a big IO should be split into smaller parts when allocation
  876. * fails. Partial allocation should not be an error, or you risk a live-lock.
  877. */
  878. struct request *blk_make_request(struct request_queue *q, struct bio *bio,
  879. gfp_t gfp_mask)
  880. {
  881. struct request *rq = blk_get_request(q, bio_data_dir(bio), gfp_mask);
  882. if (unlikely(!rq))
  883. return ERR_PTR(-ENOMEM);
  884. for_each_bio(bio) {
  885. struct bio *bounce_bio = bio;
  886. int ret;
  887. blk_queue_bounce(q, &bounce_bio);
  888. ret = blk_rq_append_bio(q, rq, bounce_bio);
  889. if (unlikely(ret)) {
  890. blk_put_request(rq);
  891. return ERR_PTR(ret);
  892. }
  893. }
  894. return rq;
  895. }
  896. EXPORT_SYMBOL(blk_make_request);
  897. /**
  898. * blk_requeue_request - put a request back on queue
  899. * @q: request queue where request should be inserted
  900. * @rq: request to be inserted
  901. *
  902. * Description:
  903. * Drivers often keep queueing requests until the hardware cannot accept
  904. * more, when that condition happens we need to put the request back
  905. * on the queue. Must be called with queue lock held.
  906. */
  907. void blk_requeue_request(struct request_queue *q, struct request *rq)
  908. {
  909. blk_delete_timer(rq);
  910. blk_clear_rq_complete(rq);
  911. trace_block_rq_requeue(q, rq);
  912. if (blk_rq_tagged(rq))
  913. blk_queue_end_tag(q, rq);
  914. BUG_ON(blk_queued_rq(rq));
  915. elv_requeue_request(q, rq);
  916. }
  917. EXPORT_SYMBOL(blk_requeue_request);
  918. static void add_acct_request(struct request_queue *q, struct request *rq,
  919. int where)
  920. {
  921. drive_stat_acct(rq, 1);
  922. __elv_add_request(q, rq, where);
  923. }
  924. static void part_round_stats_single(int cpu, struct hd_struct *part,
  925. unsigned long now)
  926. {
  927. if (now == part->stamp)
  928. return;
  929. if (part_in_flight(part)) {
  930. __part_stat_add(cpu, part, time_in_queue,
  931. part_in_flight(part) * (now - part->stamp));
  932. __part_stat_add(cpu, part, io_ticks, (now - part->stamp));
  933. }
  934. part->stamp = now;
  935. }
  936. /**
  937. * part_round_stats() - Round off the performance stats on a struct disk_stats.
  938. * @cpu: cpu number for stats access
  939. * @part: target partition
  940. *
  941. * The average IO queue length and utilisation statistics are maintained
  942. * by observing the current state of the queue length and the amount of
  943. * time it has been in this state for.
  944. *
  945. * Normally, that accounting is done on IO completion, but that can result
  946. * in more than a second's worth of IO being accounted for within any one
  947. * second, leading to >100% utilisation. To deal with that, we call this
  948. * function to do a round-off before returning the results when reading
  949. * /proc/diskstats. This accounts immediately for all queue usage up to
  950. * the current jiffies and restarts the counters again.
  951. */
  952. void part_round_stats(int cpu, struct hd_struct *part)
  953. {
  954. unsigned long now = jiffies;
  955. if (part->partno)
  956. part_round_stats_single(cpu, &part_to_disk(part)->part0, now);
  957. part_round_stats_single(cpu, part, now);
  958. }
  959. EXPORT_SYMBOL_GPL(part_round_stats);
  960. /*
  961. * queue lock must be held
  962. */
  963. void __blk_put_request(struct request_queue *q, struct request *req)
  964. {
  965. if (unlikely(!q))
  966. return;
  967. if (unlikely(--req->ref_count))
  968. return;
  969. elv_completed_request(q, req);
  970. /* this is a bio leak */
  971. WARN_ON(req->bio != NULL);
  972. /*
  973. * Request may not have originated from ll_rw_blk. if not,
  974. * it didn't come out of our reserved rq pools
  975. */
  976. if (req->cmd_flags & REQ_ALLOCED) {
  977. unsigned int flags = req->cmd_flags;
  978. BUG_ON(!list_empty(&req->queuelist));
  979. BUG_ON(!hlist_unhashed(&req->hash));
  980. blk_free_request(q, req);
  981. freed_request(q, flags);
  982. }
  983. }
  984. EXPORT_SYMBOL_GPL(__blk_put_request);
  985. void blk_put_request(struct request *req)
  986. {
  987. unsigned long flags;
  988. struct request_queue *q = req->q;
  989. spin_lock_irqsave(q->queue_lock, flags);
  990. __blk_put_request(q, req);
  991. spin_unlock_irqrestore(q->queue_lock, flags);
  992. }
  993. EXPORT_SYMBOL(blk_put_request);
  994. /**
  995. * blk_add_request_payload - add a payload to a request
  996. * @rq: request to update
  997. * @page: page backing the payload
  998. * @len: length of the payload.
  999. *
  1000. * This allows to later add a payload to an already submitted request by
  1001. * a block driver. The driver needs to take care of freeing the payload
  1002. * itself.
  1003. *
  1004. * Note that this is a quite horrible hack and nothing but handling of
  1005. * discard requests should ever use it.
  1006. */
  1007. void blk_add_request_payload(struct request *rq, struct page *page,
  1008. unsigned int len)
  1009. {
  1010. struct bio *bio = rq->bio;
  1011. bio->bi_io_vec->bv_page = page;
  1012. bio->bi_io_vec->bv_offset = 0;
  1013. bio->bi_io_vec->bv_len = len;
  1014. bio->bi_size = len;
  1015. bio->bi_vcnt = 1;
  1016. bio->bi_phys_segments = 1;
  1017. rq->__data_len = rq->resid_len = len;
  1018. rq->nr_phys_segments = 1;
  1019. rq->buffer = bio_data(bio);
  1020. }
  1021. EXPORT_SYMBOL_GPL(blk_add_request_payload);
  1022. static bool bio_attempt_back_merge(struct request_queue *q, struct request *req,
  1023. struct bio *bio)
  1024. {
  1025. const int ff = bio->bi_rw & REQ_FAILFAST_MASK;
  1026. if (!ll_back_merge_fn(q, req, bio))
  1027. return false;
  1028. trace_block_bio_backmerge(q, bio);
  1029. if ((req->cmd_flags & REQ_FAILFAST_MASK) != ff)
  1030. blk_rq_set_mixed_merge(req);
  1031. req->biotail->bi_next = bio;
  1032. req->biotail = bio;
  1033. req->__data_len += bio->bi_size;
  1034. req->ioprio = ioprio_best(req->ioprio, bio_prio(bio));
  1035. drive_stat_acct(req, 0);
  1036. return true;
  1037. }
  1038. static bool bio_attempt_front_merge(struct request_queue *q,
  1039. struct request *req, struct bio *bio)
  1040. {
  1041. const int ff = bio->bi_rw & REQ_FAILFAST_MASK;
  1042. if (!ll_front_merge_fn(q, req, bio))
  1043. return false;
  1044. trace_block_bio_frontmerge(q, bio);
  1045. if ((req->cmd_flags & REQ_FAILFAST_MASK) != ff)
  1046. blk_rq_set_mixed_merge(req);
  1047. bio->bi_next = req->bio;
  1048. req->bio = bio;
  1049. /*
  1050. * may not be valid. if the low level driver said
  1051. * it didn't need a bounce buffer then it better
  1052. * not touch req->buffer either...
  1053. */
  1054. req->buffer = bio_data(bio);
  1055. req->__sector = bio->bi_sector;
  1056. req->__data_len += bio->bi_size;
  1057. req->ioprio = ioprio_best(req->ioprio, bio_prio(bio));
  1058. drive_stat_acct(req, 0);
  1059. return true;
  1060. }
  1061. /**
  1062. * attempt_plug_merge - try to merge with %current's plugged list
  1063. * @q: request_queue new bio is being queued at
  1064. * @bio: new bio being queued
  1065. * @request_count: out parameter for number of traversed plugged requests
  1066. *
  1067. * Determine whether @bio being queued on @q can be merged with a request
  1068. * on %current's plugged list. Returns %true if merge was successful,
  1069. * otherwise %false.
  1070. *
  1071. * Plugging coalesces IOs from the same issuer for the same purpose without
  1072. * going through @q->queue_lock. As such it's more of an issuing mechanism
  1073. * than scheduling, and the request, while may have elvpriv data, is not
  1074. * added on the elevator at this point. In addition, we don't have
  1075. * reliable access to the elevator outside queue lock. Only check basic
  1076. * merging parameters without querying the elevator.
  1077. */
  1078. static bool attempt_plug_merge(struct request_queue *q, struct bio *bio,
  1079. unsigned int *request_count)
  1080. {
  1081. struct blk_plug *plug;
  1082. struct request *rq;
  1083. bool ret = false;
  1084. plug = current->plug;
  1085. if (!plug)
  1086. goto out;
  1087. *request_count = 0;
  1088. list_for_each_entry_reverse(rq, &plug->list, queuelist) {
  1089. int el_ret;
  1090. (*request_count)++;
  1091. if (rq->q != q || !blk_rq_merge_ok(rq, bio))
  1092. continue;
  1093. el_ret = blk_try_merge(rq, bio);
  1094. if (el_ret == ELEVATOR_BACK_MERGE) {
  1095. ret = bio_attempt_back_merge(q, rq, bio);
  1096. if (ret)
  1097. break;
  1098. } else if (el_ret == ELEVATOR_FRONT_MERGE) {
  1099. ret = bio_attempt_front_merge(q, rq, bio);
  1100. if (ret)
  1101. break;
  1102. }
  1103. }
  1104. out:
  1105. return ret;
  1106. }
  1107. void init_request_from_bio(struct request *req, struct bio *bio)
  1108. {
  1109. req->cmd_type = REQ_TYPE_FS;
  1110. req->cmd_flags |= bio->bi_rw & REQ_COMMON_MASK;
  1111. if (bio->bi_rw & REQ_RAHEAD)
  1112. req->cmd_flags |= REQ_FAILFAST_MASK;
  1113. req->errors = 0;
  1114. req->__sector = bio->bi_sector;
  1115. req->ioprio = bio_prio(bio);
  1116. blk_rq_bio_prep(req->q, req, bio);
  1117. }
  1118. void blk_queue_bio(struct request_queue *q, struct bio *bio)
  1119. {
  1120. const bool sync = !!(bio->bi_rw & REQ_SYNC);
  1121. struct blk_plug *plug;
  1122. int el_ret, rw_flags, where = ELEVATOR_INSERT_SORT;
  1123. struct request *req;
  1124. unsigned int request_count = 0;
  1125. /*
  1126. * low level driver can indicate that it wants pages above a
  1127. * certain limit bounced to low memory (ie for highmem, or even
  1128. * ISA dma in theory)
  1129. */
  1130. blk_queue_bounce(q, &bio);
  1131. if (bio->bi_rw & (REQ_FLUSH | REQ_FUA)) {
  1132. spin_lock_irq(q->queue_lock);
  1133. where = ELEVATOR_INSERT_FLUSH;
  1134. goto get_rq;
  1135. }
  1136. /*
  1137. * Check if we can merge with the plugged list before grabbing
  1138. * any locks.
  1139. */
  1140. if (attempt_plug_merge(q, bio, &request_count))
  1141. return;
  1142. spin_lock_irq(q->queue_lock);
  1143. el_ret = elv_merge(q, &req, bio);
  1144. if (el_ret == ELEVATOR_BACK_MERGE) {
  1145. if (bio_attempt_back_merge(q, req, bio)) {
  1146. elv_bio_merged(q, req, bio);
  1147. if (!attempt_back_merge(q, req))
  1148. elv_merged_request(q, req, el_ret);
  1149. goto out_unlock;
  1150. }
  1151. } else if (el_ret == ELEVATOR_FRONT_MERGE) {
  1152. if (bio_attempt_front_merge(q, req, bio)) {
  1153. elv_bio_merged(q, req, bio);
  1154. if (!attempt_front_merge(q, req))
  1155. elv_merged_request(q, req, el_ret);
  1156. goto out_unlock;
  1157. }
  1158. }
  1159. get_rq:
  1160. /*
  1161. * This sync check and mask will be re-done in init_request_from_bio(),
  1162. * but we need to set it earlier to expose the sync flag to the
  1163. * rq allocator and io schedulers.
  1164. */
  1165. rw_flags = bio_data_dir(bio);
  1166. if (sync)
  1167. rw_flags |= REQ_SYNC;
  1168. /*
  1169. * Grab a free request. This is might sleep but can not fail.
  1170. * Returns with the queue unlocked.
  1171. */
  1172. req = get_request_wait(q, rw_flags, bio);
  1173. if (unlikely(!req)) {
  1174. bio_endio(bio, -ENODEV); /* @q is dead */
  1175. goto out_unlock;
  1176. }
  1177. /*
  1178. * After dropping the lock and possibly sleeping here, our request
  1179. * may now be mergeable after it had proven unmergeable (above).
  1180. * We don't worry about that case for efficiency. It won't happen
  1181. * often, and the elevators are able to handle it.
  1182. */
  1183. init_request_from_bio(req, bio);
  1184. if (test_bit(QUEUE_FLAG_SAME_COMP, &q->queue_flags))
  1185. req->cpu = raw_smp_processor_id();
  1186. plug = current->plug;
  1187. if (plug) {
  1188. /*
  1189. * If this is the first request added after a plug, fire
  1190. * of a plug trace. If others have been added before, check
  1191. * if we have multiple devices in this plug. If so, make a
  1192. * note to sort the list before dispatch.
  1193. */
  1194. if (list_empty(&plug->list))
  1195. trace_block_plug(q);
  1196. else {
  1197. if (!plug->should_sort) {
  1198. struct request *__rq;
  1199. __rq = list_entry_rq(plug->list.prev);
  1200. if (__rq->q != q)
  1201. plug->should_sort = 1;
  1202. }
  1203. if (request_count >= BLK_MAX_REQUEST_COUNT) {
  1204. blk_flush_plug_list(plug, false);
  1205. trace_block_plug(q);
  1206. }
  1207. }
  1208. list_add_tail(&req->queuelist, &plug->list);
  1209. drive_stat_acct(req, 1);
  1210. } else {
  1211. spin_lock_irq(q->queue_lock);
  1212. add_acct_request(q, req, where);
  1213. __blk_run_queue(q);
  1214. out_unlock:
  1215. spin_unlock_irq(q->queue_lock);
  1216. }
  1217. }
  1218. EXPORT_SYMBOL_GPL(blk_queue_bio); /* for device mapper only */
  1219. /*
  1220. * If bio->bi_dev is a partition, remap the location
  1221. */
  1222. static inline void blk_partition_remap(struct bio *bio)
  1223. {
  1224. struct block_device *bdev = bio->bi_bdev;
  1225. if (bio_sectors(bio) && bdev != bdev->bd_contains) {
  1226. struct hd_struct *p = bdev->bd_part;
  1227. bio->bi_sector += p->start_sect;
  1228. bio->bi_bdev = bdev->bd_contains;
  1229. trace_block_bio_remap(bdev_get_queue(bio->bi_bdev), bio,
  1230. bdev->bd_dev,
  1231. bio->bi_sector - p->start_sect);
  1232. }
  1233. }
  1234. static void handle_bad_sector(struct bio *bio)
  1235. {
  1236. char b[BDEVNAME_SIZE];
  1237. printk(KERN_INFO "attempt to access beyond end of device\n");
  1238. printk(KERN_INFO "%s: rw=%ld, want=%Lu, limit=%Lu\n",
  1239. bdevname(bio->bi_bdev, b),
  1240. bio->bi_rw,
  1241. (unsigned long long)bio->bi_sector + bio_sectors(bio),
  1242. (long long)(i_size_read(bio->bi_bdev->bd_inode) >> 9));
  1243. set_bit(BIO_EOF, &bio->bi_flags);
  1244. }
  1245. #ifdef CONFIG_FAIL_MAKE_REQUEST
  1246. static DECLARE_FAULT_ATTR(fail_make_request);
  1247. static int __init setup_fail_make_request(char *str)
  1248. {
  1249. return setup_fault_attr(&fail_make_request, str);
  1250. }
  1251. __setup("fail_make_request=", setup_fail_make_request);
  1252. static bool should_fail_request(struct hd_struct *part, unsigned int bytes)
  1253. {
  1254. return part->make_it_fail && should_fail(&fail_make_request, bytes);
  1255. }
  1256. static int __init fail_make_request_debugfs(void)
  1257. {
  1258. struct dentry *dir = fault_create_debugfs_attr("fail_make_request",
  1259. NULL, &fail_make_request);
  1260. return IS_ERR(dir) ? PTR_ERR(dir) : 0;
  1261. }
  1262. late_initcall(fail_make_request_debugfs);
  1263. #else /* CONFIG_FAIL_MAKE_REQUEST */
  1264. static inline bool should_fail_request(struct hd_struct *part,
  1265. unsigned int bytes)
  1266. {
  1267. return false;
  1268. }
  1269. #endif /* CONFIG_FAIL_MAKE_REQUEST */
  1270. /*
  1271. * Check whether this bio extends beyond the end of the device.
  1272. */
  1273. static inline int bio_check_eod(struct bio *bio, unsigned int nr_sectors)
  1274. {
  1275. sector_t maxsector;
  1276. if (!nr_sectors)
  1277. return 0;
  1278. /* Test device or partition size, when known. */
  1279. maxsector = i_size_read(bio->bi_bdev->bd_inode) >> 9;
  1280. if (maxsector) {
  1281. sector_t sector = bio->bi_sector;
  1282. if (maxsector < nr_sectors || maxsector - nr_sectors < sector) {
  1283. /*
  1284. * This may well happen - the kernel calls bread()
  1285. * without checking the size of the device, e.g., when
  1286. * mounting a device.
  1287. */
  1288. handle_bad_sector(bio);
  1289. return 1;
  1290. }
  1291. }
  1292. return 0;
  1293. }
  1294. static noinline_for_stack bool
  1295. generic_make_request_checks(struct bio *bio)
  1296. {
  1297. struct request_queue *q;
  1298. int nr_sectors = bio_sectors(bio);
  1299. int err = -EIO;
  1300. char b[BDEVNAME_SIZE];
  1301. struct hd_struct *part;
  1302. might_sleep();
  1303. if (bio_check_eod(bio, nr_sectors))
  1304. goto end_io;
  1305. q = bdev_get_queue(bio->bi_bdev);
  1306. if (unlikely(!q)) {
  1307. printk(KERN_ERR
  1308. "generic_make_request: Trying to access "
  1309. "nonexistent block-device %s (%Lu)\n",
  1310. bdevname(bio->bi_bdev, b),
  1311. (long long) bio->bi_sector);
  1312. goto end_io;
  1313. }
  1314. if (unlikely(!(bio->bi_rw & REQ_DISCARD) &&
  1315. nr_sectors > queue_max_hw_sectors(q))) {
  1316. printk(KERN_ERR "bio too big device %s (%u > %u)\n",
  1317. bdevname(bio->bi_bdev, b),
  1318. bio_sectors(bio),
  1319. queue_max_hw_sectors(q));
  1320. goto end_io;
  1321. }
  1322. part = bio->bi_bdev->bd_part;
  1323. if (should_fail_request(part, bio->bi_size) ||
  1324. should_fail_request(&part_to_disk(part)->part0,
  1325. bio->bi_size))
  1326. goto end_io;
  1327. /*
  1328. * If this device has partitions, remap block n
  1329. * of partition p to block n+start(p) of the disk.
  1330. */
  1331. blk_partition_remap(bio);
  1332. if (bio_integrity_enabled(bio) && bio_integrity_prep(bio))
  1333. goto end_io;
  1334. if (bio_check_eod(bio, nr_sectors))
  1335. goto end_io;
  1336. /*
  1337. * Filter flush bio's early so that make_request based
  1338. * drivers without flush support don't have to worry
  1339. * about them.
  1340. */
  1341. if ((bio->bi_rw & (REQ_FLUSH | REQ_FUA)) && !q->flush_flags) {
  1342. bio->bi_rw &= ~(REQ_FLUSH | REQ_FUA);
  1343. if (!nr_sectors) {
  1344. err = 0;
  1345. goto end_io;
  1346. }
  1347. }
  1348. if ((bio->bi_rw & REQ_DISCARD) &&
  1349. (!blk_queue_discard(q) ||
  1350. ((bio->bi_rw & REQ_SECURE) &&
  1351. !blk_queue_secdiscard(q)))) {
  1352. err = -EOPNOTSUPP;
  1353. goto end_io;
  1354. }
  1355. if (blk_throtl_bio(q, bio))
  1356. return false; /* throttled, will be resubmitted later */
  1357. trace_block_bio_queue(q, bio);
  1358. return true;
  1359. end_io:
  1360. bio_endio(bio, err);
  1361. return false;
  1362. }
  1363. /**
  1364. * generic_make_request - hand a buffer to its device driver for I/O
  1365. * @bio: The bio describing the location in memory and on the device.
  1366. *
  1367. * generic_make_request() is used to make I/O requests of block
  1368. * devices. It is passed a &struct bio, which describes the I/O that needs
  1369. * to be done.
  1370. *
  1371. * generic_make_request() does not return any status. The
  1372. * success/failure status of the request, along with notification of
  1373. * completion, is delivered asynchronously through the bio->bi_end_io
  1374. * function described (one day) else where.
  1375. *
  1376. * The caller of generic_make_request must make sure that bi_io_vec
  1377. * are set to describe the memory buffer, and that bi_dev and bi_sector are
  1378. * set to describe the device address, and the
  1379. * bi_end_io and optionally bi_private are set to describe how
  1380. * completion notification should be signaled.
  1381. *
  1382. * generic_make_request and the drivers it calls may use bi_next if this
  1383. * bio happens to be merged with someone else, and may resubmit the bio to
  1384. * a lower device by calling into generic_make_request recursively, which
  1385. * means the bio should NOT be touched after the call to ->make_request_fn.
  1386. */
  1387. void generic_make_request(struct bio *bio)
  1388. {
  1389. struct bio_list bio_list_on_stack;
  1390. if (!generic_make_request_checks(bio))
  1391. return;
  1392. /*
  1393. * We only want one ->make_request_fn to be active at a time, else
  1394. * stack usage with stacked devices could be a problem. So use
  1395. * current->bio_list to keep a list of requests submited by a
  1396. * make_request_fn function. current->bio_list is also used as a
  1397. * flag to say if generic_make_request is currently active in this
  1398. * task or not. If it is NULL, then no make_request is active. If
  1399. * it is non-NULL, then a make_request is active, and new requests
  1400. * should be added at the tail
  1401. */
  1402. if (current->bio_list) {
  1403. bio_list_add(current->bio_list, bio);
  1404. return;
  1405. }
  1406. /* following loop may be a bit non-obvious, and so deserves some
  1407. * explanation.
  1408. * Before entering the loop, bio->bi_next is NULL (as all callers
  1409. * ensure that) so we have a list with a single bio.
  1410. * We pretend that we have just taken it off a longer list, so
  1411. * we assign bio_list to a pointer to the bio_list_on_stack,
  1412. * thus initialising the bio_list of new bios to be
  1413. * added. ->make_request() may indeed add some more bios
  1414. * through a recursive call to generic_make_request. If it
  1415. * did, we find a non-NULL value in bio_list and re-enter the loop
  1416. * from the top. In this case we really did just take the bio
  1417. * of the top of the list (no pretending) and so remove it from
  1418. * bio_list, and call into ->make_request() again.
  1419. */
  1420. BUG_ON(bio->bi_next);
  1421. bio_list_init(&bio_list_on_stack);
  1422. current->bio_list = &bio_list_on_stack;
  1423. do {
  1424. struct request_queue *q = bdev_get_queue(bio->bi_bdev);
  1425. q->make_request_fn(q, bio);
  1426. bio = bio_list_pop(current->bio_list);
  1427. } while (bio);
  1428. current->bio_list = NULL; /* deactivate */
  1429. }
  1430. EXPORT_SYMBOL(generic_make_request);
  1431. /**
  1432. * submit_bio - submit a bio to the block device layer for I/O
  1433. * @rw: whether to %READ or %WRITE, or maybe to %READA (read ahead)
  1434. * @bio: The &struct bio which describes the I/O
  1435. *
  1436. * submit_bio() is very similar in purpose to generic_make_request(), and
  1437. * uses that function to do most of the work. Both are fairly rough
  1438. * interfaces; @bio must be presetup and ready for I/O.
  1439. *
  1440. */
  1441. void submit_bio(int rw, struct bio *bio)
  1442. {
  1443. int count = bio_sectors(bio);
  1444. bio->bi_rw |= rw;
  1445. /*
  1446. * If it's a regular read/write or a barrier with data attached,
  1447. * go through the normal accounting stuff before submission.
  1448. */
  1449. if (bio_has_data(bio) && !(rw & REQ_DISCARD)) {
  1450. if (rw & WRITE) {
  1451. count_vm_events(PGPGOUT, count);
  1452. } else {
  1453. task_io_account_read(bio->bi_size);
  1454. count_vm_events(PGPGIN, count);
  1455. }
  1456. if (unlikely(block_dump)) {
  1457. char b[BDEVNAME_SIZE];
  1458. printk(KERN_DEBUG "%s(%d): %s block %Lu on %s (%u sectors)\n",
  1459. current->comm, task_pid_nr(current),
  1460. (rw & WRITE) ? "WRITE" : "READ",
  1461. (unsigned long long)bio->bi_sector,
  1462. bdevname(bio->bi_bdev, b),
  1463. count);
  1464. }
  1465. }
  1466. generic_make_request(bio);
  1467. }
  1468. EXPORT_SYMBOL(submit_bio);
  1469. /**
  1470. * blk_rq_check_limits - Helper function to check a request for the queue limit
  1471. * @q: the queue
  1472. * @rq: the request being checked
  1473. *
  1474. * Description:
  1475. * @rq may have been made based on weaker limitations of upper-level queues
  1476. * in request stacking drivers, and it may violate the limitation of @q.
  1477. * Since the block layer and the underlying device driver trust @rq
  1478. * after it is inserted to @q, it should be checked against @q before
  1479. * the insertion using this generic function.
  1480. *
  1481. * This function should also be useful for request stacking drivers
  1482. * in some cases below, so export this function.
  1483. * Request stacking drivers like request-based dm may change the queue
  1484. * limits while requests are in the queue (e.g. dm's table swapping).
  1485. * Such request stacking drivers should check those requests agaist
  1486. * the new queue limits again when they dispatch those requests,
  1487. * although such checkings are also done against the old queue limits
  1488. * when submitting requests.
  1489. */
  1490. int blk_rq_check_limits(struct request_queue *q, struct request *rq)
  1491. {
  1492. if (rq->cmd_flags & REQ_DISCARD)
  1493. return 0;
  1494. if (blk_rq_sectors(rq) > queue_max_sectors(q) ||
  1495. blk_rq_bytes(rq) > queue_max_hw_sectors(q) << 9) {
  1496. printk(KERN_ERR "%s: over max size limit.\n", __func__);
  1497. return -EIO;
  1498. }
  1499. /*
  1500. * queue's settings related to segment counting like q->bounce_pfn
  1501. * may differ from that of other stacking queues.
  1502. * Recalculate it to check the request correctly on this queue's
  1503. * limitation.
  1504. */
  1505. blk_recalc_rq_segments(rq);
  1506. if (rq->nr_phys_segments > queue_max_segments(q)) {
  1507. printk(KERN_ERR "%s: over max segments limit.\n", __func__);
  1508. return -EIO;
  1509. }
  1510. return 0;
  1511. }
  1512. EXPORT_SYMBOL_GPL(blk_rq_check_limits);
  1513. /**
  1514. * blk_insert_cloned_request - Helper for stacking drivers to submit a request
  1515. * @q: the queue to submit the request
  1516. * @rq: the request being queued
  1517. */
  1518. int blk_insert_cloned_request(struct request_queue *q, struct request *rq)
  1519. {
  1520. unsigned long flags;
  1521. int where = ELEVATOR_INSERT_BACK;
  1522. if (blk_rq_check_limits(q, rq))
  1523. return -EIO;
  1524. if (rq->rq_disk &&
  1525. should_fail_request(&rq->rq_disk->part0, blk_rq_bytes(rq)))
  1526. return -EIO;
  1527. spin_lock_irqsave(q->queue_lock, flags);
  1528. if (unlikely(blk_queue_dead(q))) {
  1529. spin_unlock_irqrestore(q->queue_lock, flags);
  1530. return -ENODEV;
  1531. }
  1532. /*
  1533. * Submitting request must be dequeued before calling this function
  1534. * because it will be linked to another request_queue
  1535. */
  1536. BUG_ON(blk_queued_rq(rq));
  1537. if (rq->cmd_flags & (REQ_FLUSH|REQ_FUA))
  1538. where = ELEVATOR_INSERT_FLUSH;
  1539. add_acct_request(q, rq, where);
  1540. if (where == ELEVATOR_INSERT_FLUSH)
  1541. __blk_run_queue(q);
  1542. spin_unlock_irqrestore(q->queue_lock, flags);
  1543. return 0;
  1544. }
  1545. EXPORT_SYMBOL_GPL(blk_insert_cloned_request);
  1546. /**
  1547. * blk_rq_err_bytes - determine number of bytes till the next failure boundary
  1548. * @rq: request to examine
  1549. *
  1550. * Description:
  1551. * A request could be merge of IOs which require different failure
  1552. * handling. This function determines the number of bytes which
  1553. * can be failed from the beginning of the request without
  1554. * crossing into area which need to be retried further.
  1555. *
  1556. * Return:
  1557. * The number of bytes to fail.
  1558. *
  1559. * Context:
  1560. * queue_lock must be held.
  1561. */
  1562. unsigned int blk_rq_err_bytes(const struct request *rq)
  1563. {
  1564. unsigned int ff = rq->cmd_flags & REQ_FAILFAST_MASK;
  1565. unsigned int bytes = 0;
  1566. struct bio *bio;
  1567. if (!(rq->cmd_flags & REQ_MIXED_MERGE))
  1568. return blk_rq_bytes(rq);
  1569. /*
  1570. * Currently the only 'mixing' which can happen is between
  1571. * different fastfail types. We can safely fail portions
  1572. * which have all the failfast bits that the first one has -
  1573. * the ones which are at least as eager to fail as the first
  1574. * one.
  1575. */
  1576. for (bio = rq->bio; bio; bio = bio->bi_next) {
  1577. if ((bio->bi_rw & ff) != ff)
  1578. break;
  1579. bytes += bio->bi_size;
  1580. }
  1581. /* this could lead to infinite loop */
  1582. BUG_ON(blk_rq_bytes(rq) && !bytes);
  1583. return bytes;
  1584. }
  1585. EXPORT_SYMBOL_GPL(blk_rq_err_bytes);
  1586. static void blk_account_io_completion(struct request *req, unsigned int bytes)
  1587. {
  1588. if (blk_do_io_stat(req)) {
  1589. const int rw = rq_data_dir(req);
  1590. struct hd_struct *part;
  1591. int cpu;
  1592. cpu = part_stat_lock();
  1593. part = req->part;
  1594. part_stat_add(cpu, part, sectors[rw], bytes >> 9);
  1595. part_stat_unlock();
  1596. }
  1597. }
  1598. static void blk_account_io_done(struct request *req)
  1599. {
  1600. /*
  1601. * Account IO completion. flush_rq isn't accounted as a
  1602. * normal IO on queueing nor completion. Accounting the
  1603. * containing request is enough.
  1604. */
  1605. if (blk_do_io_stat(req) && !(req->cmd_flags & REQ_FLUSH_SEQ)) {
  1606. unsigned long duration = jiffies - req->start_time;
  1607. const int rw = rq_data_dir(req);
  1608. struct hd_struct *part;
  1609. int cpu;
  1610. cpu = part_stat_lock();
  1611. part = req->part;
  1612. part_stat_inc(cpu, part, ios[rw]);
  1613. part_stat_add(cpu, part, ticks[rw], duration);
  1614. part_round_stats(cpu, part);
  1615. part_dec_in_flight(part, rw);
  1616. hd_struct_put(part);
  1617. part_stat_unlock();
  1618. }
  1619. }
  1620. /**
  1621. * blk_peek_request - peek at the top of a request queue
  1622. * @q: request queue to peek at
  1623. *
  1624. * Description:
  1625. * Return the request at the top of @q. The returned request
  1626. * should be started using blk_start_request() before LLD starts
  1627. * processing it.
  1628. *
  1629. * Return:
  1630. * Pointer to the request at the top of @q if available. Null
  1631. * otherwise.
  1632. *
  1633. * Context:
  1634. * queue_lock must be held.
  1635. */
  1636. struct request *blk_peek_request(struct request_queue *q)
  1637. {
  1638. struct request *rq;
  1639. int ret;
  1640. while ((rq = __elv_next_request(q)) != NULL) {
  1641. if (!(rq->cmd_flags & REQ_STARTED)) {
  1642. /*
  1643. * This is the first time the device driver
  1644. * sees this request (possibly after
  1645. * requeueing). Notify IO scheduler.
  1646. */
  1647. if (rq->cmd_flags & REQ_SORTED)
  1648. elv_activate_rq(q, rq);
  1649. /*
  1650. * just mark as started even if we don't start
  1651. * it, a request that has been delayed should
  1652. * not be passed by new incoming requests
  1653. */
  1654. rq->cmd_flags |= REQ_STARTED;
  1655. trace_block_rq_issue(q, rq);
  1656. }
  1657. if (!q->boundary_rq || q->boundary_rq == rq) {
  1658. q->end_sector = rq_end_sector(rq);
  1659. q->boundary_rq = NULL;
  1660. }
  1661. if (rq->cmd_flags & REQ_DONTPREP)
  1662. break;
  1663. if (q->dma_drain_size && blk_rq_bytes(rq)) {
  1664. /*
  1665. * make sure space for the drain appears we
  1666. * know we can do this because max_hw_segments
  1667. * has been adjusted to be one fewer than the
  1668. * device can handle
  1669. */
  1670. rq->nr_phys_segments++;
  1671. }
  1672. if (!q->prep_rq_fn)
  1673. break;
  1674. ret = q->prep_rq_fn(q, rq);
  1675. if (ret == BLKPREP_OK) {
  1676. break;
  1677. } else if (ret == BLKPREP_DEFER) {
  1678. /*
  1679. * the request may have been (partially) prepped.
  1680. * we need to keep this request in the front to
  1681. * avoid resource deadlock. REQ_STARTED will
  1682. * prevent other fs requests from passing this one.
  1683. */
  1684. if (q->dma_drain_size && blk_rq_bytes(rq) &&
  1685. !(rq->cmd_flags & REQ_DONTPREP)) {
  1686. /*
  1687. * remove the space for the drain we added
  1688. * so that we don't add it again
  1689. */
  1690. --rq->nr_phys_segments;
  1691. }
  1692. rq = NULL;
  1693. break;
  1694. } else if (ret == BLKPREP_KILL) {
  1695. rq->cmd_flags |= REQ_QUIET;
  1696. /*
  1697. * Mark this request as started so we don't trigger
  1698. * any debug logic in the end I/O path.
  1699. */
  1700. blk_start_request(rq);
  1701. __blk_end_request_all(rq, -EIO);
  1702. } else {
  1703. printk(KERN_ERR "%s: bad return=%d\n", __func__, ret);
  1704. break;
  1705. }
  1706. }
  1707. return rq;
  1708. }
  1709. EXPORT_SYMBOL(blk_peek_request);
  1710. void blk_dequeue_request(struct request *rq)
  1711. {
  1712. struct request_queue *q = rq->q;
  1713. BUG_ON(list_empty(&rq->queuelist));
  1714. BUG_ON(ELV_ON_HASH(rq));
  1715. list_del_init(&rq->queuelist);
  1716. /*
  1717. * the time frame between a request being removed from the lists
  1718. * and to it is freed is accounted as io that is in progress at
  1719. * the driver side.
  1720. */
  1721. if (blk_account_rq(rq)) {
  1722. q->in_flight[rq_is_sync(rq)]++;
  1723. set_io_start_time_ns(rq);
  1724. }
  1725. }
  1726. /**
  1727. * blk_start_request - start request processing on the driver
  1728. * @req: request to dequeue
  1729. *
  1730. * Description:
  1731. * Dequeue @req and start timeout timer on it. This hands off the
  1732. * request to the driver.
  1733. *
  1734. * Block internal functions which don't want to start timer should
  1735. * call blk_dequeue_request().
  1736. *
  1737. * Context:
  1738. * queue_lock must be held.
  1739. */
  1740. void blk_start_request(struct request *req)
  1741. {
  1742. blk_dequeue_request(req);
  1743. /*
  1744. * We are now handing the request to the hardware, initialize
  1745. * resid_len to full count and add the timeout handler.
  1746. */
  1747. req->resid_len = blk_rq_bytes(req);
  1748. if (unlikely(blk_bidi_rq(req)))
  1749. req->next_rq->resid_len = blk_rq_bytes(req->next_rq);
  1750. blk_add_timer(req);
  1751. }
  1752. EXPORT_SYMBOL(blk_start_request);
  1753. /**
  1754. * blk_fetch_request - fetch a request from a request queue
  1755. * @q: request queue to fetch a request from
  1756. *
  1757. * Description:
  1758. * Return the request at the top of @q. The request is started on
  1759. * return and LLD can start processing it immediately.
  1760. *
  1761. * Return:
  1762. * Pointer to the request at the top of @q if available. Null
  1763. * otherwise.
  1764. *
  1765. * Context:
  1766. * queue_lock must be held.
  1767. */
  1768. struct request *blk_fetch_request(struct request_queue *q)
  1769. {
  1770. struct request *rq;
  1771. rq = blk_peek_request(q);
  1772. if (rq)
  1773. blk_start_request(rq);
  1774. return rq;
  1775. }
  1776. EXPORT_SYMBOL(blk_fetch_request);
  1777. /**
  1778. * blk_update_request - Special helper function for request stacking drivers
  1779. * @req: the request being processed
  1780. * @error: %0 for success, < %0 for error
  1781. * @nr_bytes: number of bytes to complete @req
  1782. *
  1783. * Description:
  1784. * Ends I/O on a number of bytes attached to @req, but doesn't complete
  1785. * the request structure even if @req doesn't have leftover.
  1786. * If @req has leftover, sets it up for the next range of segments.
  1787. *
  1788. * This special helper function is only for request stacking drivers
  1789. * (e.g. request-based dm) so that they can handle partial completion.
  1790. * Actual device drivers should use blk_end_request instead.
  1791. *
  1792. * Passing the result of blk_rq_bytes() as @nr_bytes guarantees
  1793. * %false return from this function.
  1794. *
  1795. * Return:
  1796. * %false - this request doesn't have any more data
  1797. * %true - this request has more data
  1798. **/
  1799. bool blk_update_request(struct request *req, int error, unsigned int nr_bytes)
  1800. {
  1801. int total_bytes, bio_nbytes, next_idx = 0;
  1802. struct bio *bio;
  1803. if (!req->bio)
  1804. return false;
  1805. trace_block_rq_complete(req->q, req);
  1806. /*
  1807. * For fs requests, rq is just carrier of independent bio's
  1808. * and each partial completion should be handled separately.
  1809. * Reset per-request error on each partial completion.
  1810. *
  1811. * TODO: tj: This is too subtle. It would be better to let
  1812. * low level drivers do what they see fit.
  1813. */
  1814. if (req->cmd_type == REQ_TYPE_FS)
  1815. req->errors = 0;
  1816. if (error && req->cmd_type == REQ_TYPE_FS &&
  1817. !(req->cmd_flags & REQ_QUIET)) {
  1818. char *error_type;
  1819. switch (error) {
  1820. case -ENOLINK:
  1821. error_type = "recoverable transport";
  1822. break;
  1823. case -EREMOTEIO:
  1824. error_type = "critical target";
  1825. break;
  1826. case -EBADE:
  1827. error_type = "critical nexus";
  1828. break;
  1829. case -EIO:
  1830. default:
  1831. error_type = "I/O";
  1832. break;
  1833. }
  1834. printk(KERN_ERR "end_request: %s error, dev %s, sector %llu\n",
  1835. error_type, req->rq_disk ? req->rq_disk->disk_name : "?",
  1836. (unsigned long long)blk_rq_pos(req));
  1837. }
  1838. blk_account_io_completion(req, nr_bytes);
  1839. total_bytes = bio_nbytes = 0;
  1840. while ((bio = req->bio) != NULL) {
  1841. int nbytes;
  1842. if (nr_bytes >= bio->bi_size) {
  1843. req->bio = bio->bi_next;
  1844. nbytes = bio->bi_size;
  1845. req_bio_endio(req, bio, nbytes, error);
  1846. next_idx = 0;
  1847. bio_nbytes = 0;
  1848. } else {
  1849. int idx = bio->bi_idx + next_idx;
  1850. if (unlikely(idx >= bio->bi_vcnt)) {
  1851. blk_dump_rq_flags(req, "__end_that");
  1852. printk(KERN_ERR "%s: bio idx %d >= vcnt %d\n",
  1853. __func__, idx, bio->bi_vcnt);
  1854. break;
  1855. }
  1856. nbytes = bio_iovec_idx(bio, idx)->bv_len;
  1857. BIO_BUG_ON(nbytes > bio->bi_size);
  1858. /*
  1859. * not a complete bvec done
  1860. */
  1861. if (unlikely(nbytes > nr_bytes)) {
  1862. bio_nbytes += nr_bytes;
  1863. total_bytes += nr_bytes;
  1864. break;
  1865. }
  1866. /*
  1867. * advance to the next vector
  1868. */
  1869. next_idx++;
  1870. bio_nbytes += nbytes;
  1871. }
  1872. total_bytes += nbytes;
  1873. nr_bytes -= nbytes;
  1874. bio = req->bio;
  1875. if (bio) {
  1876. /*
  1877. * end more in this run, or just return 'not-done'
  1878. */
  1879. if (unlikely(nr_bytes <= 0))
  1880. break;
  1881. }
  1882. }
  1883. /*
  1884. * completely done
  1885. */
  1886. if (!req->bio) {
  1887. /*
  1888. * Reset counters so that the request stacking driver
  1889. * can find how many bytes remain in the request
  1890. * later.
  1891. */
  1892. req->__data_len = 0;
  1893. return false;
  1894. }
  1895. /*
  1896. * if the request wasn't completed, update state
  1897. */
  1898. if (bio_nbytes) {
  1899. req_bio_endio(req, bio, bio_nbytes, error);
  1900. bio->bi_idx += next_idx;
  1901. bio_iovec(bio)->bv_offset += nr_bytes;
  1902. bio_iovec(bio)->bv_len -= nr_bytes;
  1903. }
  1904. req->__data_len -= total_bytes;
  1905. req->buffer = bio_data(req->bio);
  1906. /* update sector only for requests with clear definition of sector */
  1907. if (req->cmd_type == REQ_TYPE_FS || (req->cmd_flags & REQ_DISCARD))
  1908. req->__sector += total_bytes >> 9;
  1909. /* mixed attributes always follow the first bio */
  1910. if (req->cmd_flags & REQ_MIXED_MERGE) {
  1911. req->cmd_flags &= ~REQ_FAILFAST_MASK;
  1912. req->cmd_flags |= req->bio->bi_rw & REQ_FAILFAST_MASK;
  1913. }
  1914. /*
  1915. * If total number of sectors is less than the first segment
  1916. * size, something has gone terribly wrong.
  1917. */
  1918. if (blk_rq_bytes(req) < blk_rq_cur_bytes(req)) {
  1919. blk_dump_rq_flags(req, "request botched");
  1920. req->__data_len = blk_rq_cur_bytes(req);
  1921. }
  1922. /* recalculate the number of segments */
  1923. blk_recalc_rq_segments(req);
  1924. return true;
  1925. }
  1926. EXPORT_SYMBOL_GPL(blk_update_request);
  1927. static bool blk_update_bidi_request(struct request *rq, int error,
  1928. unsigned int nr_bytes,
  1929. unsigned int bidi_bytes)
  1930. {
  1931. if (blk_update_request(rq, error, nr_bytes))
  1932. return true;
  1933. /* Bidi request must be completed as a whole */
  1934. if (unlikely(blk_bidi_rq(rq)) &&
  1935. blk_update_request(rq->next_rq, error, bidi_bytes))
  1936. return true;
  1937. if (blk_queue_add_random(rq->q))
  1938. add_disk_randomness(rq->rq_disk);
  1939. return false;
  1940. }
  1941. /**
  1942. * blk_unprep_request - unprepare a request
  1943. * @req: the request
  1944. *
  1945. * This function makes a request ready for complete resubmission (or
  1946. * completion). It happens only after all error handling is complete,
  1947. * so represents the appropriate moment to deallocate any resources
  1948. * that were allocated to the request in the prep_rq_fn. The queue
  1949. * lock is held when calling this.
  1950. */
  1951. void blk_unprep_request(struct request *req)
  1952. {
  1953. struct request_queue *q = req->q;
  1954. req->cmd_flags &= ~REQ_DONTPREP;
  1955. if (q->unprep_rq_fn)
  1956. q->unprep_rq_fn(q, req);
  1957. }
  1958. EXPORT_SYMBOL_GPL(blk_unprep_request);
  1959. /*
  1960. * queue lock must be held
  1961. */
  1962. static void blk_finish_request(struct request *req, int error)
  1963. {
  1964. if (blk_rq_tagged(req))
  1965. blk_queue_end_tag(req->q, req);
  1966. BUG_ON(blk_queued_rq(req));
  1967. if (unlikely(laptop_mode) && req->cmd_type == REQ_TYPE_FS)
  1968. laptop_io_completion(&req->q->backing_dev_info);
  1969. blk_delete_timer(req);
  1970. if (req->cmd_flags & REQ_DONTPREP)
  1971. blk_unprep_request(req);
  1972. blk_account_io_done(req);
  1973. if (req->end_io)
  1974. req->end_io(req, error);
  1975. else {
  1976. if (blk_bidi_rq(req))
  1977. __blk_put_request(req->next_rq->q, req->next_rq);
  1978. __blk_put_request(req->q, req);
  1979. }
  1980. }
  1981. /**
  1982. * blk_end_bidi_request - Complete a bidi request
  1983. * @rq: the request to complete
  1984. * @error: %0 for success, < %0 for error
  1985. * @nr_bytes: number of bytes to complete @rq
  1986. * @bidi_bytes: number of bytes to complete @rq->next_rq
  1987. *
  1988. * Description:
  1989. * Ends I/O on a number of bytes attached to @rq and @rq->next_rq.
  1990. * Drivers that supports bidi can safely call this member for any
  1991. * type of request, bidi or uni. In the later case @bidi_bytes is
  1992. * just ignored.
  1993. *
  1994. * Return:
  1995. * %false - we are done with this request
  1996. * %true - still buffers pending for this request
  1997. **/
  1998. static bool blk_end_bidi_request(struct request *rq, int error,
  1999. unsigned int nr_bytes, unsigned int bidi_bytes)
  2000. {
  2001. struct request_queue *q = rq->q;
  2002. unsigned long flags;
  2003. if (blk_update_bidi_request(rq, error, nr_bytes, bidi_bytes))
  2004. return true;
  2005. spin_lock_irqsave(q->queue_lock, flags);
  2006. blk_finish_request(rq, error);
  2007. spin_unlock_irqrestore(q->queue_lock, flags);
  2008. return false;
  2009. }
  2010. /**
  2011. * __blk_end_bidi_request - Complete a bidi request with queue lock held
  2012. * @rq: the request to complete
  2013. * @error: %0 for success, < %0 for error
  2014. * @nr_bytes: number of bytes to complete @rq
  2015. * @bidi_bytes: number of bytes to complete @rq->next_rq
  2016. *
  2017. * Description:
  2018. * Identical to blk_end_bidi_request() except that queue lock is
  2019. * assumed to be locked on entry and remains so on return.
  2020. *
  2021. * Return:
  2022. * %false - we are done with this request
  2023. * %true - still buffers pending for this request
  2024. **/
  2025. bool __blk_end_bidi_request(struct request *rq, int error,
  2026. unsigned int nr_bytes, unsigned int bidi_bytes)
  2027. {
  2028. if (blk_update_bidi_request(rq, error, nr_bytes, bidi_bytes))
  2029. return true;
  2030. blk_finish_request(rq, error);
  2031. return false;
  2032. }
  2033. /**
  2034. * blk_end_request - Helper function for drivers to complete the request.
  2035. * @rq: the request being processed
  2036. * @error: %0 for success, < %0 for error
  2037. * @nr_bytes: number of bytes to complete
  2038. *
  2039. * Description:
  2040. * Ends I/O on a number of bytes attached to @rq.
  2041. * If @rq has leftover, sets it up for the next range of segments.
  2042. *
  2043. * Return:
  2044. * %false - we are done with this request
  2045. * %true - still buffers pending for this request
  2046. **/
  2047. bool blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
  2048. {
  2049. return blk_end_bidi_request(rq, error, nr_bytes, 0);
  2050. }
  2051. EXPORT_SYMBOL(blk_end_request);
  2052. /**
  2053. * blk_end_request_all - Helper function for drives to finish the request.
  2054. * @rq: the request to finish
  2055. * @error: %0 for success, < %0 for error
  2056. *
  2057. * Description:
  2058. * Completely finish @rq.
  2059. */
  2060. void blk_end_request_all(struct request *rq, int error)
  2061. {
  2062. bool pending;
  2063. unsigned int bidi_bytes = 0;
  2064. if (unlikely(blk_bidi_rq(rq)))
  2065. bidi_bytes = blk_rq_bytes(rq->next_rq);
  2066. pending = blk_end_bidi_request(rq, error, blk_rq_bytes(rq), bidi_bytes);
  2067. BUG_ON(pending);
  2068. }
  2069. EXPORT_SYMBOL(blk_end_request_all);
  2070. /**
  2071. * blk_end_request_cur - Helper function to finish the current request chunk.
  2072. * @rq: the request to finish the current chunk for
  2073. * @error: %0 for success, < %0 for error
  2074. *
  2075. * Description:
  2076. * Complete the current consecutively mapped chunk from @rq.
  2077. *
  2078. * Return:
  2079. * %false - we are done with this request
  2080. * %true - still buffers pending for this request
  2081. */
  2082. bool blk_end_request_cur(struct request *rq, int error)
  2083. {
  2084. return blk_end_request(rq, error, blk_rq_cur_bytes(rq));
  2085. }
  2086. EXPORT_SYMBOL(blk_end_request_cur);
  2087. /**
  2088. * blk_end_request_err - Finish a request till the next failure boundary.
  2089. * @rq: the request to finish till the next failure boundary for
  2090. * @error: must be negative errno
  2091. *
  2092. * Description:
  2093. * Complete @rq till the next failure boundary.
  2094. *
  2095. * Return:
  2096. * %false - we are done with this request
  2097. * %true - still buffers pending for this request
  2098. */
  2099. bool blk_end_request_err(struct request *rq, int error)
  2100. {
  2101. WARN_ON(error >= 0);
  2102. return blk_end_request(rq, error, blk_rq_err_bytes(rq));
  2103. }
  2104. EXPORT_SYMBOL_GPL(blk_end_request_err);
  2105. /**
  2106. * __blk_end_request - Helper function for drivers to complete the request.
  2107. * @rq: the request being processed
  2108. * @error: %0 for success, < %0 for error
  2109. * @nr_bytes: number of bytes to complete
  2110. *
  2111. * Description:
  2112. * Must be called with queue lock held unlike blk_end_request().
  2113. *
  2114. * Return:
  2115. * %false - we are done with this request
  2116. * %true - still buffers pending for this request
  2117. **/
  2118. bool __blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
  2119. {
  2120. return __blk_end_bidi_request(rq, error, nr_bytes, 0);
  2121. }
  2122. EXPORT_SYMBOL(__blk_end_request);
  2123. /**
  2124. * __blk_end_request_all - Helper function for drives to finish the request.
  2125. * @rq: the request to finish
  2126. * @error: %0 for success, < %0 for error
  2127. *
  2128. * Description:
  2129. * Completely finish @rq. Must be called with queue lock held.
  2130. */
  2131. void __blk_end_request_all(struct request *rq, int error)
  2132. {
  2133. bool pending;
  2134. unsigned int bidi_bytes = 0;
  2135. if (unlikely(blk_bidi_rq(rq)))
  2136. bidi_bytes = blk_rq_bytes(rq->next_rq);
  2137. pending = __blk_end_bidi_request(rq, error, blk_rq_bytes(rq), bidi_bytes);
  2138. BUG_ON(pending);
  2139. }
  2140. EXPORT_SYMBOL(__blk_end_request_all);
  2141. /**
  2142. * __blk_end_request_cur - Helper function to finish the current request chunk.
  2143. * @rq: the request to finish the current chunk for
  2144. * @error: %0 for success, < %0 for error
  2145. *
  2146. * Description:
  2147. * Complete the current consecutively mapped chunk from @rq. Must
  2148. * be called with queue lock held.
  2149. *
  2150. * Return:
  2151. * %false - we are done with this request
  2152. * %true - still buffers pending for this request
  2153. */
  2154. bool __blk_end_request_cur(struct request *rq, int error)
  2155. {
  2156. return __blk_end_request(rq, error, blk_rq_cur_bytes(rq));
  2157. }
  2158. EXPORT_SYMBOL(__blk_end_request_cur);
  2159. /**
  2160. * __blk_end_request_err - Finish a request till the next failure boundary.
  2161. * @rq: the request to finish till the next failure boundary for
  2162. * @error: must be negative errno
  2163. *
  2164. * Description:
  2165. * Complete @rq till the next failure boundary. Must be called
  2166. * with queue lock held.
  2167. *
  2168. * Return:
  2169. * %false - we are done with this request
  2170. * %true - still buffers pending for this request
  2171. */
  2172. bool __blk_end_request_err(struct request *rq, int error)
  2173. {
  2174. WARN_ON(error >= 0);
  2175. return __blk_end_request(rq, error, blk_rq_err_bytes(rq));
  2176. }
  2177. EXPORT_SYMBOL_GPL(__blk_end_request_err);
  2178. void blk_rq_bio_prep(struct request_queue *q, struct request *rq,
  2179. struct bio *bio)
  2180. {
  2181. /* Bit 0 (R/W) is identical in rq->cmd_flags and bio->bi_rw */
  2182. rq->cmd_flags |= bio->bi_rw & REQ_WRITE;
  2183. if (bio_has_data(bio)) {
  2184. rq->nr_phys_segments = bio_phys_segments(q, bio);
  2185. rq->buffer = bio_data(bio);
  2186. }
  2187. rq->__data_len = bio->bi_size;
  2188. rq->bio = rq->biotail = bio;
  2189. if (bio->bi_bdev)
  2190. rq->rq_disk = bio->bi_bdev->bd_disk;
  2191. }
  2192. #if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE
  2193. /**
  2194. * rq_flush_dcache_pages - Helper function to flush all pages in a request
  2195. * @rq: the request to be flushed
  2196. *
  2197. * Description:
  2198. * Flush all pages in @rq.
  2199. */
  2200. void rq_flush_dcache_pages(struct request *rq)
  2201. {
  2202. struct req_iterator iter;
  2203. struct bio_vec *bvec;
  2204. rq_for_each_segment(bvec, rq, iter)
  2205. flush_dcache_page(bvec->bv_page);
  2206. }
  2207. EXPORT_SYMBOL_GPL(rq_flush_dcache_pages);
  2208. #endif
  2209. /**
  2210. * blk_lld_busy - Check if underlying low-level drivers of a device are busy
  2211. * @q : the queue of the device being checked
  2212. *
  2213. * Description:
  2214. * Check if underlying low-level drivers of a device are busy.
  2215. * If the drivers want to export their busy state, they must set own
  2216. * exporting function using blk_queue_lld_busy() first.
  2217. *
  2218. * Basically, this function is used only by request stacking drivers
  2219. * to stop dispatching requests to underlying devices when underlying
  2220. * devices are busy. This behavior helps more I/O merging on the queue
  2221. * of the request stacking driver and prevents I/O throughput regression
  2222. * on burst I/O load.
  2223. *
  2224. * Return:
  2225. * 0 - Not busy (The request stacking driver should dispatch request)
  2226. * 1 - Busy (The request stacking driver should stop dispatching request)
  2227. */
  2228. int blk_lld_busy(struct request_queue *q)
  2229. {
  2230. if (q->lld_busy_fn)
  2231. return q->lld_busy_fn(q);
  2232. return 0;
  2233. }
  2234. EXPORT_SYMBOL_GPL(blk_lld_busy);
  2235. /**
  2236. * blk_rq_unprep_clone - Helper function to free all bios in a cloned request
  2237. * @rq: the clone request to be cleaned up
  2238. *
  2239. * Description:
  2240. * Free all bios in @rq for a cloned request.
  2241. */
  2242. void blk_rq_unprep_clone(struct request *rq)
  2243. {
  2244. struct bio *bio;
  2245. while ((bio = rq->bio) != NULL) {
  2246. rq->bio = bio->bi_next;
  2247. bio_put(bio);
  2248. }
  2249. }
  2250. EXPORT_SYMBOL_GPL(blk_rq_unprep_clone);
  2251. /*
  2252. * Copy attributes of the original request to the clone request.
  2253. * The actual data parts (e.g. ->cmd, ->buffer, ->sense) are not copied.
  2254. */
  2255. static void __blk_rq_prep_clone(struct request *dst, struct request *src)
  2256. {
  2257. dst->cpu = src->cpu;
  2258. dst->cmd_flags = (src->cmd_flags & REQ_CLONE_MASK) | REQ_NOMERGE;
  2259. dst->cmd_type = src->cmd_type;
  2260. dst->__sector = blk_rq_pos(src);
  2261. dst->__data_len = blk_rq_bytes(src);
  2262. dst->nr_phys_segments = src->nr_phys_segments;
  2263. dst->ioprio = src->ioprio;
  2264. dst->extra_len = src->extra_len;
  2265. }
  2266. /**
  2267. * blk_rq_prep_clone - Helper function to setup clone request
  2268. * @rq: the request to be setup
  2269. * @rq_src: original request to be cloned
  2270. * @bs: bio_set that bios for clone are allocated from
  2271. * @gfp_mask: memory allocation mask for bio
  2272. * @bio_ctr: setup function to be called for each clone bio.
  2273. * Returns %0 for success, non %0 for failure.
  2274. * @data: private data to be passed to @bio_ctr
  2275. *
  2276. * Description:
  2277. * Clones bios in @rq_src to @rq, and copies attributes of @rq_src to @rq.
  2278. * The actual data parts of @rq_src (e.g. ->cmd, ->buffer, ->sense)
  2279. * are not copied, and copying such parts is the caller's responsibility.
  2280. * Also, pages which the original bios are pointing to are not copied
  2281. * and the cloned bios just point same pages.
  2282. * So cloned bios must be completed before original bios, which means
  2283. * the caller must complete @rq before @rq_src.
  2284. */
  2285. int blk_rq_prep_clone(struct request *rq, struct request *rq_src,
  2286. struct bio_set *bs, gfp_t gfp_mask,
  2287. int (*bio_ctr)(struct bio *, struct bio *, void *),
  2288. void *data)
  2289. {
  2290. struct bio *bio, *bio_src;
  2291. if (!bs)
  2292. bs = fs_bio_set;
  2293. blk_rq_init(NULL, rq);
  2294. __rq_for_each_bio(bio_src, rq_src) {
  2295. bio = bio_alloc_bioset(gfp_mask, bio_src->bi_max_vecs, bs);
  2296. if (!bio)
  2297. goto free_and_out;
  2298. __bio_clone(bio, bio_src);
  2299. if (bio_integrity(bio_src) &&
  2300. bio_integrity_clone(bio, bio_src, gfp_mask, bs))
  2301. goto free_and_out;
  2302. if (bio_ctr && bio_ctr(bio, bio_src, data))
  2303. goto free_and_out;
  2304. if (rq->bio) {
  2305. rq->biotail->bi_next = bio;
  2306. rq->biotail = bio;
  2307. } else
  2308. rq->bio = rq->biotail = bio;
  2309. }
  2310. __blk_rq_prep_clone(rq, rq_src);
  2311. return 0;
  2312. free_and_out:
  2313. if (bio)
  2314. bio_free(bio, bs);
  2315. blk_rq_unprep_clone(rq);
  2316. return -ENOMEM;
  2317. }
  2318. EXPORT_SYMBOL_GPL(blk_rq_prep_clone);
  2319. int kblockd_schedule_work(struct request_queue *q, struct work_struct *work)
  2320. {
  2321. return queue_work(kblockd_workqueue, work);
  2322. }
  2323. EXPORT_SYMBOL(kblockd_schedule_work);
  2324. int kblockd_schedule_delayed_work(struct request_queue *q,
  2325. struct delayed_work *dwork, unsigned long delay)
  2326. {
  2327. return queue_delayed_work(kblockd_workqueue, dwork, delay);
  2328. }
  2329. EXPORT_SYMBOL(kblockd_schedule_delayed_work);
  2330. #define PLUG_MAGIC 0x91827364
  2331. /**
  2332. * blk_start_plug - initialize blk_plug and track it inside the task_struct
  2333. * @plug: The &struct blk_plug that needs to be initialized
  2334. *
  2335. * Description:
  2336. * Tracking blk_plug inside the task_struct will help with auto-flushing the
  2337. * pending I/O should the task end up blocking between blk_start_plug() and
  2338. * blk_finish_plug(). This is important from a performance perspective, but
  2339. * also ensures that we don't deadlock. For instance, if the task is blocking
  2340. * for a memory allocation, memory reclaim could end up wanting to free a
  2341. * page belonging to that request that is currently residing in our private
  2342. * plug. By flushing the pending I/O when the process goes to sleep, we avoid
  2343. * this kind of deadlock.
  2344. */
  2345. void blk_start_plug(struct blk_plug *plug)
  2346. {
  2347. struct task_struct *tsk = current;
  2348. plug->magic = PLUG_MAGIC;
  2349. INIT_LIST_HEAD(&plug->list);
  2350. INIT_LIST_HEAD(&plug->cb_list);
  2351. plug->should_sort = 0;
  2352. /*
  2353. * If this is a nested plug, don't actually assign it. It will be
  2354. * flushed on its own.
  2355. */
  2356. if (!tsk->plug) {
  2357. /*
  2358. * Store ordering should not be needed here, since a potential
  2359. * preempt will imply a full memory barrier
  2360. */
  2361. tsk->plug = plug;
  2362. }
  2363. }
  2364. EXPORT_SYMBOL(blk_start_plug);
  2365. static int plug_rq_cmp(void *priv, struct list_head *a, struct list_head *b)
  2366. {
  2367. struct request *rqa = container_of(a, struct request, queuelist);
  2368. struct request *rqb = container_of(b, struct request, queuelist);
  2369. return !(rqa->q <= rqb->q);
  2370. }
  2371. /*
  2372. * If 'from_schedule' is true, then postpone the dispatch of requests
  2373. * until a safe kblockd context. We due this to avoid accidental big
  2374. * additional stack usage in driver dispatch, in places where the originally
  2375. * plugger did not intend it.
  2376. */
  2377. static void queue_unplugged(struct request_queue *q, unsigned int depth,
  2378. bool from_schedule)
  2379. __releases(q->queue_lock)
  2380. {
  2381. trace_block_unplug(q, depth, !from_schedule);
  2382. /*
  2383. * Don't mess with dead queue.
  2384. */
  2385. if (unlikely(blk_queue_dead(q))) {
  2386. spin_unlock(q->queue_lock);
  2387. return;
  2388. }
  2389. /*
  2390. * If we are punting this to kblockd, then we can safely drop
  2391. * the queue_lock before waking kblockd (which needs to take
  2392. * this lock).
  2393. */
  2394. if (from_schedule) {
  2395. spin_unlock(q->queue_lock);
  2396. blk_run_queue_async(q);
  2397. } else {
  2398. __blk_run_queue(q);
  2399. spin_unlock(q->queue_lock);
  2400. }
  2401. }
  2402. static void flush_plug_callbacks(struct blk_plug *plug)
  2403. {
  2404. LIST_HEAD(callbacks);
  2405. if (list_empty(&plug->cb_list))
  2406. return;
  2407. list_splice_init(&plug->cb_list, &callbacks);
  2408. while (!list_empty(&callbacks)) {
  2409. struct blk_plug_cb *cb = list_first_entry(&callbacks,
  2410. struct blk_plug_cb,
  2411. list);
  2412. list_del(&cb->list);
  2413. cb->callback(cb);
  2414. }
  2415. }
  2416. void blk_flush_plug_list(struct blk_plug *plug, bool from_schedule)
  2417. {
  2418. struct request_queue *q;
  2419. unsigned long flags;
  2420. struct request *rq;
  2421. LIST_HEAD(list);
  2422. unsigned int depth;
  2423. BUG_ON(plug->magic != PLUG_MAGIC);
  2424. flush_plug_callbacks(plug);
  2425. if (list_empty(&plug->list))
  2426. return;
  2427. list_splice_init(&plug->list, &list);
  2428. if (plug->should_sort) {
  2429. list_sort(NULL, &list, plug_rq_cmp);
  2430. plug->should_sort = 0;
  2431. }
  2432. q = NULL;
  2433. depth = 0;
  2434. /*
  2435. * Save and disable interrupts here, to avoid doing it for every
  2436. * queue lock we have to take.
  2437. */
  2438. local_irq_save(flags);
  2439. while (!list_empty(&list)) {
  2440. rq = list_entry_rq(list.next);
  2441. list_del_init(&rq->queuelist);
  2442. BUG_ON(!rq->q);
  2443. if (rq->q != q) {
  2444. /*
  2445. * This drops the queue lock
  2446. */
  2447. if (q)
  2448. queue_unplugged(q, depth, from_schedule);
  2449. q = rq->q;
  2450. depth = 0;
  2451. spin_lock(q->queue_lock);
  2452. }
  2453. /*
  2454. * Short-circuit if @q is dead
  2455. */
  2456. if (unlikely(blk_queue_dead(q))) {
  2457. __blk_end_request_all(rq, -ENODEV);
  2458. continue;
  2459. }
  2460. /*
  2461. * rq is already accounted, so use raw insert
  2462. */
  2463. if (rq->cmd_flags & (REQ_FLUSH | REQ_FUA))
  2464. __elv_add_request(q, rq, ELEVATOR_INSERT_FLUSH);
  2465. else
  2466. __elv_add_request(q, rq, ELEVATOR_INSERT_SORT_MERGE);
  2467. depth++;
  2468. }
  2469. /*
  2470. * This drops the queue lock
  2471. */
  2472. if (q)
  2473. queue_unplugged(q, depth, from_schedule);
  2474. local_irq_restore(flags);
  2475. }
  2476. void blk_finish_plug(struct blk_plug *plug)
  2477. {
  2478. blk_flush_plug_list(plug, false);
  2479. if (plug == current->plug)
  2480. current->plug = NULL;
  2481. }
  2482. EXPORT_SYMBOL(blk_finish_plug);
  2483. int __init blk_dev_init(void)
  2484. {
  2485. BUILD_BUG_ON(__REQ_NR_BITS > 8 *
  2486. sizeof(((struct request *)0)->cmd_flags));
  2487. /* used for unplugging and affects IO latency/throughput - HIGHPRI */
  2488. kblockd_workqueue = alloc_workqueue("kblockd",
  2489. WQ_MEM_RECLAIM | WQ_HIGHPRI, 0);
  2490. if (!kblockd_workqueue)
  2491. panic("Failed to create kblockd\n");
  2492. request_cachep = kmem_cache_create("blkdev_requests",
  2493. sizeof(struct request), 0, SLAB_PANIC, NULL);
  2494. blk_requestq_cachep = kmem_cache_create("blkdev_queue",
  2495. sizeof(struct request_queue), 0, SLAB_PANIC, NULL);
  2496. return 0;
  2497. }