ll_rw_blk.c 98 KB

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