ll_rw_blk.c 104 KB

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