ll_rw_blk.c 111 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350
  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> - July2000
  7. * bio rewrite, highmem i/o, etc, Jens Axboe <axboe@suse.de> - may 2001
  8. */
  9. /*
  10. * This handles all read/write requests to block devices
  11. */
  12. #include <linux/kernel.h>
  13. #include <linux/module.h>
  14. #include <linux/backing-dev.h>
  15. #include <linux/bio.h>
  16. #include <linux/blkdev.h>
  17. #include <linux/highmem.h>
  18. #include <linux/mm.h>
  19. #include <linux/kernel_stat.h>
  20. #include <linux/string.h>
  21. #include <linux/init.h>
  22. #include <linux/bootmem.h> /* for max_pfn/max_low_pfn */
  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/interrupt.h>
  29. #include <linux/cpu.h>
  30. #include <linux/blktrace_api.h>
  31. #include <linux/fault-inject.h>
  32. #include <linux/scatterlist.h>
  33. /*
  34. * for max sense size
  35. */
  36. #include <scsi/scsi_cmnd.h>
  37. static void blk_unplug_work(struct work_struct *work);
  38. static void blk_unplug_timeout(unsigned long data);
  39. static void drive_stat_acct(struct request *rq, int new_io);
  40. static void init_request_from_bio(struct request *req, struct bio *bio);
  41. static int __make_request(struct request_queue *q, struct bio *bio);
  42. static struct io_context *current_io_context(gfp_t gfp_flags, int node);
  43. static void blk_recalc_rq_segments(struct request *rq);
  44. static void blk_rq_bio_prep(struct request_queue *q, struct request *rq,
  45. struct bio *bio);
  46. /*
  47. * For the allocated request tables
  48. */
  49. static struct kmem_cache *request_cachep;
  50. /*
  51. * For queue allocation
  52. */
  53. static struct kmem_cache *requestq_cachep;
  54. /*
  55. * For io context allocations
  56. */
  57. static struct kmem_cache *iocontext_cachep;
  58. /*
  59. * Controlling structure to kblockd
  60. */
  61. static struct workqueue_struct *kblockd_workqueue;
  62. unsigned long blk_max_low_pfn, blk_max_pfn;
  63. EXPORT_SYMBOL(blk_max_low_pfn);
  64. EXPORT_SYMBOL(blk_max_pfn);
  65. static DEFINE_PER_CPU(struct list_head, blk_cpu_done);
  66. /* Amount of time in which a process may batch requests */
  67. #define BLK_BATCH_TIME (HZ/50UL)
  68. /* Number of requests a "batching" process may submit */
  69. #define BLK_BATCH_REQ 32
  70. /*
  71. * Return the threshold (number of used requests) at which the queue is
  72. * considered to be congested. It include a little hysteresis to keep the
  73. * context switch rate down.
  74. */
  75. static inline int queue_congestion_on_threshold(struct request_queue *q)
  76. {
  77. return q->nr_congestion_on;
  78. }
  79. /*
  80. * The threshold at which a queue is considered to be uncongested
  81. */
  82. static inline int queue_congestion_off_threshold(struct request_queue *q)
  83. {
  84. return q->nr_congestion_off;
  85. }
  86. static void blk_queue_congestion_threshold(struct request_queue *q)
  87. {
  88. int nr;
  89. nr = q->nr_requests - (q->nr_requests / 8) + 1;
  90. if (nr > q->nr_requests)
  91. nr = q->nr_requests;
  92. q->nr_congestion_on = nr;
  93. nr = q->nr_requests - (q->nr_requests / 8) - (q->nr_requests / 16) - 1;
  94. if (nr < 1)
  95. nr = 1;
  96. q->nr_congestion_off = nr;
  97. }
  98. /**
  99. * blk_get_backing_dev_info - get the address of a queue's backing_dev_info
  100. * @bdev: device
  101. *
  102. * Locates the passed device's request queue and returns the address of its
  103. * backing_dev_info
  104. *
  105. * Will return NULL if the request queue cannot be located.
  106. */
  107. struct backing_dev_info *blk_get_backing_dev_info(struct block_device *bdev)
  108. {
  109. struct backing_dev_info *ret = NULL;
  110. struct request_queue *q = bdev_get_queue(bdev);
  111. if (q)
  112. ret = &q->backing_dev_info;
  113. return ret;
  114. }
  115. EXPORT_SYMBOL(blk_get_backing_dev_info);
  116. /**
  117. * blk_queue_prep_rq - set a prepare_request function for queue
  118. * @q: queue
  119. * @pfn: prepare_request function
  120. *
  121. * It's possible for a queue to register a prepare_request callback which
  122. * is invoked before the request is handed to the request_fn. The goal of
  123. * the function is to prepare a request for I/O, it can be used to build a
  124. * cdb from the request data for instance.
  125. *
  126. */
  127. void blk_queue_prep_rq(struct request_queue *q, prep_rq_fn *pfn)
  128. {
  129. q->prep_rq_fn = pfn;
  130. }
  131. EXPORT_SYMBOL(blk_queue_prep_rq);
  132. /**
  133. * blk_queue_merge_bvec - set a merge_bvec function for queue
  134. * @q: queue
  135. * @mbfn: merge_bvec_fn
  136. *
  137. * Usually queues have static limitations on the max sectors or segments that
  138. * we can put in a request. Stacking drivers may have some settings that
  139. * are dynamic, and thus we have to query the queue whether it is ok to
  140. * add a new bio_vec to a bio at a given offset or not. If the block device
  141. * has such limitations, it needs to register a merge_bvec_fn to control
  142. * the size of bio's sent to it. Note that a block device *must* allow a
  143. * single page to be added to an empty bio. The block device driver may want
  144. * to use the bio_split() function to deal with these bio's. By default
  145. * no merge_bvec_fn is defined for a queue, and only the fixed limits are
  146. * honored.
  147. */
  148. void blk_queue_merge_bvec(struct request_queue *q, merge_bvec_fn *mbfn)
  149. {
  150. q->merge_bvec_fn = mbfn;
  151. }
  152. EXPORT_SYMBOL(blk_queue_merge_bvec);
  153. void blk_queue_softirq_done(struct request_queue *q, softirq_done_fn *fn)
  154. {
  155. q->softirq_done_fn = fn;
  156. }
  157. EXPORT_SYMBOL(blk_queue_softirq_done);
  158. /**
  159. * blk_queue_make_request - define an alternate make_request function for a device
  160. * @q: the request queue for the device to be affected
  161. * @mfn: the alternate make_request function
  162. *
  163. * Description:
  164. * The normal way for &struct bios to be passed to a device
  165. * driver is for them to be collected into requests on a request
  166. * queue, and then to allow the device driver to select requests
  167. * off that queue when it is ready. This works well for many block
  168. * devices. However some block devices (typically virtual devices
  169. * such as md or lvm) do not benefit from the processing on the
  170. * request queue, and are served best by having the requests passed
  171. * directly to them. This can be achieved by providing a function
  172. * to blk_queue_make_request().
  173. *
  174. * Caveat:
  175. * The driver that does this *must* be able to deal appropriately
  176. * with buffers in "highmemory". This can be accomplished by either calling
  177. * __bio_kmap_atomic() to get a temporary kernel mapping, or by calling
  178. * blk_queue_bounce() to create a buffer in normal memory.
  179. **/
  180. void blk_queue_make_request(struct request_queue * q, make_request_fn * mfn)
  181. {
  182. /*
  183. * set defaults
  184. */
  185. q->nr_requests = BLKDEV_MAX_RQ;
  186. blk_queue_max_phys_segments(q, MAX_PHYS_SEGMENTS);
  187. blk_queue_max_hw_segments(q, MAX_HW_SEGMENTS);
  188. q->make_request_fn = mfn;
  189. q->backing_dev_info.ra_pages = (VM_MAX_READAHEAD * 1024) / PAGE_CACHE_SIZE;
  190. q->backing_dev_info.state = 0;
  191. q->backing_dev_info.capabilities = BDI_CAP_MAP_COPY;
  192. blk_queue_max_sectors(q, SAFE_MAX_SECTORS);
  193. blk_queue_hardsect_size(q, 512);
  194. blk_queue_dma_alignment(q, 511);
  195. blk_queue_congestion_threshold(q);
  196. q->nr_batching = BLK_BATCH_REQ;
  197. q->unplug_thresh = 4; /* hmm */
  198. q->unplug_delay = (3 * HZ) / 1000; /* 3 milliseconds */
  199. if (q->unplug_delay == 0)
  200. q->unplug_delay = 1;
  201. INIT_WORK(&q->unplug_work, blk_unplug_work);
  202. q->unplug_timer.function = blk_unplug_timeout;
  203. q->unplug_timer.data = (unsigned long)q;
  204. /*
  205. * by default assume old behaviour and bounce for any highmem page
  206. */
  207. blk_queue_bounce_limit(q, BLK_BOUNCE_HIGH);
  208. }
  209. EXPORT_SYMBOL(blk_queue_make_request);
  210. static void rq_init(struct request_queue *q, struct request *rq)
  211. {
  212. INIT_LIST_HEAD(&rq->queuelist);
  213. INIT_LIST_HEAD(&rq->donelist);
  214. rq->errors = 0;
  215. rq->bio = rq->biotail = NULL;
  216. INIT_HLIST_NODE(&rq->hash);
  217. RB_CLEAR_NODE(&rq->rb_node);
  218. rq->ioprio = 0;
  219. rq->buffer = NULL;
  220. rq->ref_count = 1;
  221. rq->q = q;
  222. rq->special = NULL;
  223. rq->data_len = 0;
  224. rq->data = NULL;
  225. rq->nr_phys_segments = 0;
  226. rq->sense = NULL;
  227. rq->end_io = NULL;
  228. rq->end_io_data = NULL;
  229. rq->completion_data = NULL;
  230. rq->next_rq = NULL;
  231. }
  232. /**
  233. * blk_queue_ordered - does this queue support ordered writes
  234. * @q: the request queue
  235. * @ordered: one of QUEUE_ORDERED_*
  236. * @prepare_flush_fn: rq setup helper for cache flush ordered writes
  237. *
  238. * Description:
  239. * For journalled file systems, doing ordered writes on a commit
  240. * block instead of explicitly doing wait_on_buffer (which is bad
  241. * for performance) can be a big win. Block drivers supporting this
  242. * feature should call this function and indicate so.
  243. *
  244. **/
  245. int blk_queue_ordered(struct request_queue *q, unsigned ordered,
  246. prepare_flush_fn *prepare_flush_fn)
  247. {
  248. if (ordered & (QUEUE_ORDERED_PREFLUSH | QUEUE_ORDERED_POSTFLUSH) &&
  249. prepare_flush_fn == NULL) {
  250. printk(KERN_ERR "blk_queue_ordered: prepare_flush_fn required\n");
  251. return -EINVAL;
  252. }
  253. if (ordered != QUEUE_ORDERED_NONE &&
  254. ordered != QUEUE_ORDERED_DRAIN &&
  255. ordered != QUEUE_ORDERED_DRAIN_FLUSH &&
  256. ordered != QUEUE_ORDERED_DRAIN_FUA &&
  257. ordered != QUEUE_ORDERED_TAG &&
  258. ordered != QUEUE_ORDERED_TAG_FLUSH &&
  259. ordered != QUEUE_ORDERED_TAG_FUA) {
  260. printk(KERN_ERR "blk_queue_ordered: bad value %d\n", ordered);
  261. return -EINVAL;
  262. }
  263. q->ordered = ordered;
  264. q->next_ordered = ordered;
  265. q->prepare_flush_fn = prepare_flush_fn;
  266. return 0;
  267. }
  268. EXPORT_SYMBOL(blk_queue_ordered);
  269. /*
  270. * Cache flushing for ordered writes handling
  271. */
  272. inline unsigned blk_ordered_cur_seq(struct request_queue *q)
  273. {
  274. if (!q->ordseq)
  275. return 0;
  276. return 1 << ffz(q->ordseq);
  277. }
  278. unsigned blk_ordered_req_seq(struct request *rq)
  279. {
  280. struct request_queue *q = rq->q;
  281. BUG_ON(q->ordseq == 0);
  282. if (rq == &q->pre_flush_rq)
  283. return QUEUE_ORDSEQ_PREFLUSH;
  284. if (rq == &q->bar_rq)
  285. return QUEUE_ORDSEQ_BAR;
  286. if (rq == &q->post_flush_rq)
  287. return QUEUE_ORDSEQ_POSTFLUSH;
  288. /*
  289. * !fs requests don't need to follow barrier ordering. Always
  290. * put them at the front. This fixes the following deadlock.
  291. *
  292. * http://thread.gmane.org/gmane.linux.kernel/537473
  293. */
  294. if (!blk_fs_request(rq))
  295. return QUEUE_ORDSEQ_DRAIN;
  296. if ((rq->cmd_flags & REQ_ORDERED_COLOR) ==
  297. (q->orig_bar_rq->cmd_flags & REQ_ORDERED_COLOR))
  298. return QUEUE_ORDSEQ_DRAIN;
  299. else
  300. return QUEUE_ORDSEQ_DONE;
  301. }
  302. void blk_ordered_complete_seq(struct request_queue *q, unsigned seq, int error)
  303. {
  304. struct request *rq;
  305. int uptodate;
  306. if (error && !q->orderr)
  307. q->orderr = error;
  308. BUG_ON(q->ordseq & seq);
  309. q->ordseq |= seq;
  310. if (blk_ordered_cur_seq(q) != QUEUE_ORDSEQ_DONE)
  311. return;
  312. /*
  313. * Okay, sequence complete.
  314. */
  315. uptodate = 1;
  316. if (q->orderr)
  317. uptodate = q->orderr;
  318. q->ordseq = 0;
  319. rq = q->orig_bar_rq;
  320. end_that_request_first(rq, uptodate, rq->hard_nr_sectors);
  321. end_that_request_last(rq, uptodate);
  322. }
  323. static void pre_flush_end_io(struct request *rq, int error)
  324. {
  325. elv_completed_request(rq->q, rq);
  326. blk_ordered_complete_seq(rq->q, QUEUE_ORDSEQ_PREFLUSH, error);
  327. }
  328. static void bar_end_io(struct request *rq, int error)
  329. {
  330. elv_completed_request(rq->q, rq);
  331. blk_ordered_complete_seq(rq->q, QUEUE_ORDSEQ_BAR, error);
  332. }
  333. static void post_flush_end_io(struct request *rq, int error)
  334. {
  335. elv_completed_request(rq->q, rq);
  336. blk_ordered_complete_seq(rq->q, QUEUE_ORDSEQ_POSTFLUSH, error);
  337. }
  338. static void queue_flush(struct request_queue *q, unsigned which)
  339. {
  340. struct request *rq;
  341. rq_end_io_fn *end_io;
  342. if (which == QUEUE_ORDERED_PREFLUSH) {
  343. rq = &q->pre_flush_rq;
  344. end_io = pre_flush_end_io;
  345. } else {
  346. rq = &q->post_flush_rq;
  347. end_io = post_flush_end_io;
  348. }
  349. rq->cmd_flags = REQ_HARDBARRIER;
  350. rq_init(q, rq);
  351. rq->elevator_private = NULL;
  352. rq->elevator_private2 = NULL;
  353. rq->rq_disk = q->bar_rq.rq_disk;
  354. rq->end_io = end_io;
  355. q->prepare_flush_fn(q, rq);
  356. elv_insert(q, rq, ELEVATOR_INSERT_FRONT);
  357. }
  358. static inline struct request *start_ordered(struct request_queue *q,
  359. struct request *rq)
  360. {
  361. q->orderr = 0;
  362. q->ordered = q->next_ordered;
  363. q->ordseq |= QUEUE_ORDSEQ_STARTED;
  364. /*
  365. * Prep proxy barrier request.
  366. */
  367. blkdev_dequeue_request(rq);
  368. q->orig_bar_rq = rq;
  369. rq = &q->bar_rq;
  370. rq->cmd_flags = 0;
  371. rq_init(q, rq);
  372. if (bio_data_dir(q->orig_bar_rq->bio) == WRITE)
  373. rq->cmd_flags |= REQ_RW;
  374. if (q->ordered & QUEUE_ORDERED_FUA)
  375. rq->cmd_flags |= REQ_FUA;
  376. rq->elevator_private = NULL;
  377. rq->elevator_private2 = NULL;
  378. init_request_from_bio(rq, q->orig_bar_rq->bio);
  379. rq->end_io = bar_end_io;
  380. /*
  381. * Queue ordered sequence. As we stack them at the head, we
  382. * need to queue in reverse order. Note that we rely on that
  383. * no fs request uses ELEVATOR_INSERT_FRONT and thus no fs
  384. * request gets inbetween ordered sequence. If this request is
  385. * an empty barrier, we don't need to do a postflush ever since
  386. * there will be no data written between the pre and post flush.
  387. * Hence a single flush will suffice.
  388. */
  389. if ((q->ordered & QUEUE_ORDERED_POSTFLUSH) && !blk_empty_barrier(rq))
  390. queue_flush(q, QUEUE_ORDERED_POSTFLUSH);
  391. else
  392. q->ordseq |= QUEUE_ORDSEQ_POSTFLUSH;
  393. elv_insert(q, rq, ELEVATOR_INSERT_FRONT);
  394. if (q->ordered & QUEUE_ORDERED_PREFLUSH) {
  395. queue_flush(q, QUEUE_ORDERED_PREFLUSH);
  396. rq = &q->pre_flush_rq;
  397. } else
  398. q->ordseq |= QUEUE_ORDSEQ_PREFLUSH;
  399. if ((q->ordered & QUEUE_ORDERED_TAG) || q->in_flight == 0)
  400. q->ordseq |= QUEUE_ORDSEQ_DRAIN;
  401. else
  402. rq = NULL;
  403. return rq;
  404. }
  405. int blk_do_ordered(struct request_queue *q, struct request **rqp)
  406. {
  407. struct request *rq = *rqp;
  408. const int is_barrier = blk_fs_request(rq) && blk_barrier_rq(rq);
  409. if (!q->ordseq) {
  410. if (!is_barrier)
  411. return 1;
  412. if (q->next_ordered != QUEUE_ORDERED_NONE) {
  413. *rqp = start_ordered(q, rq);
  414. return 1;
  415. } else {
  416. /*
  417. * This can happen when the queue switches to
  418. * ORDERED_NONE while this request is on it.
  419. */
  420. blkdev_dequeue_request(rq);
  421. end_that_request_first(rq, -EOPNOTSUPP,
  422. rq->hard_nr_sectors);
  423. end_that_request_last(rq, -EOPNOTSUPP);
  424. *rqp = NULL;
  425. return 0;
  426. }
  427. }
  428. /*
  429. * Ordered sequence in progress
  430. */
  431. /* Special requests are not subject to ordering rules. */
  432. if (!blk_fs_request(rq) &&
  433. rq != &q->pre_flush_rq && rq != &q->post_flush_rq)
  434. return 1;
  435. if (q->ordered & QUEUE_ORDERED_TAG) {
  436. /* Ordered by tag. Blocking the next barrier is enough. */
  437. if (is_barrier && rq != &q->bar_rq)
  438. *rqp = NULL;
  439. } else {
  440. /* Ordered by draining. Wait for turn. */
  441. WARN_ON(blk_ordered_req_seq(rq) < blk_ordered_cur_seq(q));
  442. if (blk_ordered_req_seq(rq) > blk_ordered_cur_seq(q))
  443. *rqp = NULL;
  444. }
  445. return 1;
  446. }
  447. static void req_bio_endio(struct request *rq, struct bio *bio,
  448. unsigned int nbytes, int error)
  449. {
  450. struct request_queue *q = rq->q;
  451. if (&q->bar_rq != rq) {
  452. if (error)
  453. clear_bit(BIO_UPTODATE, &bio->bi_flags);
  454. else if (!test_bit(BIO_UPTODATE, &bio->bi_flags))
  455. error = -EIO;
  456. if (unlikely(nbytes > bio->bi_size)) {
  457. printk("%s: want %u bytes done, only %u left\n",
  458. __FUNCTION__, nbytes, bio->bi_size);
  459. nbytes = bio->bi_size;
  460. }
  461. bio->bi_size -= nbytes;
  462. bio->bi_sector += (nbytes >> 9);
  463. if (bio->bi_size == 0)
  464. bio_endio(bio, error);
  465. } else {
  466. /*
  467. * Okay, this is the barrier request in progress, just
  468. * record the error;
  469. */
  470. if (error && !q->orderr)
  471. q->orderr = error;
  472. }
  473. }
  474. /**
  475. * blk_queue_bounce_limit - set bounce buffer limit for queue
  476. * @q: the request queue for the device
  477. * @dma_addr: bus address limit
  478. *
  479. * Description:
  480. * Different hardware can have different requirements as to what pages
  481. * it can do I/O directly to. A low level driver can call
  482. * blk_queue_bounce_limit to have lower memory pages allocated as bounce
  483. * buffers for doing I/O to pages residing above @page.
  484. **/
  485. void blk_queue_bounce_limit(struct request_queue *q, u64 dma_addr)
  486. {
  487. unsigned long bounce_pfn = dma_addr >> PAGE_SHIFT;
  488. int dma = 0;
  489. q->bounce_gfp = GFP_NOIO;
  490. #if BITS_PER_LONG == 64
  491. /* Assume anything <= 4GB can be handled by IOMMU.
  492. Actually some IOMMUs can handle everything, but I don't
  493. know of a way to test this here. */
  494. if (bounce_pfn < (min_t(u64,0xffffffff,BLK_BOUNCE_HIGH) >> PAGE_SHIFT))
  495. dma = 1;
  496. q->bounce_pfn = max_low_pfn;
  497. #else
  498. if (bounce_pfn < blk_max_low_pfn)
  499. dma = 1;
  500. q->bounce_pfn = bounce_pfn;
  501. #endif
  502. if (dma) {
  503. init_emergency_isa_pool();
  504. q->bounce_gfp = GFP_NOIO | GFP_DMA;
  505. q->bounce_pfn = bounce_pfn;
  506. }
  507. }
  508. EXPORT_SYMBOL(blk_queue_bounce_limit);
  509. /**
  510. * blk_queue_max_sectors - set max sectors for a request for this queue
  511. * @q: the request queue for the device
  512. * @max_sectors: max sectors in the usual 512b unit
  513. *
  514. * Description:
  515. * Enables a low level driver to set an upper limit on the size of
  516. * received requests.
  517. **/
  518. void blk_queue_max_sectors(struct request_queue *q, unsigned int max_sectors)
  519. {
  520. if ((max_sectors << 9) < PAGE_CACHE_SIZE) {
  521. max_sectors = 1 << (PAGE_CACHE_SHIFT - 9);
  522. printk("%s: set to minimum %d\n", __FUNCTION__, max_sectors);
  523. }
  524. if (BLK_DEF_MAX_SECTORS > max_sectors)
  525. q->max_hw_sectors = q->max_sectors = max_sectors;
  526. else {
  527. q->max_sectors = BLK_DEF_MAX_SECTORS;
  528. q->max_hw_sectors = max_sectors;
  529. }
  530. }
  531. EXPORT_SYMBOL(blk_queue_max_sectors);
  532. /**
  533. * blk_queue_max_phys_segments - set max phys segments for a request for this queue
  534. * @q: the request queue for the device
  535. * @max_segments: max number of segments
  536. *
  537. * Description:
  538. * Enables a low level driver to set an upper limit on the number of
  539. * physical data segments in a request. This would be the largest sized
  540. * scatter list the driver could handle.
  541. **/
  542. void blk_queue_max_phys_segments(struct request_queue *q,
  543. unsigned short max_segments)
  544. {
  545. if (!max_segments) {
  546. max_segments = 1;
  547. printk("%s: set to minimum %d\n", __FUNCTION__, max_segments);
  548. }
  549. q->max_phys_segments = max_segments;
  550. }
  551. EXPORT_SYMBOL(blk_queue_max_phys_segments);
  552. /**
  553. * blk_queue_max_hw_segments - set max hw segments for a request for this queue
  554. * @q: the request queue for the device
  555. * @max_segments: max number of segments
  556. *
  557. * Description:
  558. * Enables a low level driver to set an upper limit on the number of
  559. * hw data segments in a request. This would be the largest number of
  560. * address/length pairs the host adapter can actually give as once
  561. * to the device.
  562. **/
  563. void blk_queue_max_hw_segments(struct request_queue *q,
  564. unsigned short max_segments)
  565. {
  566. if (!max_segments) {
  567. max_segments = 1;
  568. printk("%s: set to minimum %d\n", __FUNCTION__, max_segments);
  569. }
  570. q->max_hw_segments = max_segments;
  571. }
  572. EXPORT_SYMBOL(blk_queue_max_hw_segments);
  573. /**
  574. * blk_queue_max_segment_size - set max segment size for blk_rq_map_sg
  575. * @q: the request queue for the device
  576. * @max_size: max size of segment in bytes
  577. *
  578. * Description:
  579. * Enables a low level driver to set an upper limit on the size of a
  580. * coalesced segment
  581. **/
  582. void blk_queue_max_segment_size(struct request_queue *q, unsigned int max_size)
  583. {
  584. if (max_size < PAGE_CACHE_SIZE) {
  585. max_size = PAGE_CACHE_SIZE;
  586. printk("%s: set to minimum %d\n", __FUNCTION__, max_size);
  587. }
  588. q->max_segment_size = max_size;
  589. }
  590. EXPORT_SYMBOL(blk_queue_max_segment_size);
  591. /**
  592. * blk_queue_hardsect_size - set hardware sector size for the queue
  593. * @q: the request queue for the device
  594. * @size: the hardware sector size, in bytes
  595. *
  596. * Description:
  597. * This should typically be set to the lowest possible sector size
  598. * that the hardware can operate on (possible without reverting to
  599. * even internal read-modify-write operations). Usually the default
  600. * of 512 covers most hardware.
  601. **/
  602. void blk_queue_hardsect_size(struct request_queue *q, unsigned short size)
  603. {
  604. q->hardsect_size = size;
  605. }
  606. EXPORT_SYMBOL(blk_queue_hardsect_size);
  607. /*
  608. * Returns the minimum that is _not_ zero, unless both are zero.
  609. */
  610. #define min_not_zero(l, r) (l == 0) ? r : ((r == 0) ? l : min(l, r))
  611. /**
  612. * blk_queue_stack_limits - inherit underlying queue limits for stacked drivers
  613. * @t: the stacking driver (top)
  614. * @b: the underlying device (bottom)
  615. **/
  616. void blk_queue_stack_limits(struct request_queue *t, struct request_queue *b)
  617. {
  618. /* zero is "infinity" */
  619. t->max_sectors = min_not_zero(t->max_sectors,b->max_sectors);
  620. t->max_hw_sectors = min_not_zero(t->max_hw_sectors,b->max_hw_sectors);
  621. t->max_phys_segments = min(t->max_phys_segments,b->max_phys_segments);
  622. t->max_hw_segments = min(t->max_hw_segments,b->max_hw_segments);
  623. t->max_segment_size = min(t->max_segment_size,b->max_segment_size);
  624. t->hardsect_size = max(t->hardsect_size,b->hardsect_size);
  625. if (!test_bit(QUEUE_FLAG_CLUSTER, &b->queue_flags))
  626. clear_bit(QUEUE_FLAG_CLUSTER, &t->queue_flags);
  627. }
  628. EXPORT_SYMBOL(blk_queue_stack_limits);
  629. /**
  630. * blk_queue_segment_boundary - set boundary rules for segment merging
  631. * @q: the request queue for the device
  632. * @mask: the memory boundary mask
  633. **/
  634. void blk_queue_segment_boundary(struct request_queue *q, unsigned long mask)
  635. {
  636. if (mask < PAGE_CACHE_SIZE - 1) {
  637. mask = PAGE_CACHE_SIZE - 1;
  638. printk("%s: set to minimum %lx\n", __FUNCTION__, mask);
  639. }
  640. q->seg_boundary_mask = mask;
  641. }
  642. EXPORT_SYMBOL(blk_queue_segment_boundary);
  643. /**
  644. * blk_queue_dma_alignment - set dma length and memory alignment
  645. * @q: the request queue for the device
  646. * @mask: alignment mask
  647. *
  648. * description:
  649. * set required memory and length aligment for direct dma transactions.
  650. * this is used when buiding direct io requests for the queue.
  651. *
  652. **/
  653. void blk_queue_dma_alignment(struct request_queue *q, int mask)
  654. {
  655. q->dma_alignment = mask;
  656. }
  657. EXPORT_SYMBOL(blk_queue_dma_alignment);
  658. /**
  659. * blk_queue_update_dma_alignment - update dma length and memory alignment
  660. * @q: the request queue for the device
  661. * @mask: alignment mask
  662. *
  663. * description:
  664. * update required memory and length aligment for direct dma transactions.
  665. * If the requested alignment is larger than the current alignment, then
  666. * the current queue alignment is updated to the new value, otherwise it
  667. * is left alone. The design of this is to allow multiple objects
  668. * (driver, device, transport etc) to set their respective
  669. * alignments without having them interfere.
  670. *
  671. **/
  672. void blk_queue_update_dma_alignment(struct request_queue *q, int mask)
  673. {
  674. BUG_ON(mask > PAGE_SIZE);
  675. if (mask > q->dma_alignment)
  676. q->dma_alignment = mask;
  677. }
  678. EXPORT_SYMBOL(blk_queue_update_dma_alignment);
  679. /**
  680. * blk_queue_find_tag - find a request by its tag and queue
  681. * @q: The request queue for the device
  682. * @tag: The tag of the request
  683. *
  684. * Notes:
  685. * Should be used when a device returns a tag and you want to match
  686. * it with a request.
  687. *
  688. * no locks need be held.
  689. **/
  690. struct request *blk_queue_find_tag(struct request_queue *q, int tag)
  691. {
  692. return blk_map_queue_find_tag(q->queue_tags, tag);
  693. }
  694. EXPORT_SYMBOL(blk_queue_find_tag);
  695. /**
  696. * __blk_free_tags - release a given set of tag maintenance info
  697. * @bqt: the tag map to free
  698. *
  699. * Tries to free the specified @bqt@. Returns true if it was
  700. * actually freed and false if there are still references using it
  701. */
  702. static int __blk_free_tags(struct blk_queue_tag *bqt)
  703. {
  704. int retval;
  705. retval = atomic_dec_and_test(&bqt->refcnt);
  706. if (retval) {
  707. BUG_ON(bqt->busy);
  708. kfree(bqt->tag_index);
  709. bqt->tag_index = NULL;
  710. kfree(bqt->tag_map);
  711. bqt->tag_map = NULL;
  712. kfree(bqt);
  713. }
  714. return retval;
  715. }
  716. /**
  717. * __blk_queue_free_tags - release tag maintenance info
  718. * @q: the request queue for the device
  719. *
  720. * Notes:
  721. * blk_cleanup_queue() will take care of calling this function, if tagging
  722. * has been used. So there's no need to call this directly.
  723. **/
  724. static void __blk_queue_free_tags(struct request_queue *q)
  725. {
  726. struct blk_queue_tag *bqt = q->queue_tags;
  727. if (!bqt)
  728. return;
  729. __blk_free_tags(bqt);
  730. q->queue_tags = NULL;
  731. q->queue_flags &= ~(1 << QUEUE_FLAG_QUEUED);
  732. }
  733. /**
  734. * blk_free_tags - release a given set of tag maintenance info
  735. * @bqt: the tag map to free
  736. *
  737. * For externally managed @bqt@ frees the map. Callers of this
  738. * function must guarantee to have released all the queues that
  739. * might have been using this tag map.
  740. */
  741. void blk_free_tags(struct blk_queue_tag *bqt)
  742. {
  743. if (unlikely(!__blk_free_tags(bqt)))
  744. BUG();
  745. }
  746. EXPORT_SYMBOL(blk_free_tags);
  747. /**
  748. * blk_queue_free_tags - release tag maintenance info
  749. * @q: the request queue for the device
  750. *
  751. * Notes:
  752. * This is used to disabled tagged queuing to a device, yet leave
  753. * queue in function.
  754. **/
  755. void blk_queue_free_tags(struct request_queue *q)
  756. {
  757. clear_bit(QUEUE_FLAG_QUEUED, &q->queue_flags);
  758. }
  759. EXPORT_SYMBOL(blk_queue_free_tags);
  760. static int
  761. init_tag_map(struct request_queue *q, struct blk_queue_tag *tags, int depth)
  762. {
  763. struct request **tag_index;
  764. unsigned long *tag_map;
  765. int nr_ulongs;
  766. if (q && depth > q->nr_requests * 2) {
  767. depth = q->nr_requests * 2;
  768. printk(KERN_ERR "%s: adjusted depth to %d\n",
  769. __FUNCTION__, depth);
  770. }
  771. tag_index = kzalloc(depth * sizeof(struct request *), GFP_ATOMIC);
  772. if (!tag_index)
  773. goto fail;
  774. nr_ulongs = ALIGN(depth, BITS_PER_LONG) / BITS_PER_LONG;
  775. tag_map = kzalloc(nr_ulongs * sizeof(unsigned long), GFP_ATOMIC);
  776. if (!tag_map)
  777. goto fail;
  778. tags->real_max_depth = depth;
  779. tags->max_depth = depth;
  780. tags->tag_index = tag_index;
  781. tags->tag_map = tag_map;
  782. return 0;
  783. fail:
  784. kfree(tag_index);
  785. return -ENOMEM;
  786. }
  787. static struct blk_queue_tag *__blk_queue_init_tags(struct request_queue *q,
  788. int depth)
  789. {
  790. struct blk_queue_tag *tags;
  791. tags = kmalloc(sizeof(struct blk_queue_tag), GFP_ATOMIC);
  792. if (!tags)
  793. goto fail;
  794. if (init_tag_map(q, tags, depth))
  795. goto fail;
  796. tags->busy = 0;
  797. atomic_set(&tags->refcnt, 1);
  798. return tags;
  799. fail:
  800. kfree(tags);
  801. return NULL;
  802. }
  803. /**
  804. * blk_init_tags - initialize the tag info for an external tag map
  805. * @depth: the maximum queue depth supported
  806. * @tags: the tag to use
  807. **/
  808. struct blk_queue_tag *blk_init_tags(int depth)
  809. {
  810. return __blk_queue_init_tags(NULL, depth);
  811. }
  812. EXPORT_SYMBOL(blk_init_tags);
  813. /**
  814. * blk_queue_init_tags - initialize the queue tag info
  815. * @q: the request queue for the device
  816. * @depth: the maximum queue depth supported
  817. * @tags: the tag to use
  818. **/
  819. int blk_queue_init_tags(struct request_queue *q, int depth,
  820. struct blk_queue_tag *tags)
  821. {
  822. int rc;
  823. BUG_ON(tags && q->queue_tags && tags != q->queue_tags);
  824. if (!tags && !q->queue_tags) {
  825. tags = __blk_queue_init_tags(q, depth);
  826. if (!tags)
  827. goto fail;
  828. } else if (q->queue_tags) {
  829. if ((rc = blk_queue_resize_tags(q, depth)))
  830. return rc;
  831. set_bit(QUEUE_FLAG_QUEUED, &q->queue_flags);
  832. return 0;
  833. } else
  834. atomic_inc(&tags->refcnt);
  835. /*
  836. * assign it, all done
  837. */
  838. q->queue_tags = tags;
  839. q->queue_flags |= (1 << QUEUE_FLAG_QUEUED);
  840. INIT_LIST_HEAD(&q->tag_busy_list);
  841. return 0;
  842. fail:
  843. kfree(tags);
  844. return -ENOMEM;
  845. }
  846. EXPORT_SYMBOL(blk_queue_init_tags);
  847. /**
  848. * blk_queue_resize_tags - change the queueing depth
  849. * @q: the request queue for the device
  850. * @new_depth: the new max command queueing depth
  851. *
  852. * Notes:
  853. * Must be called with the queue lock held.
  854. **/
  855. int blk_queue_resize_tags(struct request_queue *q, int new_depth)
  856. {
  857. struct blk_queue_tag *bqt = q->queue_tags;
  858. struct request **tag_index;
  859. unsigned long *tag_map;
  860. int max_depth, nr_ulongs;
  861. if (!bqt)
  862. return -ENXIO;
  863. /*
  864. * if we already have large enough real_max_depth. just
  865. * adjust max_depth. *NOTE* as requests with tag value
  866. * between new_depth and real_max_depth can be in-flight, tag
  867. * map can not be shrunk blindly here.
  868. */
  869. if (new_depth <= bqt->real_max_depth) {
  870. bqt->max_depth = new_depth;
  871. return 0;
  872. }
  873. /*
  874. * Currently cannot replace a shared tag map with a new
  875. * one, so error out if this is the case
  876. */
  877. if (atomic_read(&bqt->refcnt) != 1)
  878. return -EBUSY;
  879. /*
  880. * save the old state info, so we can copy it back
  881. */
  882. tag_index = bqt->tag_index;
  883. tag_map = bqt->tag_map;
  884. max_depth = bqt->real_max_depth;
  885. if (init_tag_map(q, bqt, new_depth))
  886. return -ENOMEM;
  887. memcpy(bqt->tag_index, tag_index, max_depth * sizeof(struct request *));
  888. nr_ulongs = ALIGN(max_depth, BITS_PER_LONG) / BITS_PER_LONG;
  889. memcpy(bqt->tag_map, tag_map, nr_ulongs * sizeof(unsigned long));
  890. kfree(tag_index);
  891. kfree(tag_map);
  892. return 0;
  893. }
  894. EXPORT_SYMBOL(blk_queue_resize_tags);
  895. /**
  896. * blk_queue_end_tag - end tag operations for a request
  897. * @q: the request queue for the device
  898. * @rq: the request that has completed
  899. *
  900. * Description:
  901. * Typically called when end_that_request_first() returns 0, meaning
  902. * all transfers have been done for a request. It's important to call
  903. * this function before end_that_request_last(), as that will put the
  904. * request back on the free list thus corrupting the internal tag list.
  905. *
  906. * Notes:
  907. * queue lock must be held.
  908. **/
  909. void blk_queue_end_tag(struct request_queue *q, struct request *rq)
  910. {
  911. struct blk_queue_tag *bqt = q->queue_tags;
  912. int tag = rq->tag;
  913. BUG_ON(tag == -1);
  914. if (unlikely(tag >= bqt->real_max_depth))
  915. /*
  916. * This can happen after tag depth has been reduced.
  917. * FIXME: how about a warning or info message here?
  918. */
  919. return;
  920. list_del_init(&rq->queuelist);
  921. rq->cmd_flags &= ~REQ_QUEUED;
  922. rq->tag = -1;
  923. if (unlikely(bqt->tag_index[tag] == NULL))
  924. printk(KERN_ERR "%s: tag %d is missing\n",
  925. __FUNCTION__, tag);
  926. bqt->tag_index[tag] = NULL;
  927. if (unlikely(!test_bit(tag, bqt->tag_map))) {
  928. printk(KERN_ERR "%s: attempt to clear non-busy tag (%d)\n",
  929. __FUNCTION__, tag);
  930. return;
  931. }
  932. /*
  933. * The tag_map bit acts as a lock for tag_index[bit], so we need
  934. * unlock memory barrier semantics.
  935. */
  936. clear_bit_unlock(tag, bqt->tag_map);
  937. bqt->busy--;
  938. }
  939. EXPORT_SYMBOL(blk_queue_end_tag);
  940. /**
  941. * blk_queue_start_tag - find a free tag and assign it
  942. * @q: the request queue for the device
  943. * @rq: the block request that needs tagging
  944. *
  945. * Description:
  946. * This can either be used as a stand-alone helper, or possibly be
  947. * assigned as the queue &prep_rq_fn (in which case &struct request
  948. * automagically gets a tag assigned). Note that this function
  949. * assumes that any type of request can be queued! if this is not
  950. * true for your device, you must check the request type before
  951. * calling this function. The request will also be removed from
  952. * the request queue, so it's the drivers responsibility to readd
  953. * it if it should need to be restarted for some reason.
  954. *
  955. * Notes:
  956. * queue lock must be held.
  957. **/
  958. int blk_queue_start_tag(struct request_queue *q, struct request *rq)
  959. {
  960. struct blk_queue_tag *bqt = q->queue_tags;
  961. int tag;
  962. if (unlikely((rq->cmd_flags & REQ_QUEUED))) {
  963. printk(KERN_ERR
  964. "%s: request %p for device [%s] already tagged %d",
  965. __FUNCTION__, rq,
  966. rq->rq_disk ? rq->rq_disk->disk_name : "?", rq->tag);
  967. BUG();
  968. }
  969. /*
  970. * Protect against shared tag maps, as we may not have exclusive
  971. * access to the tag map.
  972. */
  973. do {
  974. tag = find_first_zero_bit(bqt->tag_map, bqt->max_depth);
  975. if (tag >= bqt->max_depth)
  976. return 1;
  977. } while (test_and_set_bit_lock(tag, bqt->tag_map));
  978. /*
  979. * We need lock ordering semantics given by test_and_set_bit_lock.
  980. * See blk_queue_end_tag for details.
  981. */
  982. rq->cmd_flags |= REQ_QUEUED;
  983. rq->tag = tag;
  984. bqt->tag_index[tag] = rq;
  985. blkdev_dequeue_request(rq);
  986. list_add(&rq->queuelist, &q->tag_busy_list);
  987. bqt->busy++;
  988. return 0;
  989. }
  990. EXPORT_SYMBOL(blk_queue_start_tag);
  991. /**
  992. * blk_queue_invalidate_tags - invalidate all pending tags
  993. * @q: the request queue for the device
  994. *
  995. * Description:
  996. * Hardware conditions may dictate a need to stop all pending requests.
  997. * In this case, we will safely clear the block side of the tag queue and
  998. * readd all requests to the request queue in the right order.
  999. *
  1000. * Notes:
  1001. * queue lock must be held.
  1002. **/
  1003. void blk_queue_invalidate_tags(struct request_queue *q)
  1004. {
  1005. struct list_head *tmp, *n;
  1006. list_for_each_safe(tmp, n, &q->tag_busy_list)
  1007. blk_requeue_request(q, list_entry_rq(tmp));
  1008. }
  1009. EXPORT_SYMBOL(blk_queue_invalidate_tags);
  1010. void blk_dump_rq_flags(struct request *rq, char *msg)
  1011. {
  1012. int bit;
  1013. printk("%s: dev %s: type=%x, flags=%x\n", msg,
  1014. rq->rq_disk ? rq->rq_disk->disk_name : "?", rq->cmd_type,
  1015. rq->cmd_flags);
  1016. printk("\nsector %llu, nr/cnr %lu/%u\n", (unsigned long long)rq->sector,
  1017. rq->nr_sectors,
  1018. rq->current_nr_sectors);
  1019. printk("bio %p, biotail %p, buffer %p, data %p, len %u\n", rq->bio, rq->biotail, rq->buffer, rq->data, rq->data_len);
  1020. if (blk_pc_request(rq)) {
  1021. printk("cdb: ");
  1022. for (bit = 0; bit < sizeof(rq->cmd); bit++)
  1023. printk("%02x ", rq->cmd[bit]);
  1024. printk("\n");
  1025. }
  1026. }
  1027. EXPORT_SYMBOL(blk_dump_rq_flags);
  1028. void blk_recount_segments(struct request_queue *q, struct bio *bio)
  1029. {
  1030. struct request rq;
  1031. struct bio *nxt = bio->bi_next;
  1032. rq.q = q;
  1033. rq.bio = rq.biotail = bio;
  1034. bio->bi_next = NULL;
  1035. blk_recalc_rq_segments(&rq);
  1036. bio->bi_next = nxt;
  1037. bio->bi_phys_segments = rq.nr_phys_segments;
  1038. bio->bi_hw_segments = rq.nr_hw_segments;
  1039. bio->bi_flags |= (1 << BIO_SEG_VALID);
  1040. }
  1041. EXPORT_SYMBOL(blk_recount_segments);
  1042. static void blk_recalc_rq_segments(struct request *rq)
  1043. {
  1044. int nr_phys_segs;
  1045. int nr_hw_segs;
  1046. unsigned int phys_size;
  1047. unsigned int hw_size;
  1048. struct bio_vec *bv, *bvprv = NULL;
  1049. int seg_size;
  1050. int hw_seg_size;
  1051. int cluster;
  1052. struct req_iterator iter;
  1053. int high, highprv = 1;
  1054. struct request_queue *q = rq->q;
  1055. if (!rq->bio)
  1056. return;
  1057. cluster = q->queue_flags & (1 << QUEUE_FLAG_CLUSTER);
  1058. hw_seg_size = seg_size = 0;
  1059. phys_size = hw_size = nr_phys_segs = nr_hw_segs = 0;
  1060. rq_for_each_segment(bv, rq, iter) {
  1061. /*
  1062. * the trick here is making sure that a high page is never
  1063. * considered part of another segment, since that might
  1064. * change with the bounce page.
  1065. */
  1066. high = page_to_pfn(bv->bv_page) > q->bounce_pfn;
  1067. if (high || highprv)
  1068. goto new_hw_segment;
  1069. if (cluster) {
  1070. if (seg_size + bv->bv_len > q->max_segment_size)
  1071. goto new_segment;
  1072. if (!BIOVEC_PHYS_MERGEABLE(bvprv, bv))
  1073. goto new_segment;
  1074. if (!BIOVEC_SEG_BOUNDARY(q, bvprv, bv))
  1075. goto new_segment;
  1076. if (BIOVEC_VIRT_OVERSIZE(hw_seg_size + bv->bv_len))
  1077. goto new_hw_segment;
  1078. seg_size += bv->bv_len;
  1079. hw_seg_size += bv->bv_len;
  1080. bvprv = bv;
  1081. continue;
  1082. }
  1083. new_segment:
  1084. if (BIOVEC_VIRT_MERGEABLE(bvprv, bv) &&
  1085. !BIOVEC_VIRT_OVERSIZE(hw_seg_size + bv->bv_len))
  1086. hw_seg_size += bv->bv_len;
  1087. else {
  1088. new_hw_segment:
  1089. if (nr_hw_segs == 1 &&
  1090. hw_seg_size > rq->bio->bi_hw_front_size)
  1091. rq->bio->bi_hw_front_size = hw_seg_size;
  1092. hw_seg_size = BIOVEC_VIRT_START_SIZE(bv) + bv->bv_len;
  1093. nr_hw_segs++;
  1094. }
  1095. nr_phys_segs++;
  1096. bvprv = bv;
  1097. seg_size = bv->bv_len;
  1098. highprv = high;
  1099. }
  1100. if (nr_hw_segs == 1 &&
  1101. hw_seg_size > rq->bio->bi_hw_front_size)
  1102. rq->bio->bi_hw_front_size = hw_seg_size;
  1103. if (hw_seg_size > rq->biotail->bi_hw_back_size)
  1104. rq->biotail->bi_hw_back_size = hw_seg_size;
  1105. rq->nr_phys_segments = nr_phys_segs;
  1106. rq->nr_hw_segments = nr_hw_segs;
  1107. }
  1108. static int blk_phys_contig_segment(struct request_queue *q, struct bio *bio,
  1109. struct bio *nxt)
  1110. {
  1111. if (!(q->queue_flags & (1 << QUEUE_FLAG_CLUSTER)))
  1112. return 0;
  1113. if (!BIOVEC_PHYS_MERGEABLE(__BVEC_END(bio), __BVEC_START(nxt)))
  1114. return 0;
  1115. if (bio->bi_size + nxt->bi_size > q->max_segment_size)
  1116. return 0;
  1117. /*
  1118. * bio and nxt are contigous in memory, check if the queue allows
  1119. * these two to be merged into one
  1120. */
  1121. if (BIO_SEG_BOUNDARY(q, bio, nxt))
  1122. return 1;
  1123. return 0;
  1124. }
  1125. static int blk_hw_contig_segment(struct request_queue *q, struct bio *bio,
  1126. struct bio *nxt)
  1127. {
  1128. if (unlikely(!bio_flagged(bio, BIO_SEG_VALID)))
  1129. blk_recount_segments(q, bio);
  1130. if (unlikely(!bio_flagged(nxt, BIO_SEG_VALID)))
  1131. blk_recount_segments(q, nxt);
  1132. if (!BIOVEC_VIRT_MERGEABLE(__BVEC_END(bio), __BVEC_START(nxt)) ||
  1133. BIOVEC_VIRT_OVERSIZE(bio->bi_hw_back_size + nxt->bi_hw_front_size))
  1134. return 0;
  1135. if (bio->bi_hw_back_size + nxt->bi_hw_front_size > q->max_segment_size)
  1136. return 0;
  1137. return 1;
  1138. }
  1139. /*
  1140. * map a request to scatterlist, return number of sg entries setup. Caller
  1141. * must make sure sg can hold rq->nr_phys_segments entries
  1142. */
  1143. int blk_rq_map_sg(struct request_queue *q, struct request *rq,
  1144. struct scatterlist *sglist)
  1145. {
  1146. struct bio_vec *bvec, *bvprv;
  1147. struct req_iterator iter;
  1148. struct scatterlist *sg;
  1149. int nsegs, cluster;
  1150. nsegs = 0;
  1151. cluster = q->queue_flags & (1 << QUEUE_FLAG_CLUSTER);
  1152. /*
  1153. * for each bio in rq
  1154. */
  1155. bvprv = NULL;
  1156. sg = NULL;
  1157. rq_for_each_segment(bvec, rq, iter) {
  1158. int nbytes = bvec->bv_len;
  1159. if (bvprv && cluster) {
  1160. if (sg->length + nbytes > q->max_segment_size)
  1161. goto new_segment;
  1162. if (!BIOVEC_PHYS_MERGEABLE(bvprv, bvec))
  1163. goto new_segment;
  1164. if (!BIOVEC_SEG_BOUNDARY(q, bvprv, bvec))
  1165. goto new_segment;
  1166. sg->length += nbytes;
  1167. } else {
  1168. new_segment:
  1169. if (!sg)
  1170. sg = sglist;
  1171. else {
  1172. /*
  1173. * If the driver previously mapped a shorter
  1174. * list, we could see a termination bit
  1175. * prematurely unless it fully inits the sg
  1176. * table on each mapping. We KNOW that there
  1177. * must be more entries here or the driver
  1178. * would be buggy, so force clear the
  1179. * termination bit to avoid doing a full
  1180. * sg_init_table() in drivers for each command.
  1181. */
  1182. sg->page_link &= ~0x02;
  1183. sg = sg_next(sg);
  1184. }
  1185. sg_set_page(sg, bvec->bv_page, nbytes, bvec->bv_offset);
  1186. nsegs++;
  1187. }
  1188. bvprv = bvec;
  1189. } /* segments in rq */
  1190. if (sg)
  1191. sg_mark_end(sg);
  1192. return nsegs;
  1193. }
  1194. EXPORT_SYMBOL(blk_rq_map_sg);
  1195. /*
  1196. * the standard queue merge functions, can be overridden with device
  1197. * specific ones if so desired
  1198. */
  1199. static inline int ll_new_mergeable(struct request_queue *q,
  1200. struct request *req,
  1201. struct bio *bio)
  1202. {
  1203. int nr_phys_segs = bio_phys_segments(q, bio);
  1204. if (req->nr_phys_segments + nr_phys_segs > q->max_phys_segments) {
  1205. req->cmd_flags |= REQ_NOMERGE;
  1206. if (req == q->last_merge)
  1207. q->last_merge = NULL;
  1208. return 0;
  1209. }
  1210. /*
  1211. * A hw segment is just getting larger, bump just the phys
  1212. * counter.
  1213. */
  1214. req->nr_phys_segments += nr_phys_segs;
  1215. return 1;
  1216. }
  1217. static inline int ll_new_hw_segment(struct request_queue *q,
  1218. struct request *req,
  1219. struct bio *bio)
  1220. {
  1221. int nr_hw_segs = bio_hw_segments(q, bio);
  1222. int nr_phys_segs = bio_phys_segments(q, bio);
  1223. if (req->nr_hw_segments + nr_hw_segs > q->max_hw_segments
  1224. || req->nr_phys_segments + nr_phys_segs > q->max_phys_segments) {
  1225. req->cmd_flags |= REQ_NOMERGE;
  1226. if (req == q->last_merge)
  1227. q->last_merge = NULL;
  1228. return 0;
  1229. }
  1230. /*
  1231. * This will form the start of a new hw segment. Bump both
  1232. * counters.
  1233. */
  1234. req->nr_hw_segments += nr_hw_segs;
  1235. req->nr_phys_segments += nr_phys_segs;
  1236. return 1;
  1237. }
  1238. static int ll_back_merge_fn(struct request_queue *q, struct request *req,
  1239. struct bio *bio)
  1240. {
  1241. unsigned short max_sectors;
  1242. int len;
  1243. if (unlikely(blk_pc_request(req)))
  1244. max_sectors = q->max_hw_sectors;
  1245. else
  1246. max_sectors = q->max_sectors;
  1247. if (req->nr_sectors + bio_sectors(bio) > max_sectors) {
  1248. req->cmd_flags |= REQ_NOMERGE;
  1249. if (req == q->last_merge)
  1250. q->last_merge = NULL;
  1251. return 0;
  1252. }
  1253. if (unlikely(!bio_flagged(req->biotail, BIO_SEG_VALID)))
  1254. blk_recount_segments(q, req->biotail);
  1255. if (unlikely(!bio_flagged(bio, BIO_SEG_VALID)))
  1256. blk_recount_segments(q, bio);
  1257. len = req->biotail->bi_hw_back_size + bio->bi_hw_front_size;
  1258. if (BIOVEC_VIRT_MERGEABLE(__BVEC_END(req->biotail), __BVEC_START(bio)) &&
  1259. !BIOVEC_VIRT_OVERSIZE(len)) {
  1260. int mergeable = ll_new_mergeable(q, req, bio);
  1261. if (mergeable) {
  1262. if (req->nr_hw_segments == 1)
  1263. req->bio->bi_hw_front_size = len;
  1264. if (bio->bi_hw_segments == 1)
  1265. bio->bi_hw_back_size = len;
  1266. }
  1267. return mergeable;
  1268. }
  1269. return ll_new_hw_segment(q, req, bio);
  1270. }
  1271. static int ll_front_merge_fn(struct request_queue *q, struct request *req,
  1272. struct bio *bio)
  1273. {
  1274. unsigned short max_sectors;
  1275. int len;
  1276. if (unlikely(blk_pc_request(req)))
  1277. max_sectors = q->max_hw_sectors;
  1278. else
  1279. max_sectors = q->max_sectors;
  1280. if (req->nr_sectors + bio_sectors(bio) > max_sectors) {
  1281. req->cmd_flags |= REQ_NOMERGE;
  1282. if (req == q->last_merge)
  1283. q->last_merge = NULL;
  1284. return 0;
  1285. }
  1286. len = bio->bi_hw_back_size + req->bio->bi_hw_front_size;
  1287. if (unlikely(!bio_flagged(bio, BIO_SEG_VALID)))
  1288. blk_recount_segments(q, bio);
  1289. if (unlikely(!bio_flagged(req->bio, BIO_SEG_VALID)))
  1290. blk_recount_segments(q, req->bio);
  1291. if (BIOVEC_VIRT_MERGEABLE(__BVEC_END(bio), __BVEC_START(req->bio)) &&
  1292. !BIOVEC_VIRT_OVERSIZE(len)) {
  1293. int mergeable = ll_new_mergeable(q, req, bio);
  1294. if (mergeable) {
  1295. if (bio->bi_hw_segments == 1)
  1296. bio->bi_hw_front_size = len;
  1297. if (req->nr_hw_segments == 1)
  1298. req->biotail->bi_hw_back_size = len;
  1299. }
  1300. return mergeable;
  1301. }
  1302. return ll_new_hw_segment(q, req, bio);
  1303. }
  1304. static int ll_merge_requests_fn(struct request_queue *q, struct request *req,
  1305. struct request *next)
  1306. {
  1307. int total_phys_segments;
  1308. int total_hw_segments;
  1309. /*
  1310. * First check if the either of the requests are re-queued
  1311. * requests. Can't merge them if they are.
  1312. */
  1313. if (req->special || next->special)
  1314. return 0;
  1315. /*
  1316. * Will it become too large?
  1317. */
  1318. if ((req->nr_sectors + next->nr_sectors) > q->max_sectors)
  1319. return 0;
  1320. total_phys_segments = req->nr_phys_segments + next->nr_phys_segments;
  1321. if (blk_phys_contig_segment(q, req->biotail, next->bio))
  1322. total_phys_segments--;
  1323. if (total_phys_segments > q->max_phys_segments)
  1324. return 0;
  1325. total_hw_segments = req->nr_hw_segments + next->nr_hw_segments;
  1326. if (blk_hw_contig_segment(q, req->biotail, next->bio)) {
  1327. int len = req->biotail->bi_hw_back_size + next->bio->bi_hw_front_size;
  1328. /*
  1329. * propagate the combined length to the end of the requests
  1330. */
  1331. if (req->nr_hw_segments == 1)
  1332. req->bio->bi_hw_front_size = len;
  1333. if (next->nr_hw_segments == 1)
  1334. next->biotail->bi_hw_back_size = len;
  1335. total_hw_segments--;
  1336. }
  1337. if (total_hw_segments > q->max_hw_segments)
  1338. return 0;
  1339. /* Merge is OK... */
  1340. req->nr_phys_segments = total_phys_segments;
  1341. req->nr_hw_segments = total_hw_segments;
  1342. return 1;
  1343. }
  1344. /*
  1345. * "plug" the device if there are no outstanding requests: this will
  1346. * force the transfer to start only after we have put all the requests
  1347. * on the list.
  1348. *
  1349. * This is called with interrupts off and no requests on the queue and
  1350. * with the queue lock held.
  1351. */
  1352. void blk_plug_device(struct request_queue *q)
  1353. {
  1354. WARN_ON(!irqs_disabled());
  1355. /*
  1356. * don't plug a stopped queue, it must be paired with blk_start_queue()
  1357. * which will restart the queueing
  1358. */
  1359. if (blk_queue_stopped(q))
  1360. return;
  1361. if (!test_and_set_bit(QUEUE_FLAG_PLUGGED, &q->queue_flags)) {
  1362. mod_timer(&q->unplug_timer, jiffies + q->unplug_delay);
  1363. blk_add_trace_generic(q, NULL, 0, BLK_TA_PLUG);
  1364. }
  1365. }
  1366. EXPORT_SYMBOL(blk_plug_device);
  1367. /*
  1368. * remove the queue from the plugged list, if present. called with
  1369. * queue lock held and interrupts disabled.
  1370. */
  1371. int blk_remove_plug(struct request_queue *q)
  1372. {
  1373. WARN_ON(!irqs_disabled());
  1374. if (!test_and_clear_bit(QUEUE_FLAG_PLUGGED, &q->queue_flags))
  1375. return 0;
  1376. del_timer(&q->unplug_timer);
  1377. return 1;
  1378. }
  1379. EXPORT_SYMBOL(blk_remove_plug);
  1380. /*
  1381. * remove the plug and let it rip..
  1382. */
  1383. void __generic_unplug_device(struct request_queue *q)
  1384. {
  1385. if (unlikely(blk_queue_stopped(q)))
  1386. return;
  1387. if (!blk_remove_plug(q))
  1388. return;
  1389. q->request_fn(q);
  1390. }
  1391. EXPORT_SYMBOL(__generic_unplug_device);
  1392. /**
  1393. * generic_unplug_device - fire a request queue
  1394. * @q: The &struct request_queue in question
  1395. *
  1396. * Description:
  1397. * Linux uses plugging to build bigger requests queues before letting
  1398. * the device have at them. If a queue is plugged, the I/O scheduler
  1399. * is still adding and merging requests on the queue. Once the queue
  1400. * gets unplugged, the request_fn defined for the queue is invoked and
  1401. * transfers started.
  1402. **/
  1403. void generic_unplug_device(struct request_queue *q)
  1404. {
  1405. spin_lock_irq(q->queue_lock);
  1406. __generic_unplug_device(q);
  1407. spin_unlock_irq(q->queue_lock);
  1408. }
  1409. EXPORT_SYMBOL(generic_unplug_device);
  1410. static void blk_backing_dev_unplug(struct backing_dev_info *bdi,
  1411. struct page *page)
  1412. {
  1413. struct request_queue *q = bdi->unplug_io_data;
  1414. blk_unplug(q);
  1415. }
  1416. static void blk_unplug_work(struct work_struct *work)
  1417. {
  1418. struct request_queue *q =
  1419. container_of(work, struct request_queue, unplug_work);
  1420. blk_add_trace_pdu_int(q, BLK_TA_UNPLUG_IO, NULL,
  1421. q->rq.count[READ] + q->rq.count[WRITE]);
  1422. q->unplug_fn(q);
  1423. }
  1424. static void blk_unplug_timeout(unsigned long data)
  1425. {
  1426. struct request_queue *q = (struct request_queue *)data;
  1427. blk_add_trace_pdu_int(q, BLK_TA_UNPLUG_TIMER, NULL,
  1428. q->rq.count[READ] + q->rq.count[WRITE]);
  1429. kblockd_schedule_work(&q->unplug_work);
  1430. }
  1431. void blk_unplug(struct request_queue *q)
  1432. {
  1433. /*
  1434. * devices don't necessarily have an ->unplug_fn defined
  1435. */
  1436. if (q->unplug_fn) {
  1437. blk_add_trace_pdu_int(q, BLK_TA_UNPLUG_IO, NULL,
  1438. q->rq.count[READ] + q->rq.count[WRITE]);
  1439. q->unplug_fn(q);
  1440. }
  1441. }
  1442. EXPORT_SYMBOL(blk_unplug);
  1443. /**
  1444. * blk_start_queue - restart a previously stopped queue
  1445. * @q: The &struct request_queue in question
  1446. *
  1447. * Description:
  1448. * blk_start_queue() will clear the stop flag on the queue, and call
  1449. * the request_fn for the queue if it was in a stopped state when
  1450. * entered. Also see blk_stop_queue(). Queue lock must be held.
  1451. **/
  1452. void blk_start_queue(struct request_queue *q)
  1453. {
  1454. WARN_ON(!irqs_disabled());
  1455. clear_bit(QUEUE_FLAG_STOPPED, &q->queue_flags);
  1456. /*
  1457. * one level of recursion is ok and is much faster than kicking
  1458. * the unplug handling
  1459. */
  1460. if (!test_and_set_bit(QUEUE_FLAG_REENTER, &q->queue_flags)) {
  1461. q->request_fn(q);
  1462. clear_bit(QUEUE_FLAG_REENTER, &q->queue_flags);
  1463. } else {
  1464. blk_plug_device(q);
  1465. kblockd_schedule_work(&q->unplug_work);
  1466. }
  1467. }
  1468. EXPORT_SYMBOL(blk_start_queue);
  1469. /**
  1470. * blk_stop_queue - stop a queue
  1471. * @q: The &struct request_queue in question
  1472. *
  1473. * Description:
  1474. * The Linux block layer assumes that a block driver will consume all
  1475. * entries on the request queue when the request_fn strategy is called.
  1476. * Often this will not happen, because of hardware limitations (queue
  1477. * depth settings). If a device driver gets a 'queue full' response,
  1478. * or if it simply chooses not to queue more I/O at one point, it can
  1479. * call this function to prevent the request_fn from being called until
  1480. * the driver has signalled it's ready to go again. This happens by calling
  1481. * blk_start_queue() to restart queue operations. Queue lock must be held.
  1482. **/
  1483. void blk_stop_queue(struct request_queue *q)
  1484. {
  1485. blk_remove_plug(q);
  1486. set_bit(QUEUE_FLAG_STOPPED, &q->queue_flags);
  1487. }
  1488. EXPORT_SYMBOL(blk_stop_queue);
  1489. /**
  1490. * blk_sync_queue - cancel any pending callbacks on a queue
  1491. * @q: the queue
  1492. *
  1493. * Description:
  1494. * The block layer may perform asynchronous callback activity
  1495. * on a queue, such as calling the unplug function after a timeout.
  1496. * A block device may call blk_sync_queue to ensure that any
  1497. * such activity is cancelled, thus allowing it to release resources
  1498. * that the callbacks might use. The caller must already have made sure
  1499. * that its ->make_request_fn will not re-add plugging prior to calling
  1500. * this function.
  1501. *
  1502. */
  1503. void blk_sync_queue(struct request_queue *q)
  1504. {
  1505. del_timer_sync(&q->unplug_timer);
  1506. kblockd_flush_work(&q->unplug_work);
  1507. }
  1508. EXPORT_SYMBOL(blk_sync_queue);
  1509. /**
  1510. * blk_run_queue - run a single device queue
  1511. * @q: The queue to run
  1512. */
  1513. void blk_run_queue(struct request_queue *q)
  1514. {
  1515. unsigned long flags;
  1516. spin_lock_irqsave(q->queue_lock, flags);
  1517. blk_remove_plug(q);
  1518. /*
  1519. * Only recurse once to avoid overrunning the stack, let the unplug
  1520. * handling reinvoke the handler shortly if we already got there.
  1521. */
  1522. if (!elv_queue_empty(q)) {
  1523. if (!test_and_set_bit(QUEUE_FLAG_REENTER, &q->queue_flags)) {
  1524. q->request_fn(q);
  1525. clear_bit(QUEUE_FLAG_REENTER, &q->queue_flags);
  1526. } else {
  1527. blk_plug_device(q);
  1528. kblockd_schedule_work(&q->unplug_work);
  1529. }
  1530. }
  1531. spin_unlock_irqrestore(q->queue_lock, flags);
  1532. }
  1533. EXPORT_SYMBOL(blk_run_queue);
  1534. /**
  1535. * blk_cleanup_queue: - release a &struct request_queue when it is no longer needed
  1536. * @kobj: the kobj belonging of the request queue to be released
  1537. *
  1538. * Description:
  1539. * blk_cleanup_queue is the pair to blk_init_queue() or
  1540. * blk_queue_make_request(). It should be called when a request queue is
  1541. * being released; typically when a block device is being de-registered.
  1542. * Currently, its primary task it to free all the &struct request
  1543. * structures that were allocated to the queue and the queue itself.
  1544. *
  1545. * Caveat:
  1546. * Hopefully the low level driver will have finished any
  1547. * outstanding requests first...
  1548. **/
  1549. static void blk_release_queue(struct kobject *kobj)
  1550. {
  1551. struct request_queue *q =
  1552. container_of(kobj, struct request_queue, kobj);
  1553. struct request_list *rl = &q->rq;
  1554. blk_sync_queue(q);
  1555. if (rl->rq_pool)
  1556. mempool_destroy(rl->rq_pool);
  1557. if (q->queue_tags)
  1558. __blk_queue_free_tags(q);
  1559. blk_trace_shutdown(q);
  1560. bdi_destroy(&q->backing_dev_info);
  1561. kmem_cache_free(requestq_cachep, q);
  1562. }
  1563. void blk_put_queue(struct request_queue *q)
  1564. {
  1565. kobject_put(&q->kobj);
  1566. }
  1567. EXPORT_SYMBOL(blk_put_queue);
  1568. void blk_cleanup_queue(struct request_queue * q)
  1569. {
  1570. mutex_lock(&q->sysfs_lock);
  1571. set_bit(QUEUE_FLAG_DEAD, &q->queue_flags);
  1572. mutex_unlock(&q->sysfs_lock);
  1573. if (q->elevator)
  1574. elevator_exit(q->elevator);
  1575. blk_put_queue(q);
  1576. }
  1577. EXPORT_SYMBOL(blk_cleanup_queue);
  1578. static int blk_init_free_list(struct request_queue *q)
  1579. {
  1580. struct request_list *rl = &q->rq;
  1581. rl->count[READ] = rl->count[WRITE] = 0;
  1582. rl->starved[READ] = rl->starved[WRITE] = 0;
  1583. rl->elvpriv = 0;
  1584. init_waitqueue_head(&rl->wait[READ]);
  1585. init_waitqueue_head(&rl->wait[WRITE]);
  1586. rl->rq_pool = mempool_create_node(BLKDEV_MIN_RQ, mempool_alloc_slab,
  1587. mempool_free_slab, request_cachep, q->node);
  1588. if (!rl->rq_pool)
  1589. return -ENOMEM;
  1590. return 0;
  1591. }
  1592. struct request_queue *blk_alloc_queue(gfp_t gfp_mask)
  1593. {
  1594. return blk_alloc_queue_node(gfp_mask, -1);
  1595. }
  1596. EXPORT_SYMBOL(blk_alloc_queue);
  1597. static struct kobj_type queue_ktype;
  1598. struct request_queue *blk_alloc_queue_node(gfp_t gfp_mask, int node_id)
  1599. {
  1600. struct request_queue *q;
  1601. int err;
  1602. q = kmem_cache_alloc_node(requestq_cachep,
  1603. gfp_mask | __GFP_ZERO, node_id);
  1604. if (!q)
  1605. return NULL;
  1606. q->backing_dev_info.unplug_io_fn = blk_backing_dev_unplug;
  1607. q->backing_dev_info.unplug_io_data = q;
  1608. err = bdi_init(&q->backing_dev_info);
  1609. if (err) {
  1610. kmem_cache_free(requestq_cachep, q);
  1611. return NULL;
  1612. }
  1613. init_timer(&q->unplug_timer);
  1614. kobject_init(&q->kobj, &queue_ktype);
  1615. mutex_init(&q->sysfs_lock);
  1616. return q;
  1617. }
  1618. EXPORT_SYMBOL(blk_alloc_queue_node);
  1619. /**
  1620. * blk_init_queue - prepare a request queue for use with a block device
  1621. * @rfn: The function to be called to process requests that have been
  1622. * placed on the queue.
  1623. * @lock: Request queue spin lock
  1624. *
  1625. * Description:
  1626. * If a block device wishes to use the standard request handling procedures,
  1627. * which sorts requests and coalesces adjacent requests, then it must
  1628. * call blk_init_queue(). The function @rfn will be called when there
  1629. * are requests on the queue that need to be processed. If the device
  1630. * supports plugging, then @rfn may not be called immediately when requests
  1631. * are available on the queue, but may be called at some time later instead.
  1632. * Plugged queues are generally unplugged when a buffer belonging to one
  1633. * of the requests on the queue is needed, or due to memory pressure.
  1634. *
  1635. * @rfn is not required, or even expected, to remove all requests off the
  1636. * queue, but only as many as it can handle at a time. If it does leave
  1637. * requests on the queue, it is responsible for arranging that the requests
  1638. * get dealt with eventually.
  1639. *
  1640. * The queue spin lock must be held while manipulating the requests on the
  1641. * request queue; this lock will be taken also from interrupt context, so irq
  1642. * disabling is needed for it.
  1643. *
  1644. * Function returns a pointer to the initialized request queue, or NULL if
  1645. * it didn't succeed.
  1646. *
  1647. * Note:
  1648. * blk_init_queue() must be paired with a blk_cleanup_queue() call
  1649. * when the block device is deactivated (such as at module unload).
  1650. **/
  1651. struct request_queue *blk_init_queue(request_fn_proc *rfn, spinlock_t *lock)
  1652. {
  1653. return blk_init_queue_node(rfn, lock, -1);
  1654. }
  1655. EXPORT_SYMBOL(blk_init_queue);
  1656. struct request_queue *
  1657. blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id)
  1658. {
  1659. struct request_queue *q = blk_alloc_queue_node(GFP_KERNEL, node_id);
  1660. if (!q)
  1661. return NULL;
  1662. q->node = node_id;
  1663. if (blk_init_free_list(q)) {
  1664. kmem_cache_free(requestq_cachep, q);
  1665. return NULL;
  1666. }
  1667. /*
  1668. * if caller didn't supply a lock, they get per-queue locking with
  1669. * our embedded lock
  1670. */
  1671. if (!lock) {
  1672. spin_lock_init(&q->__queue_lock);
  1673. lock = &q->__queue_lock;
  1674. }
  1675. q->request_fn = rfn;
  1676. q->prep_rq_fn = NULL;
  1677. q->unplug_fn = generic_unplug_device;
  1678. q->queue_flags = (1 << QUEUE_FLAG_CLUSTER);
  1679. q->queue_lock = lock;
  1680. blk_queue_segment_boundary(q, 0xffffffff);
  1681. blk_queue_make_request(q, __make_request);
  1682. blk_queue_max_segment_size(q, MAX_SEGMENT_SIZE);
  1683. blk_queue_max_hw_segments(q, MAX_HW_SEGMENTS);
  1684. blk_queue_max_phys_segments(q, MAX_PHYS_SEGMENTS);
  1685. q->sg_reserved_size = INT_MAX;
  1686. /*
  1687. * all done
  1688. */
  1689. if (!elevator_init(q, NULL)) {
  1690. blk_queue_congestion_threshold(q);
  1691. return q;
  1692. }
  1693. blk_put_queue(q);
  1694. return NULL;
  1695. }
  1696. EXPORT_SYMBOL(blk_init_queue_node);
  1697. int blk_get_queue(struct request_queue *q)
  1698. {
  1699. if (likely(!test_bit(QUEUE_FLAG_DEAD, &q->queue_flags))) {
  1700. kobject_get(&q->kobj);
  1701. return 0;
  1702. }
  1703. return 1;
  1704. }
  1705. EXPORT_SYMBOL(blk_get_queue);
  1706. static inline void blk_free_request(struct request_queue *q, struct request *rq)
  1707. {
  1708. if (rq->cmd_flags & REQ_ELVPRIV)
  1709. elv_put_request(q, rq);
  1710. mempool_free(rq, q->rq.rq_pool);
  1711. }
  1712. static struct request *
  1713. blk_alloc_request(struct request_queue *q, int rw, int priv, gfp_t gfp_mask)
  1714. {
  1715. struct request *rq = mempool_alloc(q->rq.rq_pool, gfp_mask);
  1716. if (!rq)
  1717. return NULL;
  1718. /*
  1719. * first three bits are identical in rq->cmd_flags and bio->bi_rw,
  1720. * see bio.h and blkdev.h
  1721. */
  1722. rq->cmd_flags = rw | REQ_ALLOCED;
  1723. if (priv) {
  1724. if (unlikely(elv_set_request(q, rq, gfp_mask))) {
  1725. mempool_free(rq, q->rq.rq_pool);
  1726. return NULL;
  1727. }
  1728. rq->cmd_flags |= REQ_ELVPRIV;
  1729. }
  1730. return rq;
  1731. }
  1732. /*
  1733. * ioc_batching returns true if the ioc is a valid batching request and
  1734. * should be given priority access to a request.
  1735. */
  1736. static inline int ioc_batching(struct request_queue *q, struct io_context *ioc)
  1737. {
  1738. if (!ioc)
  1739. return 0;
  1740. /*
  1741. * Make sure the process is able to allocate at least 1 request
  1742. * even if the batch times out, otherwise we could theoretically
  1743. * lose wakeups.
  1744. */
  1745. return ioc->nr_batch_requests == q->nr_batching ||
  1746. (ioc->nr_batch_requests > 0
  1747. && time_before(jiffies, ioc->last_waited + BLK_BATCH_TIME));
  1748. }
  1749. /*
  1750. * ioc_set_batching sets ioc to be a new "batcher" if it is not one. This
  1751. * will cause the process to be a "batcher" on all queues in the system. This
  1752. * is the behaviour we want though - once it gets a wakeup it should be given
  1753. * a nice run.
  1754. */
  1755. static void ioc_set_batching(struct request_queue *q, struct io_context *ioc)
  1756. {
  1757. if (!ioc || ioc_batching(q, ioc))
  1758. return;
  1759. ioc->nr_batch_requests = q->nr_batching;
  1760. ioc->last_waited = jiffies;
  1761. }
  1762. static void __freed_request(struct request_queue *q, int rw)
  1763. {
  1764. struct request_list *rl = &q->rq;
  1765. if (rl->count[rw] < queue_congestion_off_threshold(q))
  1766. blk_clear_queue_congested(q, rw);
  1767. if (rl->count[rw] + 1 <= q->nr_requests) {
  1768. if (waitqueue_active(&rl->wait[rw]))
  1769. wake_up(&rl->wait[rw]);
  1770. blk_clear_queue_full(q, rw);
  1771. }
  1772. }
  1773. /*
  1774. * A request has just been released. Account for it, update the full and
  1775. * congestion status, wake up any waiters. Called under q->queue_lock.
  1776. */
  1777. static void freed_request(struct request_queue *q, int rw, int priv)
  1778. {
  1779. struct request_list *rl = &q->rq;
  1780. rl->count[rw]--;
  1781. if (priv)
  1782. rl->elvpriv--;
  1783. __freed_request(q, rw);
  1784. if (unlikely(rl->starved[rw ^ 1]))
  1785. __freed_request(q, rw ^ 1);
  1786. }
  1787. #define blkdev_free_rq(list) list_entry((list)->next, struct request, queuelist)
  1788. /*
  1789. * Get a free request, queue_lock must be held.
  1790. * Returns NULL on failure, with queue_lock held.
  1791. * Returns !NULL on success, with queue_lock *not held*.
  1792. */
  1793. static struct request *get_request(struct request_queue *q, int rw_flags,
  1794. struct bio *bio, gfp_t gfp_mask)
  1795. {
  1796. struct request *rq = NULL;
  1797. struct request_list *rl = &q->rq;
  1798. struct io_context *ioc = NULL;
  1799. const int rw = rw_flags & 0x01;
  1800. int may_queue, priv;
  1801. may_queue = elv_may_queue(q, rw_flags);
  1802. if (may_queue == ELV_MQUEUE_NO)
  1803. goto rq_starved;
  1804. if (rl->count[rw]+1 >= queue_congestion_on_threshold(q)) {
  1805. if (rl->count[rw]+1 >= q->nr_requests) {
  1806. ioc = current_io_context(GFP_ATOMIC, q->node);
  1807. /*
  1808. * The queue will fill after this allocation, so set
  1809. * it as full, and mark this process as "batching".
  1810. * This process will be allowed to complete a batch of
  1811. * requests, others will be blocked.
  1812. */
  1813. if (!blk_queue_full(q, rw)) {
  1814. ioc_set_batching(q, ioc);
  1815. blk_set_queue_full(q, rw);
  1816. } else {
  1817. if (may_queue != ELV_MQUEUE_MUST
  1818. && !ioc_batching(q, ioc)) {
  1819. /*
  1820. * The queue is full and the allocating
  1821. * process is not a "batcher", and not
  1822. * exempted by the IO scheduler
  1823. */
  1824. goto out;
  1825. }
  1826. }
  1827. }
  1828. blk_set_queue_congested(q, rw);
  1829. }
  1830. /*
  1831. * Only allow batching queuers to allocate up to 50% over the defined
  1832. * limit of requests, otherwise we could have thousands of requests
  1833. * allocated with any setting of ->nr_requests
  1834. */
  1835. if (rl->count[rw] >= (3 * q->nr_requests / 2))
  1836. goto out;
  1837. rl->count[rw]++;
  1838. rl->starved[rw] = 0;
  1839. priv = !test_bit(QUEUE_FLAG_ELVSWITCH, &q->queue_flags);
  1840. if (priv)
  1841. rl->elvpriv++;
  1842. spin_unlock_irq(q->queue_lock);
  1843. rq = blk_alloc_request(q, rw_flags, priv, gfp_mask);
  1844. if (unlikely(!rq)) {
  1845. /*
  1846. * Allocation failed presumably due to memory. Undo anything
  1847. * we might have messed up.
  1848. *
  1849. * Allocating task should really be put onto the front of the
  1850. * wait queue, but this is pretty rare.
  1851. */
  1852. spin_lock_irq(q->queue_lock);
  1853. freed_request(q, rw, priv);
  1854. /*
  1855. * in the very unlikely event that allocation failed and no
  1856. * requests for this direction was pending, mark us starved
  1857. * so that freeing of a request in the other direction will
  1858. * notice us. another possible fix would be to split the
  1859. * rq mempool into READ and WRITE
  1860. */
  1861. rq_starved:
  1862. if (unlikely(rl->count[rw] == 0))
  1863. rl->starved[rw] = 1;
  1864. goto out;
  1865. }
  1866. /*
  1867. * ioc may be NULL here, and ioc_batching will be false. That's
  1868. * OK, if the queue is under the request limit then requests need
  1869. * not count toward the nr_batch_requests limit. There will always
  1870. * be some limit enforced by BLK_BATCH_TIME.
  1871. */
  1872. if (ioc_batching(q, ioc))
  1873. ioc->nr_batch_requests--;
  1874. rq_init(q, rq);
  1875. blk_add_trace_generic(q, bio, rw, BLK_TA_GETRQ);
  1876. out:
  1877. return rq;
  1878. }
  1879. /*
  1880. * No available requests for this queue, unplug the device and wait for some
  1881. * requests to become available.
  1882. *
  1883. * Called with q->queue_lock held, and returns with it unlocked.
  1884. */
  1885. static struct request *get_request_wait(struct request_queue *q, int rw_flags,
  1886. struct bio *bio)
  1887. {
  1888. const int rw = rw_flags & 0x01;
  1889. struct request *rq;
  1890. rq = get_request(q, rw_flags, bio, GFP_NOIO);
  1891. while (!rq) {
  1892. DEFINE_WAIT(wait);
  1893. struct request_list *rl = &q->rq;
  1894. prepare_to_wait_exclusive(&rl->wait[rw], &wait,
  1895. TASK_UNINTERRUPTIBLE);
  1896. rq = get_request(q, rw_flags, bio, GFP_NOIO);
  1897. if (!rq) {
  1898. struct io_context *ioc;
  1899. blk_add_trace_generic(q, bio, rw, BLK_TA_SLEEPRQ);
  1900. __generic_unplug_device(q);
  1901. spin_unlock_irq(q->queue_lock);
  1902. io_schedule();
  1903. /*
  1904. * After sleeping, we become a "batching" process and
  1905. * will be able to allocate at least one request, and
  1906. * up to a big batch of them for a small period time.
  1907. * See ioc_batching, ioc_set_batching
  1908. */
  1909. ioc = current_io_context(GFP_NOIO, q->node);
  1910. ioc_set_batching(q, ioc);
  1911. spin_lock_irq(q->queue_lock);
  1912. }
  1913. finish_wait(&rl->wait[rw], &wait);
  1914. }
  1915. return rq;
  1916. }
  1917. struct request *blk_get_request(struct request_queue *q, int rw, gfp_t gfp_mask)
  1918. {
  1919. struct request *rq;
  1920. BUG_ON(rw != READ && rw != WRITE);
  1921. spin_lock_irq(q->queue_lock);
  1922. if (gfp_mask & __GFP_WAIT) {
  1923. rq = get_request_wait(q, rw, NULL);
  1924. } else {
  1925. rq = get_request(q, rw, NULL, gfp_mask);
  1926. if (!rq)
  1927. spin_unlock_irq(q->queue_lock);
  1928. }
  1929. /* q->queue_lock is unlocked at this point */
  1930. return rq;
  1931. }
  1932. EXPORT_SYMBOL(blk_get_request);
  1933. /**
  1934. * blk_start_queueing - initiate dispatch of requests to device
  1935. * @q: request queue to kick into gear
  1936. *
  1937. * This is basically a helper to remove the need to know whether a queue
  1938. * is plugged or not if someone just wants to initiate dispatch of requests
  1939. * for this queue.
  1940. *
  1941. * The queue lock must be held with interrupts disabled.
  1942. */
  1943. void blk_start_queueing(struct request_queue *q)
  1944. {
  1945. if (!blk_queue_plugged(q))
  1946. q->request_fn(q);
  1947. else
  1948. __generic_unplug_device(q);
  1949. }
  1950. EXPORT_SYMBOL(blk_start_queueing);
  1951. /**
  1952. * blk_requeue_request - put a request back on queue
  1953. * @q: request queue where request should be inserted
  1954. * @rq: request to be inserted
  1955. *
  1956. * Description:
  1957. * Drivers often keep queueing requests until the hardware cannot accept
  1958. * more, when that condition happens we need to put the request back
  1959. * on the queue. Must be called with queue lock held.
  1960. */
  1961. void blk_requeue_request(struct request_queue *q, struct request *rq)
  1962. {
  1963. blk_add_trace_rq(q, rq, BLK_TA_REQUEUE);
  1964. if (blk_rq_tagged(rq))
  1965. blk_queue_end_tag(q, rq);
  1966. elv_requeue_request(q, rq);
  1967. }
  1968. EXPORT_SYMBOL(blk_requeue_request);
  1969. /**
  1970. * blk_insert_request - insert a special request in to a request queue
  1971. * @q: request queue where request should be inserted
  1972. * @rq: request to be inserted
  1973. * @at_head: insert request at head or tail of queue
  1974. * @data: private data
  1975. *
  1976. * Description:
  1977. * Many block devices need to execute commands asynchronously, so they don't
  1978. * block the whole kernel from preemption during request execution. This is
  1979. * accomplished normally by inserting aritficial requests tagged as
  1980. * REQ_SPECIAL in to the corresponding request queue, and letting them be
  1981. * scheduled for actual execution by the request queue.
  1982. *
  1983. * We have the option of inserting the head or the tail of the queue.
  1984. * Typically we use the tail for new ioctls and so forth. We use the head
  1985. * of the queue for things like a QUEUE_FULL message from a device, or a
  1986. * host that is unable to accept a particular command.
  1987. */
  1988. void blk_insert_request(struct request_queue *q, struct request *rq,
  1989. int at_head, void *data)
  1990. {
  1991. int where = at_head ? ELEVATOR_INSERT_FRONT : ELEVATOR_INSERT_BACK;
  1992. unsigned long flags;
  1993. /*
  1994. * tell I/O scheduler that this isn't a regular read/write (ie it
  1995. * must not attempt merges on this) and that it acts as a soft
  1996. * barrier
  1997. */
  1998. rq->cmd_type = REQ_TYPE_SPECIAL;
  1999. rq->cmd_flags |= REQ_SOFTBARRIER;
  2000. rq->special = data;
  2001. spin_lock_irqsave(q->queue_lock, flags);
  2002. /*
  2003. * If command is tagged, release the tag
  2004. */
  2005. if (blk_rq_tagged(rq))
  2006. blk_queue_end_tag(q, rq);
  2007. drive_stat_acct(rq, 1);
  2008. __elv_add_request(q, rq, where, 0);
  2009. blk_start_queueing(q);
  2010. spin_unlock_irqrestore(q->queue_lock, flags);
  2011. }
  2012. EXPORT_SYMBOL(blk_insert_request);
  2013. static int __blk_rq_unmap_user(struct bio *bio)
  2014. {
  2015. int ret = 0;
  2016. if (bio) {
  2017. if (bio_flagged(bio, BIO_USER_MAPPED))
  2018. bio_unmap_user(bio);
  2019. else
  2020. ret = bio_uncopy_user(bio);
  2021. }
  2022. return ret;
  2023. }
  2024. int blk_rq_append_bio(struct request_queue *q, struct request *rq,
  2025. struct bio *bio)
  2026. {
  2027. if (!rq->bio)
  2028. blk_rq_bio_prep(q, rq, bio);
  2029. else if (!ll_back_merge_fn(q, rq, bio))
  2030. return -EINVAL;
  2031. else {
  2032. rq->biotail->bi_next = bio;
  2033. rq->biotail = bio;
  2034. rq->data_len += bio->bi_size;
  2035. }
  2036. return 0;
  2037. }
  2038. EXPORT_SYMBOL(blk_rq_append_bio);
  2039. static int __blk_rq_map_user(struct request_queue *q, struct request *rq,
  2040. void __user *ubuf, unsigned int len)
  2041. {
  2042. unsigned long uaddr;
  2043. struct bio *bio, *orig_bio;
  2044. int reading, ret;
  2045. reading = rq_data_dir(rq) == READ;
  2046. /*
  2047. * if alignment requirement is satisfied, map in user pages for
  2048. * direct dma. else, set up kernel bounce buffers
  2049. */
  2050. uaddr = (unsigned long) ubuf;
  2051. if (!(uaddr & queue_dma_alignment(q)) && !(len & queue_dma_alignment(q)))
  2052. bio = bio_map_user(q, NULL, uaddr, len, reading);
  2053. else
  2054. bio = bio_copy_user(q, uaddr, len, reading);
  2055. if (IS_ERR(bio))
  2056. return PTR_ERR(bio);
  2057. orig_bio = bio;
  2058. blk_queue_bounce(q, &bio);
  2059. /*
  2060. * We link the bounce buffer in and could have to traverse it
  2061. * later so we have to get a ref to prevent it from being freed
  2062. */
  2063. bio_get(bio);
  2064. ret = blk_rq_append_bio(q, rq, bio);
  2065. if (!ret)
  2066. return bio->bi_size;
  2067. /* if it was boucned we must call the end io function */
  2068. bio_endio(bio, 0);
  2069. __blk_rq_unmap_user(orig_bio);
  2070. bio_put(bio);
  2071. return ret;
  2072. }
  2073. /**
  2074. * blk_rq_map_user - map user data to a request, for REQ_BLOCK_PC usage
  2075. * @q: request queue where request should be inserted
  2076. * @rq: request structure to fill
  2077. * @ubuf: the user buffer
  2078. * @len: length of user data
  2079. *
  2080. * Description:
  2081. * Data will be mapped directly for zero copy io, if possible. Otherwise
  2082. * a kernel bounce buffer is used.
  2083. *
  2084. * A matching blk_rq_unmap_user() must be issued at the end of io, while
  2085. * still in process context.
  2086. *
  2087. * Note: The mapped bio may need to be bounced through blk_queue_bounce()
  2088. * before being submitted to the device, as pages mapped may be out of
  2089. * reach. It's the callers responsibility to make sure this happens. The
  2090. * original bio must be passed back in to blk_rq_unmap_user() for proper
  2091. * unmapping.
  2092. */
  2093. int blk_rq_map_user(struct request_queue *q, struct request *rq,
  2094. void __user *ubuf, unsigned long len)
  2095. {
  2096. unsigned long bytes_read = 0;
  2097. struct bio *bio = NULL;
  2098. int ret;
  2099. if (len > (q->max_hw_sectors << 9))
  2100. return -EINVAL;
  2101. if (!len || !ubuf)
  2102. return -EINVAL;
  2103. while (bytes_read != len) {
  2104. unsigned long map_len, end, start;
  2105. map_len = min_t(unsigned long, len - bytes_read, BIO_MAX_SIZE);
  2106. end = ((unsigned long)ubuf + map_len + PAGE_SIZE - 1)
  2107. >> PAGE_SHIFT;
  2108. start = (unsigned long)ubuf >> PAGE_SHIFT;
  2109. /*
  2110. * A bad offset could cause us to require BIO_MAX_PAGES + 1
  2111. * pages. If this happens we just lower the requested
  2112. * mapping len by a page so that we can fit
  2113. */
  2114. if (end - start > BIO_MAX_PAGES)
  2115. map_len -= PAGE_SIZE;
  2116. ret = __blk_rq_map_user(q, rq, ubuf, map_len);
  2117. if (ret < 0)
  2118. goto unmap_rq;
  2119. if (!bio)
  2120. bio = rq->bio;
  2121. bytes_read += ret;
  2122. ubuf += ret;
  2123. }
  2124. rq->buffer = rq->data = NULL;
  2125. return 0;
  2126. unmap_rq:
  2127. blk_rq_unmap_user(bio);
  2128. return ret;
  2129. }
  2130. EXPORT_SYMBOL(blk_rq_map_user);
  2131. /**
  2132. * blk_rq_map_user_iov - map user data to a request, for REQ_BLOCK_PC usage
  2133. * @q: request queue where request should be inserted
  2134. * @rq: request to map data to
  2135. * @iov: pointer to the iovec
  2136. * @iov_count: number of elements in the iovec
  2137. * @len: I/O byte count
  2138. *
  2139. * Description:
  2140. * Data will be mapped directly for zero copy io, if possible. Otherwise
  2141. * a kernel bounce buffer is used.
  2142. *
  2143. * A matching blk_rq_unmap_user() must be issued at the end of io, while
  2144. * still in process context.
  2145. *
  2146. * Note: The mapped bio may need to be bounced through blk_queue_bounce()
  2147. * before being submitted to the device, as pages mapped may be out of
  2148. * reach. It's the callers responsibility to make sure this happens. The
  2149. * original bio must be passed back in to blk_rq_unmap_user() for proper
  2150. * unmapping.
  2151. */
  2152. int blk_rq_map_user_iov(struct request_queue *q, struct request *rq,
  2153. struct sg_iovec *iov, int iov_count, unsigned int len)
  2154. {
  2155. struct bio *bio;
  2156. if (!iov || iov_count <= 0)
  2157. return -EINVAL;
  2158. /* we don't allow misaligned data like bio_map_user() does. If the
  2159. * user is using sg, they're expected to know the alignment constraints
  2160. * and respect them accordingly */
  2161. bio = bio_map_user_iov(q, NULL, iov, iov_count, rq_data_dir(rq)== READ);
  2162. if (IS_ERR(bio))
  2163. return PTR_ERR(bio);
  2164. if (bio->bi_size != len) {
  2165. bio_endio(bio, 0);
  2166. bio_unmap_user(bio);
  2167. return -EINVAL;
  2168. }
  2169. bio_get(bio);
  2170. blk_rq_bio_prep(q, rq, bio);
  2171. rq->buffer = rq->data = NULL;
  2172. return 0;
  2173. }
  2174. EXPORT_SYMBOL(blk_rq_map_user_iov);
  2175. /**
  2176. * blk_rq_unmap_user - unmap a request with user data
  2177. * @bio: start of bio list
  2178. *
  2179. * Description:
  2180. * Unmap a rq previously mapped by blk_rq_map_user(). The caller must
  2181. * supply the original rq->bio from the blk_rq_map_user() return, since
  2182. * the io completion may have changed rq->bio.
  2183. */
  2184. int blk_rq_unmap_user(struct bio *bio)
  2185. {
  2186. struct bio *mapped_bio;
  2187. int ret = 0, ret2;
  2188. while (bio) {
  2189. mapped_bio = bio;
  2190. if (unlikely(bio_flagged(bio, BIO_BOUNCED)))
  2191. mapped_bio = bio->bi_private;
  2192. ret2 = __blk_rq_unmap_user(mapped_bio);
  2193. if (ret2 && !ret)
  2194. ret = ret2;
  2195. mapped_bio = bio;
  2196. bio = bio->bi_next;
  2197. bio_put(mapped_bio);
  2198. }
  2199. return ret;
  2200. }
  2201. EXPORT_SYMBOL(blk_rq_unmap_user);
  2202. /**
  2203. * blk_rq_map_kern - map kernel data to a request, for REQ_BLOCK_PC usage
  2204. * @q: request queue where request should be inserted
  2205. * @rq: request to fill
  2206. * @kbuf: the kernel buffer
  2207. * @len: length of user data
  2208. * @gfp_mask: memory allocation flags
  2209. */
  2210. int blk_rq_map_kern(struct request_queue *q, struct request *rq, void *kbuf,
  2211. unsigned int len, gfp_t gfp_mask)
  2212. {
  2213. struct bio *bio;
  2214. if (len > (q->max_hw_sectors << 9))
  2215. return -EINVAL;
  2216. if (!len || !kbuf)
  2217. return -EINVAL;
  2218. bio = bio_map_kern(q, kbuf, len, gfp_mask);
  2219. if (IS_ERR(bio))
  2220. return PTR_ERR(bio);
  2221. if (rq_data_dir(rq) == WRITE)
  2222. bio->bi_rw |= (1 << BIO_RW);
  2223. blk_rq_bio_prep(q, rq, bio);
  2224. blk_queue_bounce(q, &rq->bio);
  2225. rq->buffer = rq->data = NULL;
  2226. return 0;
  2227. }
  2228. EXPORT_SYMBOL(blk_rq_map_kern);
  2229. /**
  2230. * blk_execute_rq_nowait - insert a request into queue for execution
  2231. * @q: queue to insert the request in
  2232. * @bd_disk: matching gendisk
  2233. * @rq: request to insert
  2234. * @at_head: insert request at head or tail of queue
  2235. * @done: I/O completion handler
  2236. *
  2237. * Description:
  2238. * Insert a fully prepared request at the back of the io scheduler queue
  2239. * for execution. Don't wait for completion.
  2240. */
  2241. void blk_execute_rq_nowait(struct request_queue *q, struct gendisk *bd_disk,
  2242. struct request *rq, int at_head,
  2243. rq_end_io_fn *done)
  2244. {
  2245. int where = at_head ? ELEVATOR_INSERT_FRONT : ELEVATOR_INSERT_BACK;
  2246. rq->rq_disk = bd_disk;
  2247. rq->cmd_flags |= REQ_NOMERGE;
  2248. rq->end_io = done;
  2249. WARN_ON(irqs_disabled());
  2250. spin_lock_irq(q->queue_lock);
  2251. __elv_add_request(q, rq, where, 1);
  2252. __generic_unplug_device(q);
  2253. spin_unlock_irq(q->queue_lock);
  2254. }
  2255. EXPORT_SYMBOL_GPL(blk_execute_rq_nowait);
  2256. /**
  2257. * blk_execute_rq - insert a request into queue for execution
  2258. * @q: queue to insert the request in
  2259. * @bd_disk: matching gendisk
  2260. * @rq: request to insert
  2261. * @at_head: insert request at head or tail of queue
  2262. *
  2263. * Description:
  2264. * Insert a fully prepared request at the back of the io scheduler queue
  2265. * for execution and wait for completion.
  2266. */
  2267. int blk_execute_rq(struct request_queue *q, struct gendisk *bd_disk,
  2268. struct request *rq, int at_head)
  2269. {
  2270. DECLARE_COMPLETION_ONSTACK(wait);
  2271. char sense[SCSI_SENSE_BUFFERSIZE];
  2272. int err = 0;
  2273. /*
  2274. * we need an extra reference to the request, so we can look at
  2275. * it after io completion
  2276. */
  2277. rq->ref_count++;
  2278. if (!rq->sense) {
  2279. memset(sense, 0, sizeof(sense));
  2280. rq->sense = sense;
  2281. rq->sense_len = 0;
  2282. }
  2283. rq->end_io_data = &wait;
  2284. blk_execute_rq_nowait(q, bd_disk, rq, at_head, blk_end_sync_rq);
  2285. wait_for_completion(&wait);
  2286. if (rq->errors)
  2287. err = -EIO;
  2288. return err;
  2289. }
  2290. EXPORT_SYMBOL(blk_execute_rq);
  2291. static void bio_end_empty_barrier(struct bio *bio, int err)
  2292. {
  2293. if (err)
  2294. clear_bit(BIO_UPTODATE, &bio->bi_flags);
  2295. complete(bio->bi_private);
  2296. }
  2297. /**
  2298. * blkdev_issue_flush - queue a flush
  2299. * @bdev: blockdev to issue flush for
  2300. * @error_sector: error sector
  2301. *
  2302. * Description:
  2303. * Issue a flush for the block device in question. Caller can supply
  2304. * room for storing the error offset in case of a flush error, if they
  2305. * wish to. Caller must run wait_for_completion() on its own.
  2306. */
  2307. int blkdev_issue_flush(struct block_device *bdev, sector_t *error_sector)
  2308. {
  2309. DECLARE_COMPLETION_ONSTACK(wait);
  2310. struct request_queue *q;
  2311. struct bio *bio;
  2312. int ret;
  2313. if (bdev->bd_disk == NULL)
  2314. return -ENXIO;
  2315. q = bdev_get_queue(bdev);
  2316. if (!q)
  2317. return -ENXIO;
  2318. bio = bio_alloc(GFP_KERNEL, 0);
  2319. if (!bio)
  2320. return -ENOMEM;
  2321. bio->bi_end_io = bio_end_empty_barrier;
  2322. bio->bi_private = &wait;
  2323. bio->bi_bdev = bdev;
  2324. submit_bio(1 << BIO_RW_BARRIER, bio);
  2325. wait_for_completion(&wait);
  2326. /*
  2327. * The driver must store the error location in ->bi_sector, if
  2328. * it supports it. For non-stacked drivers, this should be copied
  2329. * from rq->sector.
  2330. */
  2331. if (error_sector)
  2332. *error_sector = bio->bi_sector;
  2333. ret = 0;
  2334. if (!bio_flagged(bio, BIO_UPTODATE))
  2335. ret = -EIO;
  2336. bio_put(bio);
  2337. return ret;
  2338. }
  2339. EXPORT_SYMBOL(blkdev_issue_flush);
  2340. static void drive_stat_acct(struct request *rq, int new_io)
  2341. {
  2342. int rw = rq_data_dir(rq);
  2343. if (!blk_fs_request(rq) || !rq->rq_disk)
  2344. return;
  2345. if (!new_io) {
  2346. __disk_stat_inc(rq->rq_disk, merges[rw]);
  2347. } else {
  2348. disk_round_stats(rq->rq_disk);
  2349. rq->rq_disk->in_flight++;
  2350. }
  2351. }
  2352. /*
  2353. * add-request adds a request to the linked list.
  2354. * queue lock is held and interrupts disabled, as we muck with the
  2355. * request queue list.
  2356. */
  2357. static inline void add_request(struct request_queue * q, struct request * req)
  2358. {
  2359. drive_stat_acct(req, 1);
  2360. /*
  2361. * elevator indicated where it wants this request to be
  2362. * inserted at elevator_merge time
  2363. */
  2364. __elv_add_request(q, req, ELEVATOR_INSERT_SORT, 0);
  2365. }
  2366. /*
  2367. * disk_round_stats() - Round off the performance stats on a struct
  2368. * disk_stats.
  2369. *
  2370. * The average IO queue length and utilisation statistics are maintained
  2371. * by observing the current state of the queue length and the amount of
  2372. * time it has been in this state for.
  2373. *
  2374. * Normally, that accounting is done on IO completion, but that can result
  2375. * in more than a second's worth of IO being accounted for within any one
  2376. * second, leading to >100% utilisation. To deal with that, we call this
  2377. * function to do a round-off before returning the results when reading
  2378. * /proc/diskstats. This accounts immediately for all queue usage up to
  2379. * the current jiffies and restarts the counters again.
  2380. */
  2381. void disk_round_stats(struct gendisk *disk)
  2382. {
  2383. unsigned long now = jiffies;
  2384. if (now == disk->stamp)
  2385. return;
  2386. if (disk->in_flight) {
  2387. __disk_stat_add(disk, time_in_queue,
  2388. disk->in_flight * (now - disk->stamp));
  2389. __disk_stat_add(disk, io_ticks, (now - disk->stamp));
  2390. }
  2391. disk->stamp = now;
  2392. }
  2393. EXPORT_SYMBOL_GPL(disk_round_stats);
  2394. /*
  2395. * queue lock must be held
  2396. */
  2397. void __blk_put_request(struct request_queue *q, struct request *req)
  2398. {
  2399. if (unlikely(!q))
  2400. return;
  2401. if (unlikely(--req->ref_count))
  2402. return;
  2403. elv_completed_request(q, req);
  2404. /*
  2405. * Request may not have originated from ll_rw_blk. if not,
  2406. * it didn't come out of our reserved rq pools
  2407. */
  2408. if (req->cmd_flags & REQ_ALLOCED) {
  2409. int rw = rq_data_dir(req);
  2410. int priv = req->cmd_flags & REQ_ELVPRIV;
  2411. BUG_ON(!list_empty(&req->queuelist));
  2412. BUG_ON(!hlist_unhashed(&req->hash));
  2413. blk_free_request(q, req);
  2414. freed_request(q, rw, priv);
  2415. }
  2416. }
  2417. EXPORT_SYMBOL_GPL(__blk_put_request);
  2418. void blk_put_request(struct request *req)
  2419. {
  2420. unsigned long flags;
  2421. struct request_queue *q = req->q;
  2422. /*
  2423. * Gee, IDE calls in w/ NULL q. Fix IDE and remove the
  2424. * following if (q) test.
  2425. */
  2426. if (q) {
  2427. spin_lock_irqsave(q->queue_lock, flags);
  2428. __blk_put_request(q, req);
  2429. spin_unlock_irqrestore(q->queue_lock, flags);
  2430. }
  2431. }
  2432. EXPORT_SYMBOL(blk_put_request);
  2433. /**
  2434. * blk_end_sync_rq - executes a completion event on a request
  2435. * @rq: request to complete
  2436. * @error: end io status of the request
  2437. */
  2438. void blk_end_sync_rq(struct request *rq, int error)
  2439. {
  2440. struct completion *waiting = rq->end_io_data;
  2441. rq->end_io_data = NULL;
  2442. __blk_put_request(rq->q, rq);
  2443. /*
  2444. * complete last, if this is a stack request the process (and thus
  2445. * the rq pointer) could be invalid right after this complete()
  2446. */
  2447. complete(waiting);
  2448. }
  2449. EXPORT_SYMBOL(blk_end_sync_rq);
  2450. /*
  2451. * Has to be called with the request spinlock acquired
  2452. */
  2453. static int attempt_merge(struct request_queue *q, struct request *req,
  2454. struct request *next)
  2455. {
  2456. if (!rq_mergeable(req) || !rq_mergeable(next))
  2457. return 0;
  2458. /*
  2459. * not contiguous
  2460. */
  2461. if (req->sector + req->nr_sectors != next->sector)
  2462. return 0;
  2463. if (rq_data_dir(req) != rq_data_dir(next)
  2464. || req->rq_disk != next->rq_disk
  2465. || next->special)
  2466. return 0;
  2467. /*
  2468. * If we are allowed to merge, then append bio list
  2469. * from next to rq and release next. merge_requests_fn
  2470. * will have updated segment counts, update sector
  2471. * counts here.
  2472. */
  2473. if (!ll_merge_requests_fn(q, req, next))
  2474. return 0;
  2475. /*
  2476. * At this point we have either done a back merge
  2477. * or front merge. We need the smaller start_time of
  2478. * the merged requests to be the current request
  2479. * for accounting purposes.
  2480. */
  2481. if (time_after(req->start_time, next->start_time))
  2482. req->start_time = next->start_time;
  2483. req->biotail->bi_next = next->bio;
  2484. req->biotail = next->biotail;
  2485. req->nr_sectors = req->hard_nr_sectors += next->hard_nr_sectors;
  2486. elv_merge_requests(q, req, next);
  2487. if (req->rq_disk) {
  2488. disk_round_stats(req->rq_disk);
  2489. req->rq_disk->in_flight--;
  2490. }
  2491. req->ioprio = ioprio_best(req->ioprio, next->ioprio);
  2492. __blk_put_request(q, next);
  2493. return 1;
  2494. }
  2495. static inline int attempt_back_merge(struct request_queue *q,
  2496. struct request *rq)
  2497. {
  2498. struct request *next = elv_latter_request(q, rq);
  2499. if (next)
  2500. return attempt_merge(q, rq, next);
  2501. return 0;
  2502. }
  2503. static inline int attempt_front_merge(struct request_queue *q,
  2504. struct request *rq)
  2505. {
  2506. struct request *prev = elv_former_request(q, rq);
  2507. if (prev)
  2508. return attempt_merge(q, prev, rq);
  2509. return 0;
  2510. }
  2511. static void init_request_from_bio(struct request *req, struct bio *bio)
  2512. {
  2513. req->cmd_type = REQ_TYPE_FS;
  2514. /*
  2515. * inherit FAILFAST from bio (for read-ahead, and explicit FAILFAST)
  2516. */
  2517. if (bio_rw_ahead(bio) || bio_failfast(bio))
  2518. req->cmd_flags |= REQ_FAILFAST;
  2519. /*
  2520. * REQ_BARRIER implies no merging, but lets make it explicit
  2521. */
  2522. if (unlikely(bio_barrier(bio)))
  2523. req->cmd_flags |= (REQ_HARDBARRIER | REQ_NOMERGE);
  2524. if (bio_sync(bio))
  2525. req->cmd_flags |= REQ_RW_SYNC;
  2526. if (bio_rw_meta(bio))
  2527. req->cmd_flags |= REQ_RW_META;
  2528. req->errors = 0;
  2529. req->hard_sector = req->sector = bio->bi_sector;
  2530. req->ioprio = bio_prio(bio);
  2531. req->start_time = jiffies;
  2532. blk_rq_bio_prep(req->q, req, bio);
  2533. }
  2534. static int __make_request(struct request_queue *q, struct bio *bio)
  2535. {
  2536. struct request *req;
  2537. int el_ret, nr_sectors, barrier, err;
  2538. const unsigned short prio = bio_prio(bio);
  2539. const int sync = bio_sync(bio);
  2540. int rw_flags;
  2541. nr_sectors = bio_sectors(bio);
  2542. /*
  2543. * low level driver can indicate that it wants pages above a
  2544. * certain limit bounced to low memory (ie for highmem, or even
  2545. * ISA dma in theory)
  2546. */
  2547. blk_queue_bounce(q, &bio);
  2548. barrier = bio_barrier(bio);
  2549. if (unlikely(barrier) && (q->next_ordered == QUEUE_ORDERED_NONE)) {
  2550. err = -EOPNOTSUPP;
  2551. goto end_io;
  2552. }
  2553. spin_lock_irq(q->queue_lock);
  2554. if (unlikely(barrier) || elv_queue_empty(q))
  2555. goto get_rq;
  2556. el_ret = elv_merge(q, &req, bio);
  2557. switch (el_ret) {
  2558. case ELEVATOR_BACK_MERGE:
  2559. BUG_ON(!rq_mergeable(req));
  2560. if (!ll_back_merge_fn(q, req, bio))
  2561. break;
  2562. blk_add_trace_bio(q, bio, BLK_TA_BACKMERGE);
  2563. req->biotail->bi_next = bio;
  2564. req->biotail = bio;
  2565. req->nr_sectors = req->hard_nr_sectors += nr_sectors;
  2566. req->ioprio = ioprio_best(req->ioprio, prio);
  2567. drive_stat_acct(req, 0);
  2568. if (!attempt_back_merge(q, req))
  2569. elv_merged_request(q, req, el_ret);
  2570. goto out;
  2571. case ELEVATOR_FRONT_MERGE:
  2572. BUG_ON(!rq_mergeable(req));
  2573. if (!ll_front_merge_fn(q, req, bio))
  2574. break;
  2575. blk_add_trace_bio(q, bio, BLK_TA_FRONTMERGE);
  2576. bio->bi_next = req->bio;
  2577. req->bio = bio;
  2578. /*
  2579. * may not be valid. if the low level driver said
  2580. * it didn't need a bounce buffer then it better
  2581. * not touch req->buffer either...
  2582. */
  2583. req->buffer = bio_data(bio);
  2584. req->current_nr_sectors = bio_cur_sectors(bio);
  2585. req->hard_cur_sectors = req->current_nr_sectors;
  2586. req->sector = req->hard_sector = bio->bi_sector;
  2587. req->nr_sectors = req->hard_nr_sectors += nr_sectors;
  2588. req->ioprio = ioprio_best(req->ioprio, prio);
  2589. drive_stat_acct(req, 0);
  2590. if (!attempt_front_merge(q, req))
  2591. elv_merged_request(q, req, el_ret);
  2592. goto out;
  2593. /* ELV_NO_MERGE: elevator says don't/can't merge. */
  2594. default:
  2595. ;
  2596. }
  2597. get_rq:
  2598. /*
  2599. * This sync check and mask will be re-done in init_request_from_bio(),
  2600. * but we need to set it earlier to expose the sync flag to the
  2601. * rq allocator and io schedulers.
  2602. */
  2603. rw_flags = bio_data_dir(bio);
  2604. if (sync)
  2605. rw_flags |= REQ_RW_SYNC;
  2606. /*
  2607. * Grab a free request. This is might sleep but can not fail.
  2608. * Returns with the queue unlocked.
  2609. */
  2610. req = get_request_wait(q, rw_flags, bio);
  2611. /*
  2612. * After dropping the lock and possibly sleeping here, our request
  2613. * may now be mergeable after it had proven unmergeable (above).
  2614. * We don't worry about that case for efficiency. It won't happen
  2615. * often, and the elevators are able to handle it.
  2616. */
  2617. init_request_from_bio(req, bio);
  2618. spin_lock_irq(q->queue_lock);
  2619. if (elv_queue_empty(q))
  2620. blk_plug_device(q);
  2621. add_request(q, req);
  2622. out:
  2623. if (sync)
  2624. __generic_unplug_device(q);
  2625. spin_unlock_irq(q->queue_lock);
  2626. return 0;
  2627. end_io:
  2628. bio_endio(bio, err);
  2629. return 0;
  2630. }
  2631. /*
  2632. * If bio->bi_dev is a partition, remap the location
  2633. */
  2634. static inline void blk_partition_remap(struct bio *bio)
  2635. {
  2636. struct block_device *bdev = bio->bi_bdev;
  2637. if (bio_sectors(bio) && bdev != bdev->bd_contains) {
  2638. struct hd_struct *p = bdev->bd_part;
  2639. const int rw = bio_data_dir(bio);
  2640. p->sectors[rw] += bio_sectors(bio);
  2641. p->ios[rw]++;
  2642. bio->bi_sector += p->start_sect;
  2643. bio->bi_bdev = bdev->bd_contains;
  2644. blk_add_trace_remap(bdev_get_queue(bio->bi_bdev), bio,
  2645. bdev->bd_dev, bio->bi_sector,
  2646. bio->bi_sector - p->start_sect);
  2647. }
  2648. }
  2649. static void handle_bad_sector(struct bio *bio)
  2650. {
  2651. char b[BDEVNAME_SIZE];
  2652. printk(KERN_INFO "attempt to access beyond end of device\n");
  2653. printk(KERN_INFO "%s: rw=%ld, want=%Lu, limit=%Lu\n",
  2654. bdevname(bio->bi_bdev, b),
  2655. bio->bi_rw,
  2656. (unsigned long long)bio->bi_sector + bio_sectors(bio),
  2657. (long long)(bio->bi_bdev->bd_inode->i_size >> 9));
  2658. set_bit(BIO_EOF, &bio->bi_flags);
  2659. }
  2660. #ifdef CONFIG_FAIL_MAKE_REQUEST
  2661. static DECLARE_FAULT_ATTR(fail_make_request);
  2662. static int __init setup_fail_make_request(char *str)
  2663. {
  2664. return setup_fault_attr(&fail_make_request, str);
  2665. }
  2666. __setup("fail_make_request=", setup_fail_make_request);
  2667. static int should_fail_request(struct bio *bio)
  2668. {
  2669. if ((bio->bi_bdev->bd_disk->flags & GENHD_FL_FAIL) ||
  2670. (bio->bi_bdev->bd_part && bio->bi_bdev->bd_part->make_it_fail))
  2671. return should_fail(&fail_make_request, bio->bi_size);
  2672. return 0;
  2673. }
  2674. static int __init fail_make_request_debugfs(void)
  2675. {
  2676. return init_fault_attr_dentries(&fail_make_request,
  2677. "fail_make_request");
  2678. }
  2679. late_initcall(fail_make_request_debugfs);
  2680. #else /* CONFIG_FAIL_MAKE_REQUEST */
  2681. static inline int should_fail_request(struct bio *bio)
  2682. {
  2683. return 0;
  2684. }
  2685. #endif /* CONFIG_FAIL_MAKE_REQUEST */
  2686. /*
  2687. * Check whether this bio extends beyond the end of the device.
  2688. */
  2689. static inline int bio_check_eod(struct bio *bio, unsigned int nr_sectors)
  2690. {
  2691. sector_t maxsector;
  2692. if (!nr_sectors)
  2693. return 0;
  2694. /* Test device or partition size, when known. */
  2695. maxsector = bio->bi_bdev->bd_inode->i_size >> 9;
  2696. if (maxsector) {
  2697. sector_t sector = bio->bi_sector;
  2698. if (maxsector < nr_sectors || maxsector - nr_sectors < sector) {
  2699. /*
  2700. * This may well happen - the kernel calls bread()
  2701. * without checking the size of the device, e.g., when
  2702. * mounting a device.
  2703. */
  2704. handle_bad_sector(bio);
  2705. return 1;
  2706. }
  2707. }
  2708. return 0;
  2709. }
  2710. /**
  2711. * generic_make_request: hand a buffer to its device driver for I/O
  2712. * @bio: The bio describing the location in memory and on the device.
  2713. *
  2714. * generic_make_request() is used to make I/O requests of block
  2715. * devices. It is passed a &struct bio, which describes the I/O that needs
  2716. * to be done.
  2717. *
  2718. * generic_make_request() does not return any status. The
  2719. * success/failure status of the request, along with notification of
  2720. * completion, is delivered asynchronously through the bio->bi_end_io
  2721. * function described (one day) else where.
  2722. *
  2723. * The caller of generic_make_request must make sure that bi_io_vec
  2724. * are set to describe the memory buffer, and that bi_dev and bi_sector are
  2725. * set to describe the device address, and the
  2726. * bi_end_io and optionally bi_private are set to describe how
  2727. * completion notification should be signaled.
  2728. *
  2729. * generic_make_request and the drivers it calls may use bi_next if this
  2730. * bio happens to be merged with someone else, and may change bi_dev and
  2731. * bi_sector for remaps as it sees fit. So the values of these fields
  2732. * should NOT be depended on after the call to generic_make_request.
  2733. */
  2734. static inline void __generic_make_request(struct bio *bio)
  2735. {
  2736. struct request_queue *q;
  2737. sector_t old_sector;
  2738. int ret, nr_sectors = bio_sectors(bio);
  2739. dev_t old_dev;
  2740. int err = -EIO;
  2741. might_sleep();
  2742. if (bio_check_eod(bio, nr_sectors))
  2743. goto end_io;
  2744. /*
  2745. * Resolve the mapping until finished. (drivers are
  2746. * still free to implement/resolve their own stacking
  2747. * by explicitly returning 0)
  2748. *
  2749. * NOTE: we don't repeat the blk_size check for each new device.
  2750. * Stacking drivers are expected to know what they are doing.
  2751. */
  2752. old_sector = -1;
  2753. old_dev = 0;
  2754. do {
  2755. char b[BDEVNAME_SIZE];
  2756. q = bdev_get_queue(bio->bi_bdev);
  2757. if (!q) {
  2758. printk(KERN_ERR
  2759. "generic_make_request: Trying to access "
  2760. "nonexistent block-device %s (%Lu)\n",
  2761. bdevname(bio->bi_bdev, b),
  2762. (long long) bio->bi_sector);
  2763. end_io:
  2764. bio_endio(bio, err);
  2765. break;
  2766. }
  2767. if (unlikely(nr_sectors > q->max_hw_sectors)) {
  2768. printk("bio too big device %s (%u > %u)\n",
  2769. bdevname(bio->bi_bdev, b),
  2770. bio_sectors(bio),
  2771. q->max_hw_sectors);
  2772. goto end_io;
  2773. }
  2774. if (unlikely(test_bit(QUEUE_FLAG_DEAD, &q->queue_flags)))
  2775. goto end_io;
  2776. if (should_fail_request(bio))
  2777. goto end_io;
  2778. /*
  2779. * If this device has partitions, remap block n
  2780. * of partition p to block n+start(p) of the disk.
  2781. */
  2782. blk_partition_remap(bio);
  2783. if (old_sector != -1)
  2784. blk_add_trace_remap(q, bio, old_dev, bio->bi_sector,
  2785. old_sector);
  2786. blk_add_trace_bio(q, bio, BLK_TA_QUEUE);
  2787. old_sector = bio->bi_sector;
  2788. old_dev = bio->bi_bdev->bd_dev;
  2789. if (bio_check_eod(bio, nr_sectors))
  2790. goto end_io;
  2791. if (bio_empty_barrier(bio) && !q->prepare_flush_fn) {
  2792. err = -EOPNOTSUPP;
  2793. goto end_io;
  2794. }
  2795. ret = q->make_request_fn(q, bio);
  2796. } while (ret);
  2797. }
  2798. /*
  2799. * We only want one ->make_request_fn to be active at a time,
  2800. * else stack usage with stacked devices could be a problem.
  2801. * So use current->bio_{list,tail} to keep a list of requests
  2802. * submited by a make_request_fn function.
  2803. * current->bio_tail is also used as a flag to say if
  2804. * generic_make_request is currently active in this task or not.
  2805. * If it is NULL, then no make_request is active. If it is non-NULL,
  2806. * then a make_request is active, and new requests should be added
  2807. * at the tail
  2808. */
  2809. void generic_make_request(struct bio *bio)
  2810. {
  2811. if (current->bio_tail) {
  2812. /* make_request is active */
  2813. *(current->bio_tail) = bio;
  2814. bio->bi_next = NULL;
  2815. current->bio_tail = &bio->bi_next;
  2816. return;
  2817. }
  2818. /* following loop may be a bit non-obvious, and so deserves some
  2819. * explanation.
  2820. * Before entering the loop, bio->bi_next is NULL (as all callers
  2821. * ensure that) so we have a list with a single bio.
  2822. * We pretend that we have just taken it off a longer list, so
  2823. * we assign bio_list to the next (which is NULL) and bio_tail
  2824. * to &bio_list, thus initialising the bio_list of new bios to be
  2825. * added. __generic_make_request may indeed add some more bios
  2826. * through a recursive call to generic_make_request. If it
  2827. * did, we find a non-NULL value in bio_list and re-enter the loop
  2828. * from the top. In this case we really did just take the bio
  2829. * of the top of the list (no pretending) and so fixup bio_list and
  2830. * bio_tail or bi_next, and call into __generic_make_request again.
  2831. *
  2832. * The loop was structured like this to make only one call to
  2833. * __generic_make_request (which is important as it is large and
  2834. * inlined) and to keep the structure simple.
  2835. */
  2836. BUG_ON(bio->bi_next);
  2837. do {
  2838. current->bio_list = bio->bi_next;
  2839. if (bio->bi_next == NULL)
  2840. current->bio_tail = &current->bio_list;
  2841. else
  2842. bio->bi_next = NULL;
  2843. __generic_make_request(bio);
  2844. bio = current->bio_list;
  2845. } while (bio);
  2846. current->bio_tail = NULL; /* deactivate */
  2847. }
  2848. EXPORT_SYMBOL(generic_make_request);
  2849. /**
  2850. * submit_bio: submit a bio to the block device layer for I/O
  2851. * @rw: whether to %READ or %WRITE, or maybe to %READA (read ahead)
  2852. * @bio: The &struct bio which describes the I/O
  2853. *
  2854. * submit_bio() is very similar in purpose to generic_make_request(), and
  2855. * uses that function to do most of the work. Both are fairly rough
  2856. * interfaces, @bio must be presetup and ready for I/O.
  2857. *
  2858. */
  2859. void submit_bio(int rw, struct bio *bio)
  2860. {
  2861. int count = bio_sectors(bio);
  2862. bio->bi_rw |= rw;
  2863. /*
  2864. * If it's a regular read/write or a barrier with data attached,
  2865. * go through the normal accounting stuff before submission.
  2866. */
  2867. if (!bio_empty_barrier(bio)) {
  2868. BIO_BUG_ON(!bio->bi_size);
  2869. BIO_BUG_ON(!bio->bi_io_vec);
  2870. if (rw & WRITE) {
  2871. count_vm_events(PGPGOUT, count);
  2872. } else {
  2873. task_io_account_read(bio->bi_size);
  2874. count_vm_events(PGPGIN, count);
  2875. }
  2876. if (unlikely(block_dump)) {
  2877. char b[BDEVNAME_SIZE];
  2878. printk(KERN_DEBUG "%s(%d): %s block %Lu on %s\n",
  2879. current->comm, task_pid_nr(current),
  2880. (rw & WRITE) ? "WRITE" : "READ",
  2881. (unsigned long long)bio->bi_sector,
  2882. bdevname(bio->bi_bdev,b));
  2883. }
  2884. }
  2885. generic_make_request(bio);
  2886. }
  2887. EXPORT_SYMBOL(submit_bio);
  2888. static void blk_recalc_rq_sectors(struct request *rq, int nsect)
  2889. {
  2890. if (blk_fs_request(rq)) {
  2891. rq->hard_sector += nsect;
  2892. rq->hard_nr_sectors -= nsect;
  2893. /*
  2894. * Move the I/O submission pointers ahead if required.
  2895. */
  2896. if ((rq->nr_sectors >= rq->hard_nr_sectors) &&
  2897. (rq->sector <= rq->hard_sector)) {
  2898. rq->sector = rq->hard_sector;
  2899. rq->nr_sectors = rq->hard_nr_sectors;
  2900. rq->hard_cur_sectors = bio_cur_sectors(rq->bio);
  2901. rq->current_nr_sectors = rq->hard_cur_sectors;
  2902. rq->buffer = bio_data(rq->bio);
  2903. }
  2904. /*
  2905. * if total number of sectors is less than the first segment
  2906. * size, something has gone terribly wrong
  2907. */
  2908. if (rq->nr_sectors < rq->current_nr_sectors) {
  2909. printk("blk: request botched\n");
  2910. rq->nr_sectors = rq->current_nr_sectors;
  2911. }
  2912. }
  2913. }
  2914. static int __end_that_request_first(struct request *req, int uptodate,
  2915. int nr_bytes)
  2916. {
  2917. int total_bytes, bio_nbytes, error, next_idx = 0;
  2918. struct bio *bio;
  2919. blk_add_trace_rq(req->q, req, BLK_TA_COMPLETE);
  2920. /*
  2921. * extend uptodate bool to allow < 0 value to be direct io error
  2922. */
  2923. error = 0;
  2924. if (end_io_error(uptodate))
  2925. error = !uptodate ? -EIO : uptodate;
  2926. /*
  2927. * for a REQ_BLOCK_PC request, we want to carry any eventual
  2928. * sense key with us all the way through
  2929. */
  2930. if (!blk_pc_request(req))
  2931. req->errors = 0;
  2932. if (!uptodate) {
  2933. if (blk_fs_request(req) && !(req->cmd_flags & REQ_QUIET))
  2934. printk("end_request: I/O error, dev %s, sector %llu\n",
  2935. req->rq_disk ? req->rq_disk->disk_name : "?",
  2936. (unsigned long long)req->sector);
  2937. }
  2938. if (blk_fs_request(req) && req->rq_disk) {
  2939. const int rw = rq_data_dir(req);
  2940. disk_stat_add(req->rq_disk, sectors[rw], nr_bytes >> 9);
  2941. }
  2942. total_bytes = bio_nbytes = 0;
  2943. while ((bio = req->bio) != NULL) {
  2944. int nbytes;
  2945. /*
  2946. * For an empty barrier request, the low level driver must
  2947. * store a potential error location in ->sector. We pass
  2948. * that back up in ->bi_sector.
  2949. */
  2950. if (blk_empty_barrier(req))
  2951. bio->bi_sector = req->sector;
  2952. if (nr_bytes >= bio->bi_size) {
  2953. req->bio = bio->bi_next;
  2954. nbytes = bio->bi_size;
  2955. req_bio_endio(req, bio, nbytes, error);
  2956. next_idx = 0;
  2957. bio_nbytes = 0;
  2958. } else {
  2959. int idx = bio->bi_idx + next_idx;
  2960. if (unlikely(bio->bi_idx >= bio->bi_vcnt)) {
  2961. blk_dump_rq_flags(req, "__end_that");
  2962. printk("%s: bio idx %d >= vcnt %d\n",
  2963. __FUNCTION__,
  2964. bio->bi_idx, bio->bi_vcnt);
  2965. break;
  2966. }
  2967. nbytes = bio_iovec_idx(bio, idx)->bv_len;
  2968. BIO_BUG_ON(nbytes > bio->bi_size);
  2969. /*
  2970. * not a complete bvec done
  2971. */
  2972. if (unlikely(nbytes > nr_bytes)) {
  2973. bio_nbytes += nr_bytes;
  2974. total_bytes += nr_bytes;
  2975. break;
  2976. }
  2977. /*
  2978. * advance to the next vector
  2979. */
  2980. next_idx++;
  2981. bio_nbytes += nbytes;
  2982. }
  2983. total_bytes += nbytes;
  2984. nr_bytes -= nbytes;
  2985. if ((bio = req->bio)) {
  2986. /*
  2987. * end more in this run, or just return 'not-done'
  2988. */
  2989. if (unlikely(nr_bytes <= 0))
  2990. break;
  2991. }
  2992. }
  2993. /*
  2994. * completely done
  2995. */
  2996. if (!req->bio)
  2997. return 0;
  2998. /*
  2999. * if the request wasn't completed, update state
  3000. */
  3001. if (bio_nbytes) {
  3002. req_bio_endio(req, bio, bio_nbytes, error);
  3003. bio->bi_idx += next_idx;
  3004. bio_iovec(bio)->bv_offset += nr_bytes;
  3005. bio_iovec(bio)->bv_len -= nr_bytes;
  3006. }
  3007. blk_recalc_rq_sectors(req, total_bytes >> 9);
  3008. blk_recalc_rq_segments(req);
  3009. return 1;
  3010. }
  3011. /**
  3012. * end_that_request_first - end I/O on a request
  3013. * @req: the request being processed
  3014. * @uptodate: 1 for success, 0 for I/O error, < 0 for specific error
  3015. * @nr_sectors: number of sectors to end I/O on
  3016. *
  3017. * Description:
  3018. * Ends I/O on a number of sectors attached to @req, and sets it up
  3019. * for the next range of segments (if any) in the cluster.
  3020. *
  3021. * Return:
  3022. * 0 - we are done with this request, call end_that_request_last()
  3023. * 1 - still buffers pending for this request
  3024. **/
  3025. int end_that_request_first(struct request *req, int uptodate, int nr_sectors)
  3026. {
  3027. return __end_that_request_first(req, uptodate, nr_sectors << 9);
  3028. }
  3029. EXPORT_SYMBOL(end_that_request_first);
  3030. /**
  3031. * end_that_request_chunk - end I/O on a request
  3032. * @req: the request being processed
  3033. * @uptodate: 1 for success, 0 for I/O error, < 0 for specific error
  3034. * @nr_bytes: number of bytes to complete
  3035. *
  3036. * Description:
  3037. * Ends I/O on a number of bytes attached to @req, and sets it up
  3038. * for the next range of segments (if any). Like end_that_request_first(),
  3039. * but deals with bytes instead of sectors.
  3040. *
  3041. * Return:
  3042. * 0 - we are done with this request, call end_that_request_last()
  3043. * 1 - still buffers pending for this request
  3044. **/
  3045. int end_that_request_chunk(struct request *req, int uptodate, int nr_bytes)
  3046. {
  3047. return __end_that_request_first(req, uptodate, nr_bytes);
  3048. }
  3049. EXPORT_SYMBOL(end_that_request_chunk);
  3050. /*
  3051. * splice the completion data to a local structure and hand off to
  3052. * process_completion_queue() to complete the requests
  3053. */
  3054. static void blk_done_softirq(struct softirq_action *h)
  3055. {
  3056. struct list_head *cpu_list, local_list;
  3057. local_irq_disable();
  3058. cpu_list = &__get_cpu_var(blk_cpu_done);
  3059. list_replace_init(cpu_list, &local_list);
  3060. local_irq_enable();
  3061. while (!list_empty(&local_list)) {
  3062. struct request *rq = list_entry(local_list.next, struct request, donelist);
  3063. list_del_init(&rq->donelist);
  3064. rq->q->softirq_done_fn(rq);
  3065. }
  3066. }
  3067. static int __cpuinit blk_cpu_notify(struct notifier_block *self, unsigned long action,
  3068. void *hcpu)
  3069. {
  3070. /*
  3071. * If a CPU goes away, splice its entries to the current CPU
  3072. * and trigger a run of the softirq
  3073. */
  3074. if (action == CPU_DEAD || action == CPU_DEAD_FROZEN) {
  3075. int cpu = (unsigned long) hcpu;
  3076. local_irq_disable();
  3077. list_splice_init(&per_cpu(blk_cpu_done, cpu),
  3078. &__get_cpu_var(blk_cpu_done));
  3079. raise_softirq_irqoff(BLOCK_SOFTIRQ);
  3080. local_irq_enable();
  3081. }
  3082. return NOTIFY_OK;
  3083. }
  3084. static struct notifier_block blk_cpu_notifier __cpuinitdata = {
  3085. .notifier_call = blk_cpu_notify,
  3086. };
  3087. /**
  3088. * blk_complete_request - end I/O on a request
  3089. * @req: the request being processed
  3090. *
  3091. * Description:
  3092. * Ends all I/O on a request. It does not handle partial completions,
  3093. * unless the driver actually implements this in its completion callback
  3094. * through requeueing. The actual completion happens out-of-order,
  3095. * through a softirq handler. The user must have registered a completion
  3096. * callback through blk_queue_softirq_done().
  3097. **/
  3098. void blk_complete_request(struct request *req)
  3099. {
  3100. struct list_head *cpu_list;
  3101. unsigned long flags;
  3102. BUG_ON(!req->q->softirq_done_fn);
  3103. local_irq_save(flags);
  3104. cpu_list = &__get_cpu_var(blk_cpu_done);
  3105. list_add_tail(&req->donelist, cpu_list);
  3106. raise_softirq_irqoff(BLOCK_SOFTIRQ);
  3107. local_irq_restore(flags);
  3108. }
  3109. EXPORT_SYMBOL(blk_complete_request);
  3110. /*
  3111. * queue lock must be held
  3112. */
  3113. void end_that_request_last(struct request *req, int uptodate)
  3114. {
  3115. struct gendisk *disk = req->rq_disk;
  3116. int error;
  3117. /*
  3118. * extend uptodate bool to allow < 0 value to be direct io error
  3119. */
  3120. error = 0;
  3121. if (end_io_error(uptodate))
  3122. error = !uptodate ? -EIO : uptodate;
  3123. if (unlikely(laptop_mode) && blk_fs_request(req))
  3124. laptop_io_completion();
  3125. /*
  3126. * Account IO completion. bar_rq isn't accounted as a normal
  3127. * IO on queueing nor completion. Accounting the containing
  3128. * request is enough.
  3129. */
  3130. if (disk && blk_fs_request(req) && req != &req->q->bar_rq) {
  3131. unsigned long duration = jiffies - req->start_time;
  3132. const int rw = rq_data_dir(req);
  3133. __disk_stat_inc(disk, ios[rw]);
  3134. __disk_stat_add(disk, ticks[rw], duration);
  3135. disk_round_stats(disk);
  3136. disk->in_flight--;
  3137. }
  3138. if (req->end_io)
  3139. req->end_io(req, error);
  3140. else
  3141. __blk_put_request(req->q, req);
  3142. }
  3143. EXPORT_SYMBOL(end_that_request_last);
  3144. static inline void __end_request(struct request *rq, int uptodate,
  3145. unsigned int nr_bytes, int dequeue)
  3146. {
  3147. if (!end_that_request_chunk(rq, uptodate, nr_bytes)) {
  3148. if (dequeue)
  3149. blkdev_dequeue_request(rq);
  3150. add_disk_randomness(rq->rq_disk);
  3151. end_that_request_last(rq, uptodate);
  3152. }
  3153. }
  3154. /**
  3155. * blk_rq_bytes - Returns bytes left to complete in the entire request
  3156. **/
  3157. unsigned int blk_rq_bytes(struct request *rq)
  3158. {
  3159. if (blk_fs_request(rq))
  3160. return rq->hard_nr_sectors << 9;
  3161. return rq->data_len;
  3162. }
  3163. EXPORT_SYMBOL_GPL(blk_rq_bytes);
  3164. /**
  3165. * blk_rq_cur_bytes - Returns bytes left to complete in the current segment
  3166. **/
  3167. unsigned int blk_rq_cur_bytes(struct request *rq)
  3168. {
  3169. if (blk_fs_request(rq))
  3170. return rq->current_nr_sectors << 9;
  3171. if (rq->bio)
  3172. return rq->bio->bi_size;
  3173. return rq->data_len;
  3174. }
  3175. EXPORT_SYMBOL_GPL(blk_rq_cur_bytes);
  3176. /**
  3177. * end_queued_request - end all I/O on a queued request
  3178. * @rq: the request being processed
  3179. * @uptodate: error value or 0/1 uptodate flag
  3180. *
  3181. * Description:
  3182. * Ends all I/O on a request, and removes it from the block layer queues.
  3183. * Not suitable for normal IO completion, unless the driver still has
  3184. * the request attached to the block layer.
  3185. *
  3186. **/
  3187. void end_queued_request(struct request *rq, int uptodate)
  3188. {
  3189. __end_request(rq, uptodate, blk_rq_bytes(rq), 1);
  3190. }
  3191. EXPORT_SYMBOL(end_queued_request);
  3192. /**
  3193. * end_dequeued_request - end all I/O on a dequeued request
  3194. * @rq: the request being processed
  3195. * @uptodate: error value or 0/1 uptodate flag
  3196. *
  3197. * Description:
  3198. * Ends all I/O on a request. The request must already have been
  3199. * dequeued using blkdev_dequeue_request(), as is normally the case
  3200. * for most drivers.
  3201. *
  3202. **/
  3203. void end_dequeued_request(struct request *rq, int uptodate)
  3204. {
  3205. __end_request(rq, uptodate, blk_rq_bytes(rq), 0);
  3206. }
  3207. EXPORT_SYMBOL(end_dequeued_request);
  3208. /**
  3209. * end_request - end I/O on the current segment of the request
  3210. * @req: the request being processed
  3211. * @uptodate: error value or 0/1 uptodate flag
  3212. *
  3213. * Description:
  3214. * Ends I/O on the current segment of a request. If that is the only
  3215. * remaining segment, the request is also completed and freed.
  3216. *
  3217. * This is a remnant of how older block drivers handled IO completions.
  3218. * Modern drivers typically end IO on the full request in one go, unless
  3219. * they have a residual value to account for. For that case this function
  3220. * isn't really useful, unless the residual just happens to be the
  3221. * full current segment. In other words, don't use this function in new
  3222. * code. Either use end_request_completely(), or the
  3223. * end_that_request_chunk() (along with end_that_request_last()) for
  3224. * partial completions.
  3225. *
  3226. **/
  3227. void end_request(struct request *req, int uptodate)
  3228. {
  3229. __end_request(req, uptodate, req->hard_cur_sectors << 9, 1);
  3230. }
  3231. EXPORT_SYMBOL(end_request);
  3232. static void complete_request(struct request *rq, int error)
  3233. {
  3234. /*
  3235. * REMOVEME: This conversion is transitional and will be removed
  3236. * when old end_that_request_* are unexported.
  3237. */
  3238. int uptodate = 1;
  3239. if (error)
  3240. uptodate = (error == -EIO) ? 0 : error;
  3241. if (blk_rq_tagged(rq))
  3242. blk_queue_end_tag(rq->q, rq);
  3243. if (blk_queued_rq(rq))
  3244. blkdev_dequeue_request(rq);
  3245. end_that_request_last(rq, uptodate);
  3246. }
  3247. /**
  3248. * blk_end_request - Helper function for drivers to complete the request.
  3249. * @rq: the request being processed
  3250. * @error: 0 for success, < 0 for error
  3251. * @nr_bytes: number of bytes to complete
  3252. *
  3253. * Description:
  3254. * Ends I/O on a number of bytes attached to @rq.
  3255. * If @rq has leftover, sets it up for the next range of segments.
  3256. *
  3257. * Return:
  3258. * 0 - we are done with this request
  3259. * 1 - still buffers pending for this request
  3260. **/
  3261. int blk_end_request(struct request *rq, int error, int nr_bytes)
  3262. {
  3263. struct request_queue *q = rq->q;
  3264. unsigned long flags = 0UL;
  3265. /*
  3266. * REMOVEME: This conversion is transitional and will be removed
  3267. * when old end_that_request_* are unexported.
  3268. */
  3269. int uptodate = 1;
  3270. if (error)
  3271. uptodate = (error == -EIO) ? 0 : error;
  3272. if (blk_fs_request(rq) || blk_pc_request(rq)) {
  3273. if (__end_that_request_first(rq, uptodate, nr_bytes))
  3274. return 1;
  3275. }
  3276. add_disk_randomness(rq->rq_disk);
  3277. spin_lock_irqsave(q->queue_lock, flags);
  3278. complete_request(rq, error);
  3279. spin_unlock_irqrestore(q->queue_lock, flags);
  3280. return 0;
  3281. }
  3282. EXPORT_SYMBOL_GPL(blk_end_request);
  3283. /**
  3284. * __blk_end_request - Helper function for drivers to complete the request.
  3285. * @rq: the request being processed
  3286. * @error: 0 for success, < 0 for error
  3287. * @nr_bytes: number of bytes to complete
  3288. *
  3289. * Description:
  3290. * Must be called with queue lock held unlike blk_end_request().
  3291. *
  3292. * Return:
  3293. * 0 - we are done with this request
  3294. * 1 - still buffers pending for this request
  3295. **/
  3296. int __blk_end_request(struct request *rq, int error, int nr_bytes)
  3297. {
  3298. /*
  3299. * REMOVEME: This conversion is transitional and will be removed
  3300. * when old end_that_request_* are unexported.
  3301. */
  3302. int uptodate = 1;
  3303. if (error)
  3304. uptodate = (error == -EIO) ? 0 : error;
  3305. if (blk_fs_request(rq) || blk_pc_request(rq)) {
  3306. if (__end_that_request_first(rq, uptodate, nr_bytes))
  3307. return 1;
  3308. }
  3309. add_disk_randomness(rq->rq_disk);
  3310. complete_request(rq, error);
  3311. return 0;
  3312. }
  3313. EXPORT_SYMBOL_GPL(__blk_end_request);
  3314. static void blk_rq_bio_prep(struct request_queue *q, struct request *rq,
  3315. struct bio *bio)
  3316. {
  3317. /* first two bits are identical in rq->cmd_flags and bio->bi_rw */
  3318. rq->cmd_flags |= (bio->bi_rw & 3);
  3319. rq->nr_phys_segments = bio_phys_segments(q, bio);
  3320. rq->nr_hw_segments = bio_hw_segments(q, bio);
  3321. rq->current_nr_sectors = bio_cur_sectors(bio);
  3322. rq->hard_cur_sectors = rq->current_nr_sectors;
  3323. rq->hard_nr_sectors = rq->nr_sectors = bio_sectors(bio);
  3324. rq->buffer = bio_data(bio);
  3325. rq->data_len = bio->bi_size;
  3326. rq->bio = rq->biotail = bio;
  3327. if (bio->bi_bdev)
  3328. rq->rq_disk = bio->bi_bdev->bd_disk;
  3329. }
  3330. int kblockd_schedule_work(struct work_struct *work)
  3331. {
  3332. return queue_work(kblockd_workqueue, work);
  3333. }
  3334. EXPORT_SYMBOL(kblockd_schedule_work);
  3335. void kblockd_flush_work(struct work_struct *work)
  3336. {
  3337. cancel_work_sync(work);
  3338. }
  3339. EXPORT_SYMBOL(kblockd_flush_work);
  3340. int __init blk_dev_init(void)
  3341. {
  3342. int i;
  3343. kblockd_workqueue = create_workqueue("kblockd");
  3344. if (!kblockd_workqueue)
  3345. panic("Failed to create kblockd\n");
  3346. request_cachep = kmem_cache_create("blkdev_requests",
  3347. sizeof(struct request), 0, SLAB_PANIC, NULL);
  3348. requestq_cachep = kmem_cache_create("blkdev_queue",
  3349. sizeof(struct request_queue), 0, SLAB_PANIC, NULL);
  3350. iocontext_cachep = kmem_cache_create("blkdev_ioc",
  3351. sizeof(struct io_context), 0, SLAB_PANIC, NULL);
  3352. for_each_possible_cpu(i)
  3353. INIT_LIST_HEAD(&per_cpu(blk_cpu_done, i));
  3354. open_softirq(BLOCK_SOFTIRQ, blk_done_softirq, NULL);
  3355. register_hotcpu_notifier(&blk_cpu_notifier);
  3356. blk_max_low_pfn = max_low_pfn - 1;
  3357. blk_max_pfn = max_pfn - 1;
  3358. return 0;
  3359. }
  3360. /*
  3361. * IO Context helper functions
  3362. */
  3363. void put_io_context(struct io_context *ioc)
  3364. {
  3365. if (ioc == NULL)
  3366. return;
  3367. BUG_ON(atomic_read(&ioc->refcount) == 0);
  3368. if (atomic_dec_and_test(&ioc->refcount)) {
  3369. struct cfq_io_context *cic;
  3370. rcu_read_lock();
  3371. if (ioc->aic && ioc->aic->dtor)
  3372. ioc->aic->dtor(ioc->aic);
  3373. if (ioc->cic_root.rb_node != NULL) {
  3374. struct rb_node *n = rb_first(&ioc->cic_root);
  3375. cic = rb_entry(n, struct cfq_io_context, rb_node);
  3376. cic->dtor(ioc);
  3377. }
  3378. rcu_read_unlock();
  3379. kmem_cache_free(iocontext_cachep, ioc);
  3380. }
  3381. }
  3382. EXPORT_SYMBOL(put_io_context);
  3383. /* Called by the exitting task */
  3384. void exit_io_context(void)
  3385. {
  3386. struct io_context *ioc;
  3387. struct cfq_io_context *cic;
  3388. task_lock(current);
  3389. ioc = current->io_context;
  3390. current->io_context = NULL;
  3391. task_unlock(current);
  3392. ioc->task = NULL;
  3393. if (ioc->aic && ioc->aic->exit)
  3394. ioc->aic->exit(ioc->aic);
  3395. if (ioc->cic_root.rb_node != NULL) {
  3396. cic = rb_entry(rb_first(&ioc->cic_root), struct cfq_io_context, rb_node);
  3397. cic->exit(ioc);
  3398. }
  3399. put_io_context(ioc);
  3400. }
  3401. /*
  3402. * If the current task has no IO context then create one and initialise it.
  3403. * Otherwise, return its existing IO context.
  3404. *
  3405. * This returned IO context doesn't have a specifically elevated refcount,
  3406. * but since the current task itself holds a reference, the context can be
  3407. * used in general code, so long as it stays within `current` context.
  3408. */
  3409. static struct io_context *current_io_context(gfp_t gfp_flags, int node)
  3410. {
  3411. struct task_struct *tsk = current;
  3412. struct io_context *ret;
  3413. ret = tsk->io_context;
  3414. if (likely(ret))
  3415. return ret;
  3416. ret = kmem_cache_alloc_node(iocontext_cachep, gfp_flags, node);
  3417. if (ret) {
  3418. atomic_set(&ret->refcount, 1);
  3419. ret->task = current;
  3420. ret->ioprio_changed = 0;
  3421. ret->last_waited = jiffies; /* doesn't matter... */
  3422. ret->nr_batch_requests = 0; /* because this is 0 */
  3423. ret->aic = NULL;
  3424. ret->cic_root.rb_node = NULL;
  3425. ret->ioc_data = NULL;
  3426. /* make sure set_task_ioprio() sees the settings above */
  3427. smp_wmb();
  3428. tsk->io_context = ret;
  3429. }
  3430. return ret;
  3431. }
  3432. /*
  3433. * If the current task has no IO context then create one and initialise it.
  3434. * If it does have a context, take a ref on it.
  3435. *
  3436. * This is always called in the context of the task which submitted the I/O.
  3437. */
  3438. struct io_context *get_io_context(gfp_t gfp_flags, int node)
  3439. {
  3440. struct io_context *ret;
  3441. ret = current_io_context(gfp_flags, node);
  3442. if (likely(ret))
  3443. atomic_inc(&ret->refcount);
  3444. return ret;
  3445. }
  3446. EXPORT_SYMBOL(get_io_context);
  3447. void copy_io_context(struct io_context **pdst, struct io_context **psrc)
  3448. {
  3449. struct io_context *src = *psrc;
  3450. struct io_context *dst = *pdst;
  3451. if (src) {
  3452. BUG_ON(atomic_read(&src->refcount) == 0);
  3453. atomic_inc(&src->refcount);
  3454. put_io_context(dst);
  3455. *pdst = src;
  3456. }
  3457. }
  3458. EXPORT_SYMBOL(copy_io_context);
  3459. void swap_io_context(struct io_context **ioc1, struct io_context **ioc2)
  3460. {
  3461. struct io_context *temp;
  3462. temp = *ioc1;
  3463. *ioc1 = *ioc2;
  3464. *ioc2 = temp;
  3465. }
  3466. EXPORT_SYMBOL(swap_io_context);
  3467. /*
  3468. * sysfs parts below
  3469. */
  3470. struct queue_sysfs_entry {
  3471. struct attribute attr;
  3472. ssize_t (*show)(struct request_queue *, char *);
  3473. ssize_t (*store)(struct request_queue *, const char *, size_t);
  3474. };
  3475. static ssize_t
  3476. queue_var_show(unsigned int var, char *page)
  3477. {
  3478. return sprintf(page, "%d\n", var);
  3479. }
  3480. static ssize_t
  3481. queue_var_store(unsigned long *var, const char *page, size_t count)
  3482. {
  3483. char *p = (char *) page;
  3484. *var = simple_strtoul(p, &p, 10);
  3485. return count;
  3486. }
  3487. static ssize_t queue_requests_show(struct request_queue *q, char *page)
  3488. {
  3489. return queue_var_show(q->nr_requests, (page));
  3490. }
  3491. static ssize_t
  3492. queue_requests_store(struct request_queue *q, const char *page, size_t count)
  3493. {
  3494. struct request_list *rl = &q->rq;
  3495. unsigned long nr;
  3496. int ret = queue_var_store(&nr, page, count);
  3497. if (nr < BLKDEV_MIN_RQ)
  3498. nr = BLKDEV_MIN_RQ;
  3499. spin_lock_irq(q->queue_lock);
  3500. q->nr_requests = nr;
  3501. blk_queue_congestion_threshold(q);
  3502. if (rl->count[READ] >= queue_congestion_on_threshold(q))
  3503. blk_set_queue_congested(q, READ);
  3504. else if (rl->count[READ] < queue_congestion_off_threshold(q))
  3505. blk_clear_queue_congested(q, READ);
  3506. if (rl->count[WRITE] >= queue_congestion_on_threshold(q))
  3507. blk_set_queue_congested(q, WRITE);
  3508. else if (rl->count[WRITE] < queue_congestion_off_threshold(q))
  3509. blk_clear_queue_congested(q, WRITE);
  3510. if (rl->count[READ] >= q->nr_requests) {
  3511. blk_set_queue_full(q, READ);
  3512. } else if (rl->count[READ]+1 <= q->nr_requests) {
  3513. blk_clear_queue_full(q, READ);
  3514. wake_up(&rl->wait[READ]);
  3515. }
  3516. if (rl->count[WRITE] >= q->nr_requests) {
  3517. blk_set_queue_full(q, WRITE);
  3518. } else if (rl->count[WRITE]+1 <= q->nr_requests) {
  3519. blk_clear_queue_full(q, WRITE);
  3520. wake_up(&rl->wait[WRITE]);
  3521. }
  3522. spin_unlock_irq(q->queue_lock);
  3523. return ret;
  3524. }
  3525. static ssize_t queue_ra_show(struct request_queue *q, char *page)
  3526. {
  3527. int ra_kb = q->backing_dev_info.ra_pages << (PAGE_CACHE_SHIFT - 10);
  3528. return queue_var_show(ra_kb, (page));
  3529. }
  3530. static ssize_t
  3531. queue_ra_store(struct request_queue *q, const char *page, size_t count)
  3532. {
  3533. unsigned long ra_kb;
  3534. ssize_t ret = queue_var_store(&ra_kb, page, count);
  3535. spin_lock_irq(q->queue_lock);
  3536. q->backing_dev_info.ra_pages = ra_kb >> (PAGE_CACHE_SHIFT - 10);
  3537. spin_unlock_irq(q->queue_lock);
  3538. return ret;
  3539. }
  3540. static ssize_t queue_max_sectors_show(struct request_queue *q, char *page)
  3541. {
  3542. int max_sectors_kb = q->max_sectors >> 1;
  3543. return queue_var_show(max_sectors_kb, (page));
  3544. }
  3545. static ssize_t
  3546. queue_max_sectors_store(struct request_queue *q, const char *page, size_t count)
  3547. {
  3548. unsigned long max_sectors_kb,
  3549. max_hw_sectors_kb = q->max_hw_sectors >> 1,
  3550. page_kb = 1 << (PAGE_CACHE_SHIFT - 10);
  3551. ssize_t ret = queue_var_store(&max_sectors_kb, page, count);
  3552. if (max_sectors_kb > max_hw_sectors_kb || max_sectors_kb < page_kb)
  3553. return -EINVAL;
  3554. /*
  3555. * Take the queue lock to update the readahead and max_sectors
  3556. * values synchronously:
  3557. */
  3558. spin_lock_irq(q->queue_lock);
  3559. q->max_sectors = max_sectors_kb << 1;
  3560. spin_unlock_irq(q->queue_lock);
  3561. return ret;
  3562. }
  3563. static ssize_t queue_max_hw_sectors_show(struct request_queue *q, char *page)
  3564. {
  3565. int max_hw_sectors_kb = q->max_hw_sectors >> 1;
  3566. return queue_var_show(max_hw_sectors_kb, (page));
  3567. }
  3568. static struct queue_sysfs_entry queue_requests_entry = {
  3569. .attr = {.name = "nr_requests", .mode = S_IRUGO | S_IWUSR },
  3570. .show = queue_requests_show,
  3571. .store = queue_requests_store,
  3572. };
  3573. static struct queue_sysfs_entry queue_ra_entry = {
  3574. .attr = {.name = "read_ahead_kb", .mode = S_IRUGO | S_IWUSR },
  3575. .show = queue_ra_show,
  3576. .store = queue_ra_store,
  3577. };
  3578. static struct queue_sysfs_entry queue_max_sectors_entry = {
  3579. .attr = {.name = "max_sectors_kb", .mode = S_IRUGO | S_IWUSR },
  3580. .show = queue_max_sectors_show,
  3581. .store = queue_max_sectors_store,
  3582. };
  3583. static struct queue_sysfs_entry queue_max_hw_sectors_entry = {
  3584. .attr = {.name = "max_hw_sectors_kb", .mode = S_IRUGO },
  3585. .show = queue_max_hw_sectors_show,
  3586. };
  3587. static struct queue_sysfs_entry queue_iosched_entry = {
  3588. .attr = {.name = "scheduler", .mode = S_IRUGO | S_IWUSR },
  3589. .show = elv_iosched_show,
  3590. .store = elv_iosched_store,
  3591. };
  3592. static struct attribute *default_attrs[] = {
  3593. &queue_requests_entry.attr,
  3594. &queue_ra_entry.attr,
  3595. &queue_max_hw_sectors_entry.attr,
  3596. &queue_max_sectors_entry.attr,
  3597. &queue_iosched_entry.attr,
  3598. NULL,
  3599. };
  3600. #define to_queue(atr) container_of((atr), struct queue_sysfs_entry, attr)
  3601. static ssize_t
  3602. queue_attr_show(struct kobject *kobj, struct attribute *attr, char *page)
  3603. {
  3604. struct queue_sysfs_entry *entry = to_queue(attr);
  3605. struct request_queue *q =
  3606. container_of(kobj, struct request_queue, kobj);
  3607. ssize_t res;
  3608. if (!entry->show)
  3609. return -EIO;
  3610. mutex_lock(&q->sysfs_lock);
  3611. if (test_bit(QUEUE_FLAG_DEAD, &q->queue_flags)) {
  3612. mutex_unlock(&q->sysfs_lock);
  3613. return -ENOENT;
  3614. }
  3615. res = entry->show(q, page);
  3616. mutex_unlock(&q->sysfs_lock);
  3617. return res;
  3618. }
  3619. static ssize_t
  3620. queue_attr_store(struct kobject *kobj, struct attribute *attr,
  3621. const char *page, size_t length)
  3622. {
  3623. struct queue_sysfs_entry *entry = to_queue(attr);
  3624. struct request_queue *q = container_of(kobj, struct request_queue, kobj);
  3625. ssize_t res;
  3626. if (!entry->store)
  3627. return -EIO;
  3628. mutex_lock(&q->sysfs_lock);
  3629. if (test_bit(QUEUE_FLAG_DEAD, &q->queue_flags)) {
  3630. mutex_unlock(&q->sysfs_lock);
  3631. return -ENOENT;
  3632. }
  3633. res = entry->store(q, page, length);
  3634. mutex_unlock(&q->sysfs_lock);
  3635. return res;
  3636. }
  3637. static struct sysfs_ops queue_sysfs_ops = {
  3638. .show = queue_attr_show,
  3639. .store = queue_attr_store,
  3640. };
  3641. static struct kobj_type queue_ktype = {
  3642. .sysfs_ops = &queue_sysfs_ops,
  3643. .default_attrs = default_attrs,
  3644. .release = blk_release_queue,
  3645. };
  3646. int blk_register_queue(struct gendisk *disk)
  3647. {
  3648. int ret;
  3649. struct request_queue *q = disk->queue;
  3650. if (!q || !q->request_fn)
  3651. return -ENXIO;
  3652. ret = kobject_add(&q->kobj, kobject_get(&disk->dev.kobj),
  3653. "%s", "queue");
  3654. if (ret < 0)
  3655. return ret;
  3656. kobject_uevent(&q->kobj, KOBJ_ADD);
  3657. ret = elv_register_queue(q);
  3658. if (ret) {
  3659. kobject_uevent(&q->kobj, KOBJ_REMOVE);
  3660. kobject_del(&q->kobj);
  3661. return ret;
  3662. }
  3663. return 0;
  3664. }
  3665. void blk_unregister_queue(struct gendisk *disk)
  3666. {
  3667. struct request_queue *q = disk->queue;
  3668. if (q && q->request_fn) {
  3669. elv_unregister_queue(q);
  3670. kobject_uevent(&q->kobj, KOBJ_REMOVE);
  3671. kobject_del(&q->kobj);
  3672. kobject_put(&disk->dev.kobj);
  3673. }
  3674. }