zfcp_fsf.c 72 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559
  1. /*
  2. * zfcp device driver
  3. *
  4. * Implementation of FSF commands.
  5. *
  6. * Copyright IBM Corporation 2002, 2009
  7. */
  8. #define KMSG_COMPONENT "zfcp"
  9. #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
  10. #include <linux/blktrace_api.h>
  11. #include "zfcp_ext.h"
  12. #define ZFCP_REQ_AUTO_CLEANUP 0x00000002
  13. #define ZFCP_REQ_NO_QTCB 0x00000008
  14. static void zfcp_fsf_request_timeout_handler(unsigned long data)
  15. {
  16. struct zfcp_adapter *adapter = (struct zfcp_adapter *) data;
  17. zfcp_erp_adapter_reopen(adapter, ZFCP_STATUS_COMMON_ERP_FAILED,
  18. "fsrth_1", NULL);
  19. }
  20. static void zfcp_fsf_start_timer(struct zfcp_fsf_req *fsf_req,
  21. unsigned long timeout)
  22. {
  23. fsf_req->timer.function = zfcp_fsf_request_timeout_handler;
  24. fsf_req->timer.data = (unsigned long) fsf_req->adapter;
  25. fsf_req->timer.expires = jiffies + timeout;
  26. add_timer(&fsf_req->timer);
  27. }
  28. static void zfcp_fsf_start_erp_timer(struct zfcp_fsf_req *fsf_req)
  29. {
  30. BUG_ON(!fsf_req->erp_action);
  31. fsf_req->timer.function = zfcp_erp_timeout_handler;
  32. fsf_req->timer.data = (unsigned long) fsf_req->erp_action;
  33. fsf_req->timer.expires = jiffies + 30 * HZ;
  34. add_timer(&fsf_req->timer);
  35. }
  36. /* association between FSF command and FSF QTCB type */
  37. static u32 fsf_qtcb_type[] = {
  38. [FSF_QTCB_FCP_CMND] = FSF_IO_COMMAND,
  39. [FSF_QTCB_ABORT_FCP_CMND] = FSF_SUPPORT_COMMAND,
  40. [FSF_QTCB_OPEN_PORT_WITH_DID] = FSF_SUPPORT_COMMAND,
  41. [FSF_QTCB_OPEN_LUN] = FSF_SUPPORT_COMMAND,
  42. [FSF_QTCB_CLOSE_LUN] = FSF_SUPPORT_COMMAND,
  43. [FSF_QTCB_CLOSE_PORT] = FSF_SUPPORT_COMMAND,
  44. [FSF_QTCB_CLOSE_PHYSICAL_PORT] = FSF_SUPPORT_COMMAND,
  45. [FSF_QTCB_SEND_ELS] = FSF_SUPPORT_COMMAND,
  46. [FSF_QTCB_SEND_GENERIC] = FSF_SUPPORT_COMMAND,
  47. [FSF_QTCB_EXCHANGE_CONFIG_DATA] = FSF_CONFIG_COMMAND,
  48. [FSF_QTCB_EXCHANGE_PORT_DATA] = FSF_PORT_COMMAND,
  49. [FSF_QTCB_DOWNLOAD_CONTROL_FILE] = FSF_SUPPORT_COMMAND,
  50. [FSF_QTCB_UPLOAD_CONTROL_FILE] = FSF_SUPPORT_COMMAND
  51. };
  52. static void zfcp_act_eval_err(struct zfcp_adapter *adapter, u32 table)
  53. {
  54. u16 subtable = table >> 16;
  55. u16 rule = table & 0xffff;
  56. const char *act_type[] = { "unknown", "OS", "WWPN", "DID", "LUN" };
  57. if (subtable && subtable < ARRAY_SIZE(act_type))
  58. dev_warn(&adapter->ccw_device->dev,
  59. "Access denied according to ACT rule type %s, "
  60. "rule %d\n", act_type[subtable], rule);
  61. }
  62. static void zfcp_fsf_access_denied_port(struct zfcp_fsf_req *req,
  63. struct zfcp_port *port)
  64. {
  65. struct fsf_qtcb_header *header = &req->qtcb->header;
  66. dev_warn(&req->adapter->ccw_device->dev,
  67. "Access denied to port 0x%016Lx\n",
  68. (unsigned long long)port->wwpn);
  69. zfcp_act_eval_err(req->adapter, header->fsf_status_qual.halfword[0]);
  70. zfcp_act_eval_err(req->adapter, header->fsf_status_qual.halfword[1]);
  71. zfcp_erp_port_access_denied(port, "fspad_1", req);
  72. req->status |= ZFCP_STATUS_FSFREQ_ERROR;
  73. }
  74. static void zfcp_fsf_access_denied_unit(struct zfcp_fsf_req *req,
  75. struct zfcp_unit *unit)
  76. {
  77. struct fsf_qtcb_header *header = &req->qtcb->header;
  78. dev_warn(&req->adapter->ccw_device->dev,
  79. "Access denied to unit 0x%016Lx on port 0x%016Lx\n",
  80. (unsigned long long)unit->fcp_lun,
  81. (unsigned long long)unit->port->wwpn);
  82. zfcp_act_eval_err(req->adapter, header->fsf_status_qual.halfword[0]);
  83. zfcp_act_eval_err(req->adapter, header->fsf_status_qual.halfword[1]);
  84. zfcp_erp_unit_access_denied(unit, "fsuad_1", req);
  85. req->status |= ZFCP_STATUS_FSFREQ_ERROR;
  86. }
  87. static void zfcp_fsf_class_not_supp(struct zfcp_fsf_req *req)
  88. {
  89. dev_err(&req->adapter->ccw_device->dev, "FCP device not "
  90. "operational because of an unsupported FC class\n");
  91. zfcp_erp_adapter_shutdown(req->adapter, 0, "fscns_1", req);
  92. req->status |= ZFCP_STATUS_FSFREQ_ERROR;
  93. }
  94. /**
  95. * zfcp_fsf_req_free - free memory used by fsf request
  96. * @fsf_req: pointer to struct zfcp_fsf_req
  97. */
  98. void zfcp_fsf_req_free(struct zfcp_fsf_req *req)
  99. {
  100. if (likely(req->pool)) {
  101. mempool_free(req, req->pool);
  102. return;
  103. }
  104. if (req->qtcb) {
  105. kmem_cache_free(zfcp_data.fsf_req_qtcb_cache, req);
  106. return;
  107. }
  108. }
  109. /**
  110. * zfcp_fsf_req_dismiss_all - dismiss all fsf requests
  111. * @adapter: pointer to struct zfcp_adapter
  112. *
  113. * Never ever call this without shutting down the adapter first.
  114. * Otherwise the adapter would continue using and corrupting s390 storage.
  115. * Included BUG_ON() call to ensure this is done.
  116. * ERP is supposed to be the only user of this function.
  117. */
  118. void zfcp_fsf_req_dismiss_all(struct zfcp_adapter *adapter)
  119. {
  120. struct zfcp_fsf_req *req, *tmp;
  121. unsigned long flags;
  122. LIST_HEAD(remove_queue);
  123. unsigned int i;
  124. BUG_ON(atomic_read(&adapter->status) & ZFCP_STATUS_ADAPTER_QDIOUP);
  125. spin_lock_irqsave(&adapter->req_list_lock, flags);
  126. for (i = 0; i < REQUEST_LIST_SIZE; i++)
  127. list_splice_init(&adapter->req_list[i], &remove_queue);
  128. spin_unlock_irqrestore(&adapter->req_list_lock, flags);
  129. list_for_each_entry_safe(req, tmp, &remove_queue, list) {
  130. list_del(&req->list);
  131. req->status |= ZFCP_STATUS_FSFREQ_DISMISSED;
  132. zfcp_fsf_req_complete(req);
  133. }
  134. }
  135. static void zfcp_fsf_status_read_port_closed(struct zfcp_fsf_req *req)
  136. {
  137. struct fsf_status_read_buffer *sr_buf = req->data;
  138. struct zfcp_adapter *adapter = req->adapter;
  139. struct zfcp_port *port;
  140. int d_id = sr_buf->d_id & ZFCP_DID_MASK;
  141. unsigned long flags;
  142. read_lock_irqsave(&zfcp_data.config_lock, flags);
  143. list_for_each_entry(port, &adapter->port_list_head, list)
  144. if (port->d_id == d_id) {
  145. read_unlock_irqrestore(&zfcp_data.config_lock, flags);
  146. zfcp_erp_port_reopen(port, 0, "fssrpc1", req);
  147. return;
  148. }
  149. read_unlock_irqrestore(&zfcp_data.config_lock, flags);
  150. }
  151. static void zfcp_fsf_link_down_info_eval(struct zfcp_fsf_req *req, char *id,
  152. struct fsf_link_down_info *link_down)
  153. {
  154. struct zfcp_adapter *adapter = req->adapter;
  155. unsigned long flags;
  156. if (atomic_read(&adapter->status) & ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED)
  157. return;
  158. atomic_set_mask(ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED, &adapter->status);
  159. read_lock_irqsave(&zfcp_data.config_lock, flags);
  160. zfcp_scsi_schedule_rports_block(adapter);
  161. read_unlock_irqrestore(&zfcp_data.config_lock, flags);
  162. if (!link_down)
  163. goto out;
  164. switch (link_down->error_code) {
  165. case FSF_PSQ_LINK_NO_LIGHT:
  166. dev_warn(&req->adapter->ccw_device->dev,
  167. "There is no light signal from the local "
  168. "fibre channel cable\n");
  169. break;
  170. case FSF_PSQ_LINK_WRAP_PLUG:
  171. dev_warn(&req->adapter->ccw_device->dev,
  172. "There is a wrap plug instead of a fibre "
  173. "channel cable\n");
  174. break;
  175. case FSF_PSQ_LINK_NO_FCP:
  176. dev_warn(&req->adapter->ccw_device->dev,
  177. "The adjacent fibre channel node does not "
  178. "support FCP\n");
  179. break;
  180. case FSF_PSQ_LINK_FIRMWARE_UPDATE:
  181. dev_warn(&req->adapter->ccw_device->dev,
  182. "The FCP device is suspended because of a "
  183. "firmware update\n");
  184. break;
  185. case FSF_PSQ_LINK_INVALID_WWPN:
  186. dev_warn(&req->adapter->ccw_device->dev,
  187. "The FCP device detected a WWPN that is "
  188. "duplicate or not valid\n");
  189. break;
  190. case FSF_PSQ_LINK_NO_NPIV_SUPPORT:
  191. dev_warn(&req->adapter->ccw_device->dev,
  192. "The fibre channel fabric does not support NPIV\n");
  193. break;
  194. case FSF_PSQ_LINK_NO_FCP_RESOURCES:
  195. dev_warn(&req->adapter->ccw_device->dev,
  196. "The FCP adapter cannot support more NPIV ports\n");
  197. break;
  198. case FSF_PSQ_LINK_NO_FABRIC_RESOURCES:
  199. dev_warn(&req->adapter->ccw_device->dev,
  200. "The adjacent switch cannot support "
  201. "more NPIV ports\n");
  202. break;
  203. case FSF_PSQ_LINK_FABRIC_LOGIN_UNABLE:
  204. dev_warn(&req->adapter->ccw_device->dev,
  205. "The FCP adapter could not log in to the "
  206. "fibre channel fabric\n");
  207. break;
  208. case FSF_PSQ_LINK_WWPN_ASSIGNMENT_CORRUPTED:
  209. dev_warn(&req->adapter->ccw_device->dev,
  210. "The WWPN assignment file on the FCP adapter "
  211. "has been damaged\n");
  212. break;
  213. case FSF_PSQ_LINK_MODE_TABLE_CURRUPTED:
  214. dev_warn(&req->adapter->ccw_device->dev,
  215. "The mode table on the FCP adapter "
  216. "has been damaged\n");
  217. break;
  218. case FSF_PSQ_LINK_NO_WWPN_ASSIGNMENT:
  219. dev_warn(&req->adapter->ccw_device->dev,
  220. "All NPIV ports on the FCP adapter have "
  221. "been assigned\n");
  222. break;
  223. default:
  224. dev_warn(&req->adapter->ccw_device->dev,
  225. "The link between the FCP adapter and "
  226. "the FC fabric is down\n");
  227. }
  228. out:
  229. zfcp_erp_adapter_failed(adapter, id, req);
  230. }
  231. static void zfcp_fsf_status_read_link_down(struct zfcp_fsf_req *req)
  232. {
  233. struct fsf_status_read_buffer *sr_buf = req->data;
  234. struct fsf_link_down_info *ldi =
  235. (struct fsf_link_down_info *) &sr_buf->payload;
  236. switch (sr_buf->status_subtype) {
  237. case FSF_STATUS_READ_SUB_NO_PHYSICAL_LINK:
  238. zfcp_fsf_link_down_info_eval(req, "fssrld1", ldi);
  239. break;
  240. case FSF_STATUS_READ_SUB_FDISC_FAILED:
  241. zfcp_fsf_link_down_info_eval(req, "fssrld2", ldi);
  242. break;
  243. case FSF_STATUS_READ_SUB_FIRMWARE_UPDATE:
  244. zfcp_fsf_link_down_info_eval(req, "fssrld3", NULL);
  245. };
  246. }
  247. static void zfcp_fsf_status_read_handler(struct zfcp_fsf_req *req)
  248. {
  249. struct zfcp_adapter *adapter = req->adapter;
  250. struct fsf_status_read_buffer *sr_buf = req->data;
  251. if (req->status & ZFCP_STATUS_FSFREQ_DISMISSED) {
  252. zfcp_hba_dbf_event_fsf_unsol("dism", adapter, sr_buf);
  253. mempool_free(sr_buf, adapter->pool.data_status_read);
  254. zfcp_fsf_req_free(req);
  255. return;
  256. }
  257. zfcp_hba_dbf_event_fsf_unsol("read", adapter, sr_buf);
  258. switch (sr_buf->status_type) {
  259. case FSF_STATUS_READ_PORT_CLOSED:
  260. zfcp_fsf_status_read_port_closed(req);
  261. break;
  262. case FSF_STATUS_READ_INCOMING_ELS:
  263. zfcp_fc_incoming_els(req);
  264. break;
  265. case FSF_STATUS_READ_SENSE_DATA_AVAIL:
  266. break;
  267. case FSF_STATUS_READ_BIT_ERROR_THRESHOLD:
  268. dev_warn(&adapter->ccw_device->dev,
  269. "The error threshold for checksum statistics "
  270. "has been exceeded\n");
  271. zfcp_hba_dbf_event_berr(adapter, req);
  272. break;
  273. case FSF_STATUS_READ_LINK_DOWN:
  274. zfcp_fsf_status_read_link_down(req);
  275. break;
  276. case FSF_STATUS_READ_LINK_UP:
  277. dev_info(&adapter->ccw_device->dev,
  278. "The local link has been restored\n");
  279. /* All ports should be marked as ready to run again */
  280. zfcp_erp_modify_adapter_status(adapter, "fssrh_1", NULL,
  281. ZFCP_STATUS_COMMON_RUNNING,
  282. ZFCP_SET);
  283. zfcp_erp_adapter_reopen(adapter,
  284. ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED |
  285. ZFCP_STATUS_COMMON_ERP_FAILED,
  286. "fssrh_2", req);
  287. break;
  288. case FSF_STATUS_READ_NOTIFICATION_LOST:
  289. if (sr_buf->status_subtype & FSF_STATUS_READ_SUB_ACT_UPDATED)
  290. zfcp_erp_adapter_access_changed(adapter, "fssrh_3",
  291. req);
  292. if (sr_buf->status_subtype & FSF_STATUS_READ_SUB_INCOMING_ELS)
  293. schedule_work(&adapter->scan_work);
  294. break;
  295. case FSF_STATUS_READ_CFDC_UPDATED:
  296. zfcp_erp_adapter_access_changed(adapter, "fssrh_4", req);
  297. break;
  298. case FSF_STATUS_READ_FEATURE_UPDATE_ALERT:
  299. adapter->adapter_features = sr_buf->payload.word[0];
  300. break;
  301. }
  302. mempool_free(sr_buf, adapter->pool.data_status_read);
  303. zfcp_fsf_req_free(req);
  304. atomic_inc(&adapter->stat_miss);
  305. queue_work(zfcp_data.work_queue, &adapter->stat_work);
  306. }
  307. static void zfcp_fsf_fsfstatus_qual_eval(struct zfcp_fsf_req *req)
  308. {
  309. switch (req->qtcb->header.fsf_status_qual.word[0]) {
  310. case FSF_SQ_FCP_RSP_AVAILABLE:
  311. case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
  312. case FSF_SQ_NO_RETRY_POSSIBLE:
  313. case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
  314. return;
  315. case FSF_SQ_COMMAND_ABORTED:
  316. req->status |= ZFCP_STATUS_FSFREQ_ABORTED;
  317. break;
  318. case FSF_SQ_NO_RECOM:
  319. dev_err(&req->adapter->ccw_device->dev,
  320. "The FCP adapter reported a problem "
  321. "that cannot be recovered\n");
  322. zfcp_erp_adapter_shutdown(req->adapter, 0, "fsfsqe1", req);
  323. break;
  324. }
  325. /* all non-return stats set FSFREQ_ERROR*/
  326. req->status |= ZFCP_STATUS_FSFREQ_ERROR;
  327. }
  328. static void zfcp_fsf_fsfstatus_eval(struct zfcp_fsf_req *req)
  329. {
  330. if (unlikely(req->status & ZFCP_STATUS_FSFREQ_ERROR))
  331. return;
  332. switch (req->qtcb->header.fsf_status) {
  333. case FSF_UNKNOWN_COMMAND:
  334. dev_err(&req->adapter->ccw_device->dev,
  335. "The FCP adapter does not recognize the command 0x%x\n",
  336. req->qtcb->header.fsf_command);
  337. zfcp_erp_adapter_shutdown(req->adapter, 0, "fsfse_1", req);
  338. req->status |= ZFCP_STATUS_FSFREQ_ERROR;
  339. break;
  340. case FSF_ADAPTER_STATUS_AVAILABLE:
  341. zfcp_fsf_fsfstatus_qual_eval(req);
  342. break;
  343. }
  344. }
  345. static void zfcp_fsf_protstatus_eval(struct zfcp_fsf_req *req)
  346. {
  347. struct zfcp_adapter *adapter = req->adapter;
  348. struct fsf_qtcb *qtcb = req->qtcb;
  349. union fsf_prot_status_qual *psq = &qtcb->prefix.prot_status_qual;
  350. zfcp_hba_dbf_event_fsf_response(req);
  351. if (req->status & ZFCP_STATUS_FSFREQ_DISMISSED) {
  352. req->status |= ZFCP_STATUS_FSFREQ_ERROR |
  353. ZFCP_STATUS_FSFREQ_RETRY; /* only for SCSI cmnds. */
  354. return;
  355. }
  356. switch (qtcb->prefix.prot_status) {
  357. case FSF_PROT_GOOD:
  358. case FSF_PROT_FSF_STATUS_PRESENTED:
  359. return;
  360. case FSF_PROT_QTCB_VERSION_ERROR:
  361. dev_err(&adapter->ccw_device->dev,
  362. "QTCB version 0x%x not supported by FCP adapter "
  363. "(0x%x to 0x%x)\n", FSF_QTCB_CURRENT_VERSION,
  364. psq->word[0], psq->word[1]);
  365. zfcp_erp_adapter_shutdown(adapter, 0, "fspse_1", req);
  366. break;
  367. case FSF_PROT_ERROR_STATE:
  368. case FSF_PROT_SEQ_NUMB_ERROR:
  369. zfcp_erp_adapter_reopen(adapter, 0, "fspse_2", req);
  370. req->status |= ZFCP_STATUS_FSFREQ_RETRY;
  371. break;
  372. case FSF_PROT_UNSUPP_QTCB_TYPE:
  373. dev_err(&adapter->ccw_device->dev,
  374. "The QTCB type is not supported by the FCP adapter\n");
  375. zfcp_erp_adapter_shutdown(adapter, 0, "fspse_3", req);
  376. break;
  377. case FSF_PROT_HOST_CONNECTION_INITIALIZING:
  378. atomic_set_mask(ZFCP_STATUS_ADAPTER_HOST_CON_INIT,
  379. &adapter->status);
  380. break;
  381. case FSF_PROT_DUPLICATE_REQUEST_ID:
  382. dev_err(&adapter->ccw_device->dev,
  383. "0x%Lx is an ambiguous request identifier\n",
  384. (unsigned long long)qtcb->bottom.support.req_handle);
  385. zfcp_erp_adapter_shutdown(adapter, 0, "fspse_4", req);
  386. break;
  387. case FSF_PROT_LINK_DOWN:
  388. zfcp_fsf_link_down_info_eval(req, "fspse_5",
  389. &psq->link_down_info);
  390. /* FIXME: reopening adapter now? better wait for link up */
  391. zfcp_erp_adapter_reopen(adapter, 0, "fspse_6", req);
  392. break;
  393. case FSF_PROT_REEST_QUEUE:
  394. /* All ports should be marked as ready to run again */
  395. zfcp_erp_modify_adapter_status(adapter, "fspse_7", NULL,
  396. ZFCP_STATUS_COMMON_RUNNING,
  397. ZFCP_SET);
  398. zfcp_erp_adapter_reopen(adapter,
  399. ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED |
  400. ZFCP_STATUS_COMMON_ERP_FAILED,
  401. "fspse_8", req);
  402. break;
  403. default:
  404. dev_err(&adapter->ccw_device->dev,
  405. "0x%x is not a valid transfer protocol status\n",
  406. qtcb->prefix.prot_status);
  407. zfcp_erp_adapter_shutdown(adapter, 0, "fspse_9", req);
  408. }
  409. req->status |= ZFCP_STATUS_FSFREQ_ERROR;
  410. }
  411. /**
  412. * zfcp_fsf_req_complete - process completion of a FSF request
  413. * @fsf_req: The FSF request that has been completed.
  414. *
  415. * When a request has been completed either from the FCP adapter,
  416. * or it has been dismissed due to a queue shutdown, this function
  417. * is called to process the completion status and trigger further
  418. * events related to the FSF request.
  419. */
  420. void zfcp_fsf_req_complete(struct zfcp_fsf_req *req)
  421. {
  422. if (unlikely(req->fsf_command == FSF_QTCB_UNSOLICITED_STATUS)) {
  423. zfcp_fsf_status_read_handler(req);
  424. return;
  425. }
  426. del_timer(&req->timer);
  427. zfcp_fsf_protstatus_eval(req);
  428. zfcp_fsf_fsfstatus_eval(req);
  429. req->handler(req);
  430. if (req->erp_action)
  431. zfcp_erp_notify(req->erp_action, 0);
  432. req->status |= ZFCP_STATUS_FSFREQ_COMPLETED;
  433. if (likely(req->status & ZFCP_STATUS_FSFREQ_CLEANUP))
  434. zfcp_fsf_req_free(req);
  435. else
  436. /* notify initiator waiting for the requests completion */
  437. /*
  438. * FIXME: Race! We must not access fsf_req here as it might have been
  439. * cleaned up already due to the set ZFCP_STATUS_FSFREQ_COMPLETED
  440. * flag. It's an improbable case. But, we have the same paranoia for
  441. * the cleanup flag already.
  442. * Might better be handled using complete()?
  443. * (setting the flag and doing wakeup ought to be atomic
  444. * with regard to checking the flag as long as waitqueue is
  445. * part of the to be released structure)
  446. */
  447. wake_up(&req->completion_wq);
  448. }
  449. static int zfcp_fsf_exchange_config_evaluate(struct zfcp_fsf_req *req)
  450. {
  451. struct fsf_qtcb_bottom_config *bottom;
  452. struct zfcp_adapter *adapter = req->adapter;
  453. struct Scsi_Host *shost = adapter->scsi_host;
  454. bottom = &req->qtcb->bottom.config;
  455. if (req->data)
  456. memcpy(req->data, bottom, sizeof(*bottom));
  457. fc_host_node_name(shost) = bottom->nport_serv_param.wwnn;
  458. fc_host_port_name(shost) = bottom->nport_serv_param.wwpn;
  459. fc_host_port_id(shost) = bottom->s_id & ZFCP_DID_MASK;
  460. fc_host_speed(shost) = bottom->fc_link_speed;
  461. fc_host_supported_classes(shost) = FC_COS_CLASS2 | FC_COS_CLASS3;
  462. adapter->hydra_version = bottom->adapter_type;
  463. adapter->timer_ticks = bottom->timer_interval;
  464. if (fc_host_permanent_port_name(shost) == -1)
  465. fc_host_permanent_port_name(shost) = fc_host_port_name(shost);
  466. switch (bottom->fc_topology) {
  467. case FSF_TOPO_P2P:
  468. adapter->peer_d_id = bottom->peer_d_id & ZFCP_DID_MASK;
  469. adapter->peer_wwpn = bottom->plogi_payload.wwpn;
  470. adapter->peer_wwnn = bottom->plogi_payload.wwnn;
  471. fc_host_port_type(shost) = FC_PORTTYPE_PTP;
  472. break;
  473. case FSF_TOPO_FABRIC:
  474. fc_host_port_type(shost) = FC_PORTTYPE_NPORT;
  475. break;
  476. case FSF_TOPO_AL:
  477. fc_host_port_type(shost) = FC_PORTTYPE_NLPORT;
  478. /* fall through */
  479. default:
  480. dev_err(&adapter->ccw_device->dev,
  481. "Unknown or unsupported arbitrated loop "
  482. "fibre channel topology detected\n");
  483. zfcp_erp_adapter_shutdown(adapter, 0, "fsece_1", req);
  484. return -EIO;
  485. }
  486. return 0;
  487. }
  488. static void zfcp_fsf_exchange_config_data_handler(struct zfcp_fsf_req *req)
  489. {
  490. struct zfcp_adapter *adapter = req->adapter;
  491. struct fsf_qtcb *qtcb = req->qtcb;
  492. struct fsf_qtcb_bottom_config *bottom = &qtcb->bottom.config;
  493. struct Scsi_Host *shost = adapter->scsi_host;
  494. if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
  495. return;
  496. adapter->fsf_lic_version = bottom->lic_version;
  497. adapter->adapter_features = bottom->adapter_features;
  498. adapter->connection_features = bottom->connection_features;
  499. adapter->peer_wwpn = 0;
  500. adapter->peer_wwnn = 0;
  501. adapter->peer_d_id = 0;
  502. switch (qtcb->header.fsf_status) {
  503. case FSF_GOOD:
  504. if (zfcp_fsf_exchange_config_evaluate(req))
  505. return;
  506. if (bottom->max_qtcb_size < sizeof(struct fsf_qtcb)) {
  507. dev_err(&adapter->ccw_device->dev,
  508. "FCP adapter maximum QTCB size (%d bytes) "
  509. "is too small\n",
  510. bottom->max_qtcb_size);
  511. zfcp_erp_adapter_shutdown(adapter, 0, "fsecdh1", req);
  512. return;
  513. }
  514. atomic_set_mask(ZFCP_STATUS_ADAPTER_XCONFIG_OK,
  515. &adapter->status);
  516. break;
  517. case FSF_EXCHANGE_CONFIG_DATA_INCOMPLETE:
  518. fc_host_node_name(shost) = 0;
  519. fc_host_port_name(shost) = 0;
  520. fc_host_port_id(shost) = 0;
  521. fc_host_speed(shost) = FC_PORTSPEED_UNKNOWN;
  522. fc_host_port_type(shost) = FC_PORTTYPE_UNKNOWN;
  523. adapter->hydra_version = 0;
  524. atomic_set_mask(ZFCP_STATUS_ADAPTER_XCONFIG_OK,
  525. &adapter->status);
  526. zfcp_fsf_link_down_info_eval(req, "fsecdh2",
  527. &qtcb->header.fsf_status_qual.link_down_info);
  528. break;
  529. default:
  530. zfcp_erp_adapter_shutdown(adapter, 0, "fsecdh3", req);
  531. return;
  532. }
  533. if (adapter->adapter_features & FSF_FEATURE_HBAAPI_MANAGEMENT) {
  534. adapter->hardware_version = bottom->hardware_version;
  535. memcpy(fc_host_serial_number(shost), bottom->serial_number,
  536. min(FC_SERIAL_NUMBER_SIZE, 17));
  537. EBCASC(fc_host_serial_number(shost),
  538. min(FC_SERIAL_NUMBER_SIZE, 17));
  539. }
  540. if (FSF_QTCB_CURRENT_VERSION < bottom->low_qtcb_version) {
  541. dev_err(&adapter->ccw_device->dev,
  542. "The FCP adapter only supports newer "
  543. "control block versions\n");
  544. zfcp_erp_adapter_shutdown(adapter, 0, "fsecdh4", req);
  545. return;
  546. }
  547. if (FSF_QTCB_CURRENT_VERSION > bottom->high_qtcb_version) {
  548. dev_err(&adapter->ccw_device->dev,
  549. "The FCP adapter only supports older "
  550. "control block versions\n");
  551. zfcp_erp_adapter_shutdown(adapter, 0, "fsecdh5", req);
  552. }
  553. }
  554. static void zfcp_fsf_exchange_port_evaluate(struct zfcp_fsf_req *req)
  555. {
  556. struct zfcp_adapter *adapter = req->adapter;
  557. struct fsf_qtcb_bottom_port *bottom = &req->qtcb->bottom.port;
  558. struct Scsi_Host *shost = adapter->scsi_host;
  559. if (req->data)
  560. memcpy(req->data, bottom, sizeof(*bottom));
  561. if (adapter->connection_features & FSF_FEATURE_NPIV_MODE) {
  562. fc_host_permanent_port_name(shost) = bottom->wwpn;
  563. fc_host_port_type(shost) = FC_PORTTYPE_NPIV;
  564. } else
  565. fc_host_permanent_port_name(shost) = fc_host_port_name(shost);
  566. fc_host_maxframe_size(shost) = bottom->maximum_frame_size;
  567. fc_host_supported_speeds(shost) = bottom->supported_speed;
  568. }
  569. static void zfcp_fsf_exchange_port_data_handler(struct zfcp_fsf_req *req)
  570. {
  571. struct fsf_qtcb *qtcb = req->qtcb;
  572. if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
  573. return;
  574. switch (qtcb->header.fsf_status) {
  575. case FSF_GOOD:
  576. zfcp_fsf_exchange_port_evaluate(req);
  577. break;
  578. case FSF_EXCHANGE_CONFIG_DATA_INCOMPLETE:
  579. zfcp_fsf_exchange_port_evaluate(req);
  580. zfcp_fsf_link_down_info_eval(req, "fsepdh1",
  581. &qtcb->header.fsf_status_qual.link_down_info);
  582. break;
  583. }
  584. }
  585. static int zfcp_fsf_sbal_check(struct zfcp_adapter *adapter)
  586. {
  587. struct zfcp_qdio_queue *req_q = &adapter->req_q;
  588. spin_lock_bh(&adapter->req_q_lock);
  589. if (atomic_read(&req_q->count))
  590. return 1;
  591. spin_unlock_bh(&adapter->req_q_lock);
  592. return 0;
  593. }
  594. static int zfcp_fsf_req_sbal_get(struct zfcp_adapter *adapter)
  595. {
  596. long ret;
  597. spin_unlock_bh(&adapter->req_q_lock);
  598. ret = wait_event_interruptible_timeout(adapter->request_wq,
  599. zfcp_fsf_sbal_check(adapter), 5 * HZ);
  600. if (ret > 0)
  601. return 0;
  602. if (!ret)
  603. atomic_inc(&adapter->qdio_outb_full);
  604. spin_lock_bh(&adapter->req_q_lock);
  605. return -EIO;
  606. }
  607. static struct zfcp_fsf_req *zfcp_fsf_alloc_noqtcb(mempool_t *pool)
  608. {
  609. struct zfcp_fsf_req *req;
  610. req = mempool_alloc(pool, GFP_ATOMIC);
  611. if (!req)
  612. return NULL;
  613. memset(req, 0, sizeof(*req));
  614. req->pool = pool;
  615. return req;
  616. }
  617. static struct zfcp_fsf_req *zfcp_fsf_alloc_qtcb(mempool_t *pool)
  618. {
  619. struct zfcp_fsf_req_qtcb *qtcb;
  620. if (likely(pool))
  621. qtcb = mempool_alloc(pool, GFP_ATOMIC);
  622. else
  623. qtcb = kmem_cache_alloc(zfcp_data.fsf_req_qtcb_cache,
  624. GFP_ATOMIC);
  625. if (unlikely(!qtcb))
  626. return NULL;
  627. memset(qtcb, 0, sizeof(*qtcb));
  628. qtcb->fsf_req.qtcb = &qtcb->qtcb;
  629. qtcb->fsf_req.pool = pool;
  630. return &qtcb->fsf_req;
  631. }
  632. static struct zfcp_fsf_req *zfcp_fsf_req_create(struct zfcp_adapter *adapter,
  633. u32 fsf_cmd, int req_flags,
  634. mempool_t *pool)
  635. {
  636. struct qdio_buffer_element *sbale;
  637. struct zfcp_fsf_req *req;
  638. struct zfcp_qdio_queue *req_q = &adapter->req_q;
  639. if (req_flags & ZFCP_REQ_NO_QTCB)
  640. req = zfcp_fsf_alloc_noqtcb(pool);
  641. else
  642. req = zfcp_fsf_alloc_qtcb(pool);
  643. if (unlikely(!req))
  644. return ERR_PTR(-EIO);
  645. if (adapter->req_no == 0)
  646. adapter->req_no++;
  647. INIT_LIST_HEAD(&req->list);
  648. init_timer(&req->timer);
  649. init_waitqueue_head(&req->completion_wq);
  650. req->adapter = adapter;
  651. req->fsf_command = fsf_cmd;
  652. req->req_id = adapter->req_no;
  653. req->sbal_number = 1;
  654. req->sbal_first = req_q->first;
  655. req->sbal_last = req_q->first;
  656. req->sbale_curr = 1;
  657. sbale = zfcp_qdio_sbale_req(req);
  658. sbale[0].addr = (void *) req->req_id;
  659. sbale[0].flags |= SBAL_FLAGS0_COMMAND;
  660. if (likely(req->qtcb)) {
  661. req->qtcb->prefix.req_seq_no = req->adapter->fsf_req_seq_no;
  662. req->qtcb->prefix.req_id = req->req_id;
  663. req->qtcb->prefix.ulp_info = 26;
  664. req->qtcb->prefix.qtcb_type = fsf_qtcb_type[req->fsf_command];
  665. req->qtcb->prefix.qtcb_version = FSF_QTCB_CURRENT_VERSION;
  666. req->qtcb->header.req_handle = req->req_id;
  667. req->qtcb->header.fsf_command = req->fsf_command;
  668. req->seq_no = adapter->fsf_req_seq_no;
  669. req->qtcb->prefix.req_seq_no = adapter->fsf_req_seq_no;
  670. sbale[1].addr = (void *) req->qtcb;
  671. sbale[1].length = sizeof(struct fsf_qtcb);
  672. }
  673. if (!(atomic_read(&adapter->status) & ZFCP_STATUS_ADAPTER_QDIOUP)) {
  674. zfcp_fsf_req_free(req);
  675. return ERR_PTR(-EIO);
  676. }
  677. if (likely(req_flags & ZFCP_REQ_AUTO_CLEANUP))
  678. req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
  679. return req;
  680. }
  681. static int zfcp_fsf_req_send(struct zfcp_fsf_req *req)
  682. {
  683. struct zfcp_adapter *adapter = req->adapter;
  684. unsigned long flags;
  685. int idx;
  686. int with_qtcb = (req->qtcb != NULL);
  687. /* put allocated FSF request into hash table */
  688. spin_lock_irqsave(&adapter->req_list_lock, flags);
  689. idx = zfcp_reqlist_hash(req->req_id);
  690. list_add_tail(&req->list, &adapter->req_list[idx]);
  691. spin_unlock_irqrestore(&adapter->req_list_lock, flags);
  692. req->qdio_outb_usage = atomic_read(&adapter->req_q.count);
  693. req->issued = get_clock();
  694. if (zfcp_qdio_send(req)) {
  695. del_timer(&req->timer);
  696. spin_lock_irqsave(&adapter->req_list_lock, flags);
  697. /* lookup request again, list might have changed */
  698. if (zfcp_reqlist_find_safe(adapter, req))
  699. zfcp_reqlist_remove(adapter, req);
  700. spin_unlock_irqrestore(&adapter->req_list_lock, flags);
  701. zfcp_erp_adapter_reopen(adapter, 0, "fsrs__1", req);
  702. return -EIO;
  703. }
  704. /* Don't increase for unsolicited status */
  705. if (with_qtcb)
  706. adapter->fsf_req_seq_no++;
  707. adapter->req_no++;
  708. return 0;
  709. }
  710. /**
  711. * zfcp_fsf_status_read - send status read request
  712. * @adapter: pointer to struct zfcp_adapter
  713. * @req_flags: request flags
  714. * Returns: 0 on success, ERROR otherwise
  715. */
  716. int zfcp_fsf_status_read(struct zfcp_adapter *adapter)
  717. {
  718. struct zfcp_fsf_req *req;
  719. struct fsf_status_read_buffer *sr_buf;
  720. struct qdio_buffer_element *sbale;
  721. int retval = -EIO;
  722. spin_lock_bh(&adapter->req_q_lock);
  723. if (zfcp_fsf_req_sbal_get(adapter))
  724. goto out;
  725. req = zfcp_fsf_req_create(adapter, FSF_QTCB_UNSOLICITED_STATUS,
  726. ZFCP_REQ_NO_QTCB,
  727. adapter->pool.fsf_req_status_read);
  728. if (IS_ERR(req)) {
  729. retval = PTR_ERR(req);
  730. goto out;
  731. }
  732. sbale = zfcp_qdio_sbale_req(req);
  733. sbale[0].flags |= SBAL_FLAGS0_TYPE_STATUS;
  734. sbale[2].flags |= SBAL_FLAGS_LAST_ENTRY;
  735. req->sbale_curr = 2;
  736. sr_buf = mempool_alloc(adapter->pool.data_status_read, GFP_ATOMIC);
  737. if (!sr_buf) {
  738. retval = -ENOMEM;
  739. goto failed_buf;
  740. }
  741. memset(sr_buf, 0, sizeof(*sr_buf));
  742. req->data = sr_buf;
  743. sbale = zfcp_qdio_sbale_curr(req);
  744. sbale->addr = (void *) sr_buf;
  745. sbale->length = sizeof(*sr_buf);
  746. retval = zfcp_fsf_req_send(req);
  747. if (retval)
  748. goto failed_req_send;
  749. goto out;
  750. failed_req_send:
  751. mempool_free(sr_buf, adapter->pool.data_status_read);
  752. failed_buf:
  753. zfcp_fsf_req_free(req);
  754. zfcp_hba_dbf_event_fsf_unsol("fail", adapter, NULL);
  755. out:
  756. spin_unlock_bh(&adapter->req_q_lock);
  757. return retval;
  758. }
  759. static void zfcp_fsf_abort_fcp_command_handler(struct zfcp_fsf_req *req)
  760. {
  761. struct zfcp_unit *unit = req->data;
  762. union fsf_status_qual *fsq = &req->qtcb->header.fsf_status_qual;
  763. if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
  764. return;
  765. switch (req->qtcb->header.fsf_status) {
  766. case FSF_PORT_HANDLE_NOT_VALID:
  767. if (fsq->word[0] == fsq->word[1]) {
  768. zfcp_erp_adapter_reopen(unit->port->adapter, 0,
  769. "fsafch1", req);
  770. req->status |= ZFCP_STATUS_FSFREQ_ERROR;
  771. }
  772. break;
  773. case FSF_LUN_HANDLE_NOT_VALID:
  774. if (fsq->word[0] == fsq->word[1]) {
  775. zfcp_erp_port_reopen(unit->port, 0, "fsafch2", req);
  776. req->status |= ZFCP_STATUS_FSFREQ_ERROR;
  777. }
  778. break;
  779. case FSF_FCP_COMMAND_DOES_NOT_EXIST:
  780. req->status |= ZFCP_STATUS_FSFREQ_ABORTNOTNEEDED;
  781. break;
  782. case FSF_PORT_BOXED:
  783. zfcp_erp_port_boxed(unit->port, "fsafch3", req);
  784. req->status |= ZFCP_STATUS_FSFREQ_ERROR |
  785. ZFCP_STATUS_FSFREQ_RETRY;
  786. break;
  787. case FSF_LUN_BOXED:
  788. zfcp_erp_unit_boxed(unit, "fsafch4", req);
  789. req->status |= ZFCP_STATUS_FSFREQ_ERROR |
  790. ZFCP_STATUS_FSFREQ_RETRY;
  791. break;
  792. case FSF_ADAPTER_STATUS_AVAILABLE:
  793. switch (fsq->word[0]) {
  794. case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
  795. zfcp_test_link(unit->port);
  796. /* fall through */
  797. case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
  798. req->status |= ZFCP_STATUS_FSFREQ_ERROR;
  799. break;
  800. }
  801. break;
  802. case FSF_GOOD:
  803. req->status |= ZFCP_STATUS_FSFREQ_ABORTSUCCEEDED;
  804. break;
  805. }
  806. }
  807. /**
  808. * zfcp_fsf_abort_fcp_command - abort running SCSI command
  809. * @old_req_id: unsigned long
  810. * @unit: pointer to struct zfcp_unit
  811. * Returns: pointer to struct zfcp_fsf_req
  812. */
  813. struct zfcp_fsf_req *zfcp_fsf_abort_fcp_command(unsigned long old_req_id,
  814. struct zfcp_unit *unit)
  815. {
  816. struct qdio_buffer_element *sbale;
  817. struct zfcp_fsf_req *req = NULL;
  818. struct zfcp_adapter *adapter = unit->port->adapter;
  819. spin_lock_bh(&adapter->req_q_lock);
  820. if (zfcp_fsf_req_sbal_get(adapter))
  821. goto out;
  822. req = zfcp_fsf_req_create(adapter, FSF_QTCB_ABORT_FCP_CMND,
  823. 0, adapter->pool.fsf_req_abort);
  824. if (IS_ERR(req)) {
  825. req = NULL;
  826. goto out;
  827. }
  828. if (unlikely(!(atomic_read(&unit->status) &
  829. ZFCP_STATUS_COMMON_UNBLOCKED)))
  830. goto out_error_free;
  831. sbale = zfcp_qdio_sbale_req(req);
  832. sbale[0].flags |= SBAL_FLAGS0_TYPE_READ;
  833. sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY;
  834. req->data = unit;
  835. req->handler = zfcp_fsf_abort_fcp_command_handler;
  836. req->qtcb->header.lun_handle = unit->handle;
  837. req->qtcb->header.port_handle = unit->port->handle;
  838. req->qtcb->bottom.support.req_handle = (u64) old_req_id;
  839. zfcp_fsf_start_timer(req, ZFCP_SCSI_ER_TIMEOUT);
  840. if (!zfcp_fsf_req_send(req))
  841. goto out;
  842. out_error_free:
  843. zfcp_fsf_req_free(req);
  844. req = NULL;
  845. out:
  846. spin_unlock_bh(&adapter->req_q_lock);
  847. return req;
  848. }
  849. static void zfcp_fsf_send_ct_handler(struct zfcp_fsf_req *req)
  850. {
  851. struct zfcp_adapter *adapter = req->adapter;
  852. struct zfcp_send_ct *send_ct = req->data;
  853. struct fsf_qtcb_header *header = &req->qtcb->header;
  854. send_ct->status = -EINVAL;
  855. if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
  856. goto skip_fsfstatus;
  857. switch (header->fsf_status) {
  858. case FSF_GOOD:
  859. zfcp_san_dbf_event_ct_response(req);
  860. send_ct->status = 0;
  861. break;
  862. case FSF_SERVICE_CLASS_NOT_SUPPORTED:
  863. zfcp_fsf_class_not_supp(req);
  864. break;
  865. case FSF_ADAPTER_STATUS_AVAILABLE:
  866. switch (header->fsf_status_qual.word[0]){
  867. case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
  868. case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
  869. req->status |= ZFCP_STATUS_FSFREQ_ERROR;
  870. break;
  871. }
  872. break;
  873. case FSF_ACCESS_DENIED:
  874. break;
  875. case FSF_PORT_BOXED:
  876. req->status |= ZFCP_STATUS_FSFREQ_ERROR |
  877. ZFCP_STATUS_FSFREQ_RETRY;
  878. break;
  879. case FSF_PORT_HANDLE_NOT_VALID:
  880. zfcp_erp_adapter_reopen(adapter, 0, "fsscth1", req);
  881. /* fall through */
  882. case FSF_GENERIC_COMMAND_REJECTED:
  883. case FSF_PAYLOAD_SIZE_MISMATCH:
  884. case FSF_REQUEST_SIZE_TOO_LARGE:
  885. case FSF_RESPONSE_SIZE_TOO_LARGE:
  886. case FSF_SBAL_MISMATCH:
  887. req->status |= ZFCP_STATUS_FSFREQ_ERROR;
  888. break;
  889. }
  890. skip_fsfstatus:
  891. if (send_ct->handler)
  892. send_ct->handler(send_ct->handler_data);
  893. }
  894. static int zfcp_fsf_setup_ct_els_sbals(struct zfcp_fsf_req *req,
  895. struct scatterlist *sg_req,
  896. struct scatterlist *sg_resp,
  897. int max_sbals)
  898. {
  899. struct qdio_buffer_element *sbale = zfcp_qdio_sbale_req(req);
  900. u32 feat = req->adapter->adapter_features;
  901. int bytes;
  902. if (!(feat & FSF_FEATURE_ELS_CT_CHAINED_SBALS)) {
  903. if (sg_req->length > PAGE_SIZE || sg_resp->length > PAGE_SIZE ||
  904. !sg_is_last(sg_req) || !sg_is_last(sg_resp))
  905. return -EOPNOTSUPP;
  906. sbale[0].flags |= SBAL_FLAGS0_TYPE_WRITE_READ;
  907. sbale[2].addr = sg_virt(sg_req);
  908. sbale[2].length = sg_req->length;
  909. sbale[3].addr = sg_virt(sg_resp);
  910. sbale[3].length = sg_resp->length;
  911. sbale[3].flags |= SBAL_FLAGS_LAST_ENTRY;
  912. return 0;
  913. }
  914. bytes = zfcp_qdio_sbals_from_sg(req, SBAL_FLAGS0_TYPE_WRITE_READ,
  915. sg_req, max_sbals);
  916. if (bytes <= 0)
  917. return -ENOMEM;
  918. req->qtcb->bottom.support.req_buf_length = bytes;
  919. req->sbale_curr = ZFCP_LAST_SBALE_PER_SBAL;
  920. bytes = zfcp_qdio_sbals_from_sg(req, SBAL_FLAGS0_TYPE_WRITE_READ,
  921. sg_resp, max_sbals);
  922. if (bytes <= 0)
  923. return -ENOMEM;
  924. req->qtcb->bottom.support.resp_buf_length = bytes;
  925. return 0;
  926. }
  927. /**
  928. * zfcp_fsf_send_ct - initiate a Generic Service request (FC-GS)
  929. * @ct: pointer to struct zfcp_send_ct with data for request
  930. * @pool: if non-null this mempool is used to allocate struct zfcp_fsf_req
  931. * @erp_action: if non-null the Generic Service request sent within ERP
  932. */
  933. int zfcp_fsf_send_ct(struct zfcp_send_ct *ct, mempool_t *pool,
  934. struct zfcp_erp_action *erp_action)
  935. {
  936. struct zfcp_wka_port *wka_port = ct->wka_port;
  937. struct zfcp_adapter *adapter = wka_port->adapter;
  938. struct zfcp_fsf_req *req;
  939. int ret = -EIO;
  940. spin_lock_bh(&adapter->req_q_lock);
  941. if (zfcp_fsf_req_sbal_get(adapter))
  942. goto out;
  943. req = zfcp_fsf_req_create(adapter, FSF_QTCB_SEND_GENERIC,
  944. ZFCP_REQ_AUTO_CLEANUP, pool);
  945. if (IS_ERR(req)) {
  946. ret = PTR_ERR(req);
  947. goto out;
  948. }
  949. ret = zfcp_fsf_setup_ct_els_sbals(req, ct->req, ct->resp,
  950. FSF_MAX_SBALS_PER_REQ);
  951. if (ret)
  952. goto failed_send;
  953. req->handler = zfcp_fsf_send_ct_handler;
  954. req->qtcb->header.port_handle = wka_port->handle;
  955. req->qtcb->bottom.support.service_class = FSF_CLASS_3;
  956. req->qtcb->bottom.support.timeout = ct->timeout;
  957. req->data = ct;
  958. zfcp_san_dbf_event_ct_request(req);
  959. if (erp_action) {
  960. erp_action->fsf_req = req;
  961. req->erp_action = erp_action;
  962. zfcp_fsf_start_erp_timer(req);
  963. } else
  964. zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT);
  965. ret = zfcp_fsf_req_send(req);
  966. if (ret)
  967. goto failed_send;
  968. goto out;
  969. failed_send:
  970. zfcp_fsf_req_free(req);
  971. if (erp_action)
  972. erp_action->fsf_req = NULL;
  973. out:
  974. spin_unlock_bh(&adapter->req_q_lock);
  975. return ret;
  976. }
  977. static void zfcp_fsf_send_els_handler(struct zfcp_fsf_req *req)
  978. {
  979. struct zfcp_send_els *send_els = req->data;
  980. struct zfcp_port *port = send_els->port;
  981. struct fsf_qtcb_header *header = &req->qtcb->header;
  982. send_els->status = -EINVAL;
  983. if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
  984. goto skip_fsfstatus;
  985. switch (header->fsf_status) {
  986. case FSF_GOOD:
  987. zfcp_san_dbf_event_els_response(req);
  988. send_els->status = 0;
  989. break;
  990. case FSF_SERVICE_CLASS_NOT_SUPPORTED:
  991. zfcp_fsf_class_not_supp(req);
  992. break;
  993. case FSF_ADAPTER_STATUS_AVAILABLE:
  994. switch (header->fsf_status_qual.word[0]){
  995. case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
  996. if (port && (send_els->ls_code != ZFCP_LS_ADISC))
  997. zfcp_test_link(port);
  998. /*fall through */
  999. case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
  1000. case FSF_SQ_RETRY_IF_POSSIBLE:
  1001. req->status |= ZFCP_STATUS_FSFREQ_ERROR;
  1002. break;
  1003. }
  1004. break;
  1005. case FSF_ELS_COMMAND_REJECTED:
  1006. case FSF_PAYLOAD_SIZE_MISMATCH:
  1007. case FSF_REQUEST_SIZE_TOO_LARGE:
  1008. case FSF_RESPONSE_SIZE_TOO_LARGE:
  1009. break;
  1010. case FSF_ACCESS_DENIED:
  1011. zfcp_fsf_access_denied_port(req, port);
  1012. break;
  1013. case FSF_SBAL_MISMATCH:
  1014. /* should never occure, avoided in zfcp_fsf_send_els */
  1015. /* fall through */
  1016. default:
  1017. req->status |= ZFCP_STATUS_FSFREQ_ERROR;
  1018. break;
  1019. }
  1020. skip_fsfstatus:
  1021. if (send_els->handler)
  1022. send_els->handler(send_els->handler_data);
  1023. }
  1024. /**
  1025. * zfcp_fsf_send_els - initiate an ELS command (FC-FS)
  1026. * @els: pointer to struct zfcp_send_els with data for the command
  1027. */
  1028. int zfcp_fsf_send_els(struct zfcp_send_els *els)
  1029. {
  1030. struct zfcp_fsf_req *req;
  1031. struct zfcp_adapter *adapter = els->adapter;
  1032. struct fsf_qtcb_bottom_support *bottom;
  1033. int ret = -EIO;
  1034. spin_lock_bh(&adapter->req_q_lock);
  1035. if (zfcp_fsf_req_sbal_get(adapter))
  1036. goto out;
  1037. req = zfcp_fsf_req_create(adapter, FSF_QTCB_SEND_ELS,
  1038. ZFCP_REQ_AUTO_CLEANUP, NULL);
  1039. if (IS_ERR(req)) {
  1040. ret = PTR_ERR(req);
  1041. goto out;
  1042. }
  1043. ret = zfcp_fsf_setup_ct_els_sbals(req, els->req, els->resp, 2);
  1044. if (ret)
  1045. goto failed_send;
  1046. bottom = &req->qtcb->bottom.support;
  1047. req->handler = zfcp_fsf_send_els_handler;
  1048. bottom->d_id = els->d_id;
  1049. bottom->service_class = FSF_CLASS_3;
  1050. bottom->timeout = 2 * R_A_TOV;
  1051. req->data = els;
  1052. zfcp_san_dbf_event_els_request(req);
  1053. zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT);
  1054. ret = zfcp_fsf_req_send(req);
  1055. if (ret)
  1056. goto failed_send;
  1057. goto out;
  1058. failed_send:
  1059. zfcp_fsf_req_free(req);
  1060. out:
  1061. spin_unlock_bh(&adapter->req_q_lock);
  1062. return ret;
  1063. }
  1064. int zfcp_fsf_exchange_config_data(struct zfcp_erp_action *erp_action)
  1065. {
  1066. struct qdio_buffer_element *sbale;
  1067. struct zfcp_fsf_req *req;
  1068. struct zfcp_adapter *adapter = erp_action->adapter;
  1069. int retval = -EIO;
  1070. spin_lock_bh(&adapter->req_q_lock);
  1071. if (zfcp_fsf_req_sbal_get(adapter))
  1072. goto out;
  1073. req = zfcp_fsf_req_create(adapter,
  1074. FSF_QTCB_EXCHANGE_CONFIG_DATA,
  1075. ZFCP_REQ_AUTO_CLEANUP,
  1076. adapter->pool.fsf_req_erp);
  1077. if (IS_ERR(req)) {
  1078. retval = PTR_ERR(req);
  1079. goto out;
  1080. }
  1081. sbale = zfcp_qdio_sbale_req(req);
  1082. sbale[0].flags |= SBAL_FLAGS0_TYPE_READ;
  1083. sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY;
  1084. req->qtcb->bottom.config.feature_selection =
  1085. FSF_FEATURE_CFDC |
  1086. FSF_FEATURE_LUN_SHARING |
  1087. FSF_FEATURE_NOTIFICATION_LOST |
  1088. FSF_FEATURE_UPDATE_ALERT;
  1089. req->erp_action = erp_action;
  1090. req->handler = zfcp_fsf_exchange_config_data_handler;
  1091. erp_action->fsf_req = req;
  1092. zfcp_fsf_start_erp_timer(req);
  1093. retval = zfcp_fsf_req_send(req);
  1094. if (retval) {
  1095. zfcp_fsf_req_free(req);
  1096. erp_action->fsf_req = NULL;
  1097. }
  1098. out:
  1099. spin_unlock_bh(&adapter->req_q_lock);
  1100. return retval;
  1101. }
  1102. int zfcp_fsf_exchange_config_data_sync(struct zfcp_adapter *adapter,
  1103. struct fsf_qtcb_bottom_config *data)
  1104. {
  1105. struct qdio_buffer_element *sbale;
  1106. struct zfcp_fsf_req *req = NULL;
  1107. int retval = -EIO;
  1108. spin_lock_bh(&adapter->req_q_lock);
  1109. if (zfcp_fsf_req_sbal_get(adapter))
  1110. goto out_unlock;
  1111. req = zfcp_fsf_req_create(adapter, FSF_QTCB_EXCHANGE_CONFIG_DATA,
  1112. 0, NULL);
  1113. if (IS_ERR(req)) {
  1114. retval = PTR_ERR(req);
  1115. goto out_unlock;
  1116. }
  1117. sbale = zfcp_qdio_sbale_req(req);
  1118. sbale[0].flags |= SBAL_FLAGS0_TYPE_READ;
  1119. sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY;
  1120. req->handler = zfcp_fsf_exchange_config_data_handler;
  1121. req->qtcb->bottom.config.feature_selection =
  1122. FSF_FEATURE_CFDC |
  1123. FSF_FEATURE_LUN_SHARING |
  1124. FSF_FEATURE_NOTIFICATION_LOST |
  1125. FSF_FEATURE_UPDATE_ALERT;
  1126. if (data)
  1127. req->data = data;
  1128. zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT);
  1129. retval = zfcp_fsf_req_send(req);
  1130. spin_unlock_bh(&adapter->req_q_lock);
  1131. if (!retval)
  1132. wait_event(req->completion_wq,
  1133. req->status & ZFCP_STATUS_FSFREQ_COMPLETED);
  1134. zfcp_fsf_req_free(req);
  1135. return retval;
  1136. out_unlock:
  1137. spin_unlock_bh(&adapter->req_q_lock);
  1138. return retval;
  1139. }
  1140. /**
  1141. * zfcp_fsf_exchange_port_data - request information about local port
  1142. * @erp_action: ERP action for the adapter for which port data is requested
  1143. * Returns: 0 on success, error otherwise
  1144. */
  1145. int zfcp_fsf_exchange_port_data(struct zfcp_erp_action *erp_action)
  1146. {
  1147. struct qdio_buffer_element *sbale;
  1148. struct zfcp_fsf_req *req;
  1149. struct zfcp_adapter *adapter = erp_action->adapter;
  1150. int retval = -EIO;
  1151. if (!(adapter->adapter_features & FSF_FEATURE_HBAAPI_MANAGEMENT))
  1152. return -EOPNOTSUPP;
  1153. spin_lock_bh(&adapter->req_q_lock);
  1154. if (zfcp_fsf_req_sbal_get(adapter))
  1155. goto out;
  1156. req = zfcp_fsf_req_create(adapter, FSF_QTCB_EXCHANGE_PORT_DATA,
  1157. ZFCP_REQ_AUTO_CLEANUP,
  1158. adapter->pool.fsf_req_erp);
  1159. if (IS_ERR(req)) {
  1160. retval = PTR_ERR(req);
  1161. goto out;
  1162. }
  1163. sbale = zfcp_qdio_sbale_req(req);
  1164. sbale[0].flags |= SBAL_FLAGS0_TYPE_READ;
  1165. sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY;
  1166. req->handler = zfcp_fsf_exchange_port_data_handler;
  1167. req->erp_action = erp_action;
  1168. erp_action->fsf_req = req;
  1169. zfcp_fsf_start_erp_timer(req);
  1170. retval = zfcp_fsf_req_send(req);
  1171. if (retval) {
  1172. zfcp_fsf_req_free(req);
  1173. erp_action->fsf_req = NULL;
  1174. }
  1175. out:
  1176. spin_unlock_bh(&adapter->req_q_lock);
  1177. return retval;
  1178. }
  1179. /**
  1180. * zfcp_fsf_exchange_port_data_sync - request information about local port
  1181. * @adapter: pointer to struct zfcp_adapter
  1182. * @data: pointer to struct fsf_qtcb_bottom_port
  1183. * Returns: 0 on success, error otherwise
  1184. */
  1185. int zfcp_fsf_exchange_port_data_sync(struct zfcp_adapter *adapter,
  1186. struct fsf_qtcb_bottom_port *data)
  1187. {
  1188. struct qdio_buffer_element *sbale;
  1189. struct zfcp_fsf_req *req = NULL;
  1190. int retval = -EIO;
  1191. if (!(adapter->adapter_features & FSF_FEATURE_HBAAPI_MANAGEMENT))
  1192. return -EOPNOTSUPP;
  1193. spin_lock_bh(&adapter->req_q_lock);
  1194. if (zfcp_fsf_req_sbal_get(adapter))
  1195. goto out_unlock;
  1196. req = zfcp_fsf_req_create(adapter, FSF_QTCB_EXCHANGE_PORT_DATA, 0,
  1197. NULL);
  1198. if (IS_ERR(req)) {
  1199. retval = PTR_ERR(req);
  1200. goto out_unlock;
  1201. }
  1202. if (data)
  1203. req->data = data;
  1204. sbale = zfcp_qdio_sbale_req(req);
  1205. sbale[0].flags |= SBAL_FLAGS0_TYPE_READ;
  1206. sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY;
  1207. req->handler = zfcp_fsf_exchange_port_data_handler;
  1208. zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT);
  1209. retval = zfcp_fsf_req_send(req);
  1210. spin_unlock_bh(&adapter->req_q_lock);
  1211. if (!retval)
  1212. wait_event(req->completion_wq,
  1213. req->status & ZFCP_STATUS_FSFREQ_COMPLETED);
  1214. zfcp_fsf_req_free(req);
  1215. return retval;
  1216. out_unlock:
  1217. spin_unlock_bh(&adapter->req_q_lock);
  1218. return retval;
  1219. }
  1220. static void zfcp_fsf_open_port_handler(struct zfcp_fsf_req *req)
  1221. {
  1222. struct zfcp_port *port = req->data;
  1223. struct fsf_qtcb_header *header = &req->qtcb->header;
  1224. struct fsf_plogi *plogi;
  1225. if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
  1226. goto out;
  1227. switch (header->fsf_status) {
  1228. case FSF_PORT_ALREADY_OPEN:
  1229. break;
  1230. case FSF_ACCESS_DENIED:
  1231. zfcp_fsf_access_denied_port(req, port);
  1232. break;
  1233. case FSF_MAXIMUM_NUMBER_OF_PORTS_EXCEEDED:
  1234. dev_warn(&req->adapter->ccw_device->dev,
  1235. "Not enough FCP adapter resources to open "
  1236. "remote port 0x%016Lx\n",
  1237. (unsigned long long)port->wwpn);
  1238. zfcp_erp_port_failed(port, "fsoph_1", req);
  1239. req->status |= ZFCP_STATUS_FSFREQ_ERROR;
  1240. break;
  1241. case FSF_ADAPTER_STATUS_AVAILABLE:
  1242. switch (header->fsf_status_qual.word[0]) {
  1243. case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
  1244. case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
  1245. case FSF_SQ_NO_RETRY_POSSIBLE:
  1246. req->status |= ZFCP_STATUS_FSFREQ_ERROR;
  1247. break;
  1248. }
  1249. break;
  1250. case FSF_GOOD:
  1251. port->handle = header->port_handle;
  1252. atomic_set_mask(ZFCP_STATUS_COMMON_OPEN |
  1253. ZFCP_STATUS_PORT_PHYS_OPEN, &port->status);
  1254. atomic_clear_mask(ZFCP_STATUS_COMMON_ACCESS_DENIED |
  1255. ZFCP_STATUS_COMMON_ACCESS_BOXED,
  1256. &port->status);
  1257. /* check whether D_ID has changed during open */
  1258. /*
  1259. * FIXME: This check is not airtight, as the FCP channel does
  1260. * not monitor closures of target port connections caused on
  1261. * the remote side. Thus, they might miss out on invalidating
  1262. * locally cached WWPNs (and other N_Port parameters) of gone
  1263. * target ports. So, our heroic attempt to make things safe
  1264. * could be undermined by 'open port' response data tagged with
  1265. * obsolete WWPNs. Another reason to monitor potential
  1266. * connection closures ourself at least (by interpreting
  1267. * incoming ELS' and unsolicited status). It just crosses my
  1268. * mind that one should be able to cross-check by means of
  1269. * another GID_PN straight after a port has been opened.
  1270. * Alternately, an ADISC/PDISC ELS should suffice, as well.
  1271. */
  1272. plogi = (struct fsf_plogi *) req->qtcb->bottom.support.els;
  1273. if (req->qtcb->bottom.support.els1_length >=
  1274. FSF_PLOGI_MIN_LEN) {
  1275. if (plogi->serv_param.wwpn != port->wwpn)
  1276. port->d_id = 0;
  1277. else {
  1278. port->wwnn = plogi->serv_param.wwnn;
  1279. zfcp_fc_plogi_evaluate(port, plogi);
  1280. }
  1281. }
  1282. break;
  1283. case FSF_UNKNOWN_OP_SUBTYPE:
  1284. req->status |= ZFCP_STATUS_FSFREQ_ERROR;
  1285. break;
  1286. }
  1287. out:
  1288. zfcp_port_put(port);
  1289. }
  1290. /**
  1291. * zfcp_fsf_open_port - create and send open port request
  1292. * @erp_action: pointer to struct zfcp_erp_action
  1293. * Returns: 0 on success, error otherwise
  1294. */
  1295. int zfcp_fsf_open_port(struct zfcp_erp_action *erp_action)
  1296. {
  1297. struct qdio_buffer_element *sbale;
  1298. struct zfcp_adapter *adapter = erp_action->adapter;
  1299. struct zfcp_fsf_req *req;
  1300. struct zfcp_port *port = erp_action->port;
  1301. int retval = -EIO;
  1302. spin_lock_bh(&adapter->req_q_lock);
  1303. if (zfcp_fsf_req_sbal_get(adapter))
  1304. goto out;
  1305. req = zfcp_fsf_req_create(adapter,
  1306. FSF_QTCB_OPEN_PORT_WITH_DID,
  1307. ZFCP_REQ_AUTO_CLEANUP,
  1308. adapter->pool.fsf_req_erp);
  1309. if (IS_ERR(req)) {
  1310. retval = PTR_ERR(req);
  1311. goto out;
  1312. }
  1313. sbale = zfcp_qdio_sbale_req(req);
  1314. sbale[0].flags |= SBAL_FLAGS0_TYPE_READ;
  1315. sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY;
  1316. req->handler = zfcp_fsf_open_port_handler;
  1317. req->qtcb->bottom.support.d_id = port->d_id;
  1318. req->data = port;
  1319. req->erp_action = erp_action;
  1320. erp_action->fsf_req = req;
  1321. zfcp_port_get(port);
  1322. zfcp_fsf_start_erp_timer(req);
  1323. retval = zfcp_fsf_req_send(req);
  1324. if (retval) {
  1325. zfcp_fsf_req_free(req);
  1326. erp_action->fsf_req = NULL;
  1327. zfcp_port_put(port);
  1328. }
  1329. out:
  1330. spin_unlock_bh(&adapter->req_q_lock);
  1331. return retval;
  1332. }
  1333. static void zfcp_fsf_close_port_handler(struct zfcp_fsf_req *req)
  1334. {
  1335. struct zfcp_port *port = req->data;
  1336. if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
  1337. return;
  1338. switch (req->qtcb->header.fsf_status) {
  1339. case FSF_PORT_HANDLE_NOT_VALID:
  1340. zfcp_erp_adapter_reopen(port->adapter, 0, "fscph_1", req);
  1341. req->status |= ZFCP_STATUS_FSFREQ_ERROR;
  1342. break;
  1343. case FSF_ADAPTER_STATUS_AVAILABLE:
  1344. break;
  1345. case FSF_GOOD:
  1346. zfcp_erp_modify_port_status(port, "fscph_2", req,
  1347. ZFCP_STATUS_COMMON_OPEN,
  1348. ZFCP_CLEAR);
  1349. break;
  1350. }
  1351. }
  1352. /**
  1353. * zfcp_fsf_close_port - create and send close port request
  1354. * @erp_action: pointer to struct zfcp_erp_action
  1355. * Returns: 0 on success, error otherwise
  1356. */
  1357. int zfcp_fsf_close_port(struct zfcp_erp_action *erp_action)
  1358. {
  1359. struct qdio_buffer_element *sbale;
  1360. struct zfcp_adapter *adapter = erp_action->adapter;
  1361. struct zfcp_fsf_req *req;
  1362. int retval = -EIO;
  1363. spin_lock_bh(&adapter->req_q_lock);
  1364. if (zfcp_fsf_req_sbal_get(adapter))
  1365. goto out;
  1366. req = zfcp_fsf_req_create(adapter, FSF_QTCB_CLOSE_PORT,
  1367. ZFCP_REQ_AUTO_CLEANUP,
  1368. adapter->pool.fsf_req_erp);
  1369. if (IS_ERR(req)) {
  1370. retval = PTR_ERR(req);
  1371. goto out;
  1372. }
  1373. sbale = zfcp_qdio_sbale_req(req);
  1374. sbale[0].flags |= SBAL_FLAGS0_TYPE_READ;
  1375. sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY;
  1376. req->handler = zfcp_fsf_close_port_handler;
  1377. req->data = erp_action->port;
  1378. req->erp_action = erp_action;
  1379. req->qtcb->header.port_handle = erp_action->port->handle;
  1380. erp_action->fsf_req = req;
  1381. zfcp_fsf_start_erp_timer(req);
  1382. retval = zfcp_fsf_req_send(req);
  1383. if (retval) {
  1384. zfcp_fsf_req_free(req);
  1385. erp_action->fsf_req = NULL;
  1386. }
  1387. out:
  1388. spin_unlock_bh(&adapter->req_q_lock);
  1389. return retval;
  1390. }
  1391. static void zfcp_fsf_open_wka_port_handler(struct zfcp_fsf_req *req)
  1392. {
  1393. struct zfcp_wka_port *wka_port = req->data;
  1394. struct fsf_qtcb_header *header = &req->qtcb->header;
  1395. if (req->status & ZFCP_STATUS_FSFREQ_ERROR) {
  1396. wka_port->status = ZFCP_WKA_PORT_OFFLINE;
  1397. goto out;
  1398. }
  1399. switch (header->fsf_status) {
  1400. case FSF_MAXIMUM_NUMBER_OF_PORTS_EXCEEDED:
  1401. dev_warn(&req->adapter->ccw_device->dev,
  1402. "Opening WKA port 0x%x failed\n", wka_port->d_id);
  1403. /* fall through */
  1404. case FSF_ADAPTER_STATUS_AVAILABLE:
  1405. req->status |= ZFCP_STATUS_FSFREQ_ERROR;
  1406. /* fall through */
  1407. case FSF_ACCESS_DENIED:
  1408. wka_port->status = ZFCP_WKA_PORT_OFFLINE;
  1409. break;
  1410. case FSF_PORT_ALREADY_OPEN:
  1411. break;
  1412. case FSF_GOOD:
  1413. wka_port->handle = header->port_handle;
  1414. wka_port->status = ZFCP_WKA_PORT_ONLINE;
  1415. }
  1416. out:
  1417. wake_up(&wka_port->completion_wq);
  1418. }
  1419. /**
  1420. * zfcp_fsf_open_wka_port - create and send open wka-port request
  1421. * @wka_port: pointer to struct zfcp_wka_port
  1422. * Returns: 0 on success, error otherwise
  1423. */
  1424. int zfcp_fsf_open_wka_port(struct zfcp_wka_port *wka_port)
  1425. {
  1426. struct qdio_buffer_element *sbale;
  1427. struct zfcp_adapter *adapter = wka_port->adapter;
  1428. struct zfcp_fsf_req *req;
  1429. int retval = -EIO;
  1430. spin_lock_bh(&adapter->req_q_lock);
  1431. if (zfcp_fsf_req_sbal_get(adapter))
  1432. goto out;
  1433. req = zfcp_fsf_req_create(adapter,
  1434. FSF_QTCB_OPEN_PORT_WITH_DID,
  1435. ZFCP_REQ_AUTO_CLEANUP,
  1436. adapter->pool.fsf_req_erp);
  1437. if (unlikely(IS_ERR(req))) {
  1438. retval = PTR_ERR(req);
  1439. goto out;
  1440. }
  1441. sbale = zfcp_qdio_sbale_req(req);
  1442. sbale[0].flags |= SBAL_FLAGS0_TYPE_READ;
  1443. sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY;
  1444. req->handler = zfcp_fsf_open_wka_port_handler;
  1445. req->qtcb->bottom.support.d_id = wka_port->d_id;
  1446. req->data = wka_port;
  1447. zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT);
  1448. retval = zfcp_fsf_req_send(req);
  1449. if (retval)
  1450. zfcp_fsf_req_free(req);
  1451. out:
  1452. spin_unlock_bh(&adapter->req_q_lock);
  1453. return retval;
  1454. }
  1455. static void zfcp_fsf_close_wka_port_handler(struct zfcp_fsf_req *req)
  1456. {
  1457. struct zfcp_wka_port *wka_port = req->data;
  1458. if (req->qtcb->header.fsf_status == FSF_PORT_HANDLE_NOT_VALID) {
  1459. req->status |= ZFCP_STATUS_FSFREQ_ERROR;
  1460. zfcp_erp_adapter_reopen(wka_port->adapter, 0, "fscwph1", req);
  1461. }
  1462. wka_port->status = ZFCP_WKA_PORT_OFFLINE;
  1463. wake_up(&wka_port->completion_wq);
  1464. }
  1465. /**
  1466. * zfcp_fsf_close_wka_port - create and send close wka port request
  1467. * @erp_action: pointer to struct zfcp_erp_action
  1468. * Returns: 0 on success, error otherwise
  1469. */
  1470. int zfcp_fsf_close_wka_port(struct zfcp_wka_port *wka_port)
  1471. {
  1472. struct qdio_buffer_element *sbale;
  1473. struct zfcp_adapter *adapter = wka_port->adapter;
  1474. struct zfcp_fsf_req *req;
  1475. int retval = -EIO;
  1476. spin_lock_bh(&adapter->req_q_lock);
  1477. if (zfcp_fsf_req_sbal_get(adapter))
  1478. goto out;
  1479. req = zfcp_fsf_req_create(adapter, FSF_QTCB_CLOSE_PORT,
  1480. ZFCP_REQ_AUTO_CLEANUP,
  1481. adapter->pool.fsf_req_erp);
  1482. if (unlikely(IS_ERR(req))) {
  1483. retval = PTR_ERR(req);
  1484. goto out;
  1485. }
  1486. sbale = zfcp_qdio_sbale_req(req);
  1487. sbale[0].flags |= SBAL_FLAGS0_TYPE_READ;
  1488. sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY;
  1489. req->handler = zfcp_fsf_close_wka_port_handler;
  1490. req->data = wka_port;
  1491. req->qtcb->header.port_handle = wka_port->handle;
  1492. zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT);
  1493. retval = zfcp_fsf_req_send(req);
  1494. if (retval)
  1495. zfcp_fsf_req_free(req);
  1496. out:
  1497. spin_unlock_bh(&adapter->req_q_lock);
  1498. return retval;
  1499. }
  1500. static void zfcp_fsf_close_physical_port_handler(struct zfcp_fsf_req *req)
  1501. {
  1502. struct zfcp_port *port = req->data;
  1503. struct fsf_qtcb_header *header = &req->qtcb->header;
  1504. struct zfcp_unit *unit;
  1505. if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
  1506. return;
  1507. switch (header->fsf_status) {
  1508. case FSF_PORT_HANDLE_NOT_VALID:
  1509. zfcp_erp_adapter_reopen(port->adapter, 0, "fscpph1", req);
  1510. req->status |= ZFCP_STATUS_FSFREQ_ERROR;
  1511. break;
  1512. case FSF_ACCESS_DENIED:
  1513. zfcp_fsf_access_denied_port(req, port);
  1514. break;
  1515. case FSF_PORT_BOXED:
  1516. zfcp_erp_port_boxed(port, "fscpph2", req);
  1517. req->status |= ZFCP_STATUS_FSFREQ_ERROR |
  1518. ZFCP_STATUS_FSFREQ_RETRY;
  1519. /* can't use generic zfcp_erp_modify_port_status because
  1520. * ZFCP_STATUS_COMMON_OPEN must not be reset for the port */
  1521. atomic_clear_mask(ZFCP_STATUS_PORT_PHYS_OPEN, &port->status);
  1522. list_for_each_entry(unit, &port->unit_list_head, list)
  1523. atomic_clear_mask(ZFCP_STATUS_COMMON_OPEN,
  1524. &unit->status);
  1525. break;
  1526. case FSF_ADAPTER_STATUS_AVAILABLE:
  1527. switch (header->fsf_status_qual.word[0]) {
  1528. case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
  1529. /* fall through */
  1530. case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
  1531. req->status |= ZFCP_STATUS_FSFREQ_ERROR;
  1532. break;
  1533. }
  1534. break;
  1535. case FSF_GOOD:
  1536. /* can't use generic zfcp_erp_modify_port_status because
  1537. * ZFCP_STATUS_COMMON_OPEN must not be reset for the port
  1538. */
  1539. atomic_clear_mask(ZFCP_STATUS_PORT_PHYS_OPEN, &port->status);
  1540. list_for_each_entry(unit, &port->unit_list_head, list)
  1541. atomic_clear_mask(ZFCP_STATUS_COMMON_OPEN,
  1542. &unit->status);
  1543. break;
  1544. }
  1545. }
  1546. /**
  1547. * zfcp_fsf_close_physical_port - close physical port
  1548. * @erp_action: pointer to struct zfcp_erp_action
  1549. * Returns: 0 on success
  1550. */
  1551. int zfcp_fsf_close_physical_port(struct zfcp_erp_action *erp_action)
  1552. {
  1553. struct qdio_buffer_element *sbale;
  1554. struct zfcp_adapter *adapter = erp_action->adapter;
  1555. struct zfcp_fsf_req *req;
  1556. int retval = -EIO;
  1557. spin_lock_bh(&adapter->req_q_lock);
  1558. if (zfcp_fsf_req_sbal_get(adapter))
  1559. goto out;
  1560. req = zfcp_fsf_req_create(adapter, FSF_QTCB_CLOSE_PHYSICAL_PORT,
  1561. ZFCP_REQ_AUTO_CLEANUP,
  1562. adapter->pool.fsf_req_erp);
  1563. if (IS_ERR(req)) {
  1564. retval = PTR_ERR(req);
  1565. goto out;
  1566. }
  1567. sbale = zfcp_qdio_sbale_req(req);
  1568. sbale[0].flags |= SBAL_FLAGS0_TYPE_READ;
  1569. sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY;
  1570. req->data = erp_action->port;
  1571. req->qtcb->header.port_handle = erp_action->port->handle;
  1572. req->erp_action = erp_action;
  1573. req->handler = zfcp_fsf_close_physical_port_handler;
  1574. erp_action->fsf_req = req;
  1575. zfcp_fsf_start_erp_timer(req);
  1576. retval = zfcp_fsf_req_send(req);
  1577. if (retval) {
  1578. zfcp_fsf_req_free(req);
  1579. erp_action->fsf_req = NULL;
  1580. }
  1581. out:
  1582. spin_unlock_bh(&adapter->req_q_lock);
  1583. return retval;
  1584. }
  1585. static void zfcp_fsf_open_unit_handler(struct zfcp_fsf_req *req)
  1586. {
  1587. struct zfcp_adapter *adapter = req->adapter;
  1588. struct zfcp_unit *unit = req->data;
  1589. struct fsf_qtcb_header *header = &req->qtcb->header;
  1590. struct fsf_qtcb_bottom_support *bottom = &req->qtcb->bottom.support;
  1591. struct fsf_queue_designator *queue_designator =
  1592. &header->fsf_status_qual.fsf_queue_designator;
  1593. int exclusive, readwrite;
  1594. if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
  1595. return;
  1596. atomic_clear_mask(ZFCP_STATUS_COMMON_ACCESS_DENIED |
  1597. ZFCP_STATUS_COMMON_ACCESS_BOXED |
  1598. ZFCP_STATUS_UNIT_SHARED |
  1599. ZFCP_STATUS_UNIT_READONLY,
  1600. &unit->status);
  1601. switch (header->fsf_status) {
  1602. case FSF_PORT_HANDLE_NOT_VALID:
  1603. zfcp_erp_adapter_reopen(unit->port->adapter, 0, "fsouh_1", req);
  1604. /* fall through */
  1605. case FSF_LUN_ALREADY_OPEN:
  1606. break;
  1607. case FSF_ACCESS_DENIED:
  1608. zfcp_fsf_access_denied_unit(req, unit);
  1609. atomic_clear_mask(ZFCP_STATUS_UNIT_SHARED, &unit->status);
  1610. atomic_clear_mask(ZFCP_STATUS_UNIT_READONLY, &unit->status);
  1611. break;
  1612. case FSF_PORT_BOXED:
  1613. zfcp_erp_port_boxed(unit->port, "fsouh_2", req);
  1614. req->status |= ZFCP_STATUS_FSFREQ_ERROR |
  1615. ZFCP_STATUS_FSFREQ_RETRY;
  1616. break;
  1617. case FSF_LUN_SHARING_VIOLATION:
  1618. if (header->fsf_status_qual.word[0])
  1619. dev_warn(&adapter->ccw_device->dev,
  1620. "LUN 0x%Lx on port 0x%Lx is already in "
  1621. "use by CSS%d, MIF Image ID %x\n",
  1622. (unsigned long long)unit->fcp_lun,
  1623. (unsigned long long)unit->port->wwpn,
  1624. queue_designator->cssid,
  1625. queue_designator->hla);
  1626. else
  1627. zfcp_act_eval_err(adapter,
  1628. header->fsf_status_qual.word[2]);
  1629. zfcp_erp_unit_access_denied(unit, "fsouh_3", req);
  1630. atomic_clear_mask(ZFCP_STATUS_UNIT_SHARED, &unit->status);
  1631. atomic_clear_mask(ZFCP_STATUS_UNIT_READONLY, &unit->status);
  1632. req->status |= ZFCP_STATUS_FSFREQ_ERROR;
  1633. break;
  1634. case FSF_MAXIMUM_NUMBER_OF_LUNS_EXCEEDED:
  1635. dev_warn(&adapter->ccw_device->dev,
  1636. "No handle is available for LUN "
  1637. "0x%016Lx on port 0x%016Lx\n",
  1638. (unsigned long long)unit->fcp_lun,
  1639. (unsigned long long)unit->port->wwpn);
  1640. zfcp_erp_unit_failed(unit, "fsouh_4", req);
  1641. /* fall through */
  1642. case FSF_INVALID_COMMAND_OPTION:
  1643. req->status |= ZFCP_STATUS_FSFREQ_ERROR;
  1644. break;
  1645. case FSF_ADAPTER_STATUS_AVAILABLE:
  1646. switch (header->fsf_status_qual.word[0]) {
  1647. case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
  1648. zfcp_test_link(unit->port);
  1649. /* fall through */
  1650. case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
  1651. req->status |= ZFCP_STATUS_FSFREQ_ERROR;
  1652. break;
  1653. }
  1654. break;
  1655. case FSF_GOOD:
  1656. unit->handle = header->lun_handle;
  1657. atomic_set_mask(ZFCP_STATUS_COMMON_OPEN, &unit->status);
  1658. if (!(adapter->connection_features & FSF_FEATURE_NPIV_MODE) &&
  1659. (adapter->adapter_features & FSF_FEATURE_LUN_SHARING) &&
  1660. !zfcp_ccw_priv_sch(adapter)) {
  1661. exclusive = (bottom->lun_access_info &
  1662. FSF_UNIT_ACCESS_EXCLUSIVE);
  1663. readwrite = (bottom->lun_access_info &
  1664. FSF_UNIT_ACCESS_OUTBOUND_TRANSFER);
  1665. if (!exclusive)
  1666. atomic_set_mask(ZFCP_STATUS_UNIT_SHARED,
  1667. &unit->status);
  1668. if (!readwrite) {
  1669. atomic_set_mask(ZFCP_STATUS_UNIT_READONLY,
  1670. &unit->status);
  1671. dev_info(&adapter->ccw_device->dev,
  1672. "SCSI device at LUN 0x%016Lx on port "
  1673. "0x%016Lx opened read-only\n",
  1674. (unsigned long long)unit->fcp_lun,
  1675. (unsigned long long)unit->port->wwpn);
  1676. }
  1677. if (exclusive && !readwrite) {
  1678. dev_err(&adapter->ccw_device->dev,
  1679. "Exclusive read-only access not "
  1680. "supported (unit 0x%016Lx, "
  1681. "port 0x%016Lx)\n",
  1682. (unsigned long long)unit->fcp_lun,
  1683. (unsigned long long)unit->port->wwpn);
  1684. zfcp_erp_unit_failed(unit, "fsouh_5", req);
  1685. req->status |= ZFCP_STATUS_FSFREQ_ERROR;
  1686. zfcp_erp_unit_shutdown(unit, 0, "fsouh_6", req);
  1687. } else if (!exclusive && readwrite) {
  1688. dev_err(&adapter->ccw_device->dev,
  1689. "Shared read-write access not "
  1690. "supported (unit 0x%016Lx, port "
  1691. "0x%016Lx)\n",
  1692. (unsigned long long)unit->fcp_lun,
  1693. (unsigned long long)unit->port->wwpn);
  1694. zfcp_erp_unit_failed(unit, "fsouh_7", req);
  1695. req->status |= ZFCP_STATUS_FSFREQ_ERROR;
  1696. zfcp_erp_unit_shutdown(unit, 0, "fsouh_8", req);
  1697. }
  1698. }
  1699. break;
  1700. }
  1701. }
  1702. /**
  1703. * zfcp_fsf_open_unit - open unit
  1704. * @erp_action: pointer to struct zfcp_erp_action
  1705. * Returns: 0 on success, error otherwise
  1706. */
  1707. int zfcp_fsf_open_unit(struct zfcp_erp_action *erp_action)
  1708. {
  1709. struct qdio_buffer_element *sbale;
  1710. struct zfcp_adapter *adapter = erp_action->adapter;
  1711. struct zfcp_fsf_req *req;
  1712. int retval = -EIO;
  1713. spin_lock_bh(&adapter->req_q_lock);
  1714. if (zfcp_fsf_req_sbal_get(adapter))
  1715. goto out;
  1716. req = zfcp_fsf_req_create(adapter, FSF_QTCB_OPEN_LUN,
  1717. ZFCP_REQ_AUTO_CLEANUP,
  1718. adapter->pool.fsf_req_erp);
  1719. if (IS_ERR(req)) {
  1720. retval = PTR_ERR(req);
  1721. goto out;
  1722. }
  1723. sbale = zfcp_qdio_sbale_req(req);
  1724. sbale[0].flags |= SBAL_FLAGS0_TYPE_READ;
  1725. sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY;
  1726. req->qtcb->header.port_handle = erp_action->port->handle;
  1727. req->qtcb->bottom.support.fcp_lun = erp_action->unit->fcp_lun;
  1728. req->handler = zfcp_fsf_open_unit_handler;
  1729. req->data = erp_action->unit;
  1730. req->erp_action = erp_action;
  1731. erp_action->fsf_req = req;
  1732. if (!(adapter->connection_features & FSF_FEATURE_NPIV_MODE))
  1733. req->qtcb->bottom.support.option = FSF_OPEN_LUN_SUPPRESS_BOXING;
  1734. zfcp_fsf_start_erp_timer(req);
  1735. retval = zfcp_fsf_req_send(req);
  1736. if (retval) {
  1737. zfcp_fsf_req_free(req);
  1738. erp_action->fsf_req = NULL;
  1739. }
  1740. out:
  1741. spin_unlock_bh(&adapter->req_q_lock);
  1742. return retval;
  1743. }
  1744. static void zfcp_fsf_close_unit_handler(struct zfcp_fsf_req *req)
  1745. {
  1746. struct zfcp_unit *unit = req->data;
  1747. if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
  1748. return;
  1749. switch (req->qtcb->header.fsf_status) {
  1750. case FSF_PORT_HANDLE_NOT_VALID:
  1751. zfcp_erp_adapter_reopen(unit->port->adapter, 0, "fscuh_1", req);
  1752. req->status |= ZFCP_STATUS_FSFREQ_ERROR;
  1753. break;
  1754. case FSF_LUN_HANDLE_NOT_VALID:
  1755. zfcp_erp_port_reopen(unit->port, 0, "fscuh_2", req);
  1756. req->status |= ZFCP_STATUS_FSFREQ_ERROR;
  1757. break;
  1758. case FSF_PORT_BOXED:
  1759. zfcp_erp_port_boxed(unit->port, "fscuh_3", req);
  1760. req->status |= ZFCP_STATUS_FSFREQ_ERROR |
  1761. ZFCP_STATUS_FSFREQ_RETRY;
  1762. break;
  1763. case FSF_ADAPTER_STATUS_AVAILABLE:
  1764. switch (req->qtcb->header.fsf_status_qual.word[0]) {
  1765. case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
  1766. zfcp_test_link(unit->port);
  1767. /* fall through */
  1768. case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
  1769. req->status |= ZFCP_STATUS_FSFREQ_ERROR;
  1770. break;
  1771. }
  1772. break;
  1773. case FSF_GOOD:
  1774. atomic_clear_mask(ZFCP_STATUS_COMMON_OPEN, &unit->status);
  1775. break;
  1776. }
  1777. }
  1778. /**
  1779. * zfcp_fsf_close_unit - close zfcp unit
  1780. * @erp_action: pointer to struct zfcp_unit
  1781. * Returns: 0 on success, error otherwise
  1782. */
  1783. int zfcp_fsf_close_unit(struct zfcp_erp_action *erp_action)
  1784. {
  1785. struct qdio_buffer_element *sbale;
  1786. struct zfcp_adapter *adapter = erp_action->adapter;
  1787. struct zfcp_fsf_req *req;
  1788. int retval = -EIO;
  1789. spin_lock_bh(&adapter->req_q_lock);
  1790. if (zfcp_fsf_req_sbal_get(adapter))
  1791. goto out;
  1792. req = zfcp_fsf_req_create(adapter, FSF_QTCB_CLOSE_LUN,
  1793. ZFCP_REQ_AUTO_CLEANUP,
  1794. adapter->pool.fsf_req_erp);
  1795. if (IS_ERR(req)) {
  1796. retval = PTR_ERR(req);
  1797. goto out;
  1798. }
  1799. sbale = zfcp_qdio_sbale_req(req);
  1800. sbale[0].flags |= SBAL_FLAGS0_TYPE_READ;
  1801. sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY;
  1802. req->qtcb->header.port_handle = erp_action->port->handle;
  1803. req->qtcb->header.lun_handle = erp_action->unit->handle;
  1804. req->handler = zfcp_fsf_close_unit_handler;
  1805. req->data = erp_action->unit;
  1806. req->erp_action = erp_action;
  1807. erp_action->fsf_req = req;
  1808. zfcp_fsf_start_erp_timer(req);
  1809. retval = zfcp_fsf_req_send(req);
  1810. if (retval) {
  1811. zfcp_fsf_req_free(req);
  1812. erp_action->fsf_req = NULL;
  1813. }
  1814. out:
  1815. spin_unlock_bh(&adapter->req_q_lock);
  1816. return retval;
  1817. }
  1818. static void zfcp_fsf_update_lat(struct fsf_latency_record *lat_rec, u32 lat)
  1819. {
  1820. lat_rec->sum += lat;
  1821. lat_rec->min = min(lat_rec->min, lat);
  1822. lat_rec->max = max(lat_rec->max, lat);
  1823. }
  1824. static void zfcp_fsf_req_latency(struct zfcp_fsf_req *req)
  1825. {
  1826. struct fsf_qual_latency_info *lat_inf;
  1827. struct latency_cont *lat;
  1828. struct zfcp_unit *unit = req->unit;
  1829. lat_inf = &req->qtcb->prefix.prot_status_qual.latency_info;
  1830. switch (req->qtcb->bottom.io.data_direction) {
  1831. case FSF_DATADIR_READ:
  1832. lat = &unit->latencies.read;
  1833. break;
  1834. case FSF_DATADIR_WRITE:
  1835. lat = &unit->latencies.write;
  1836. break;
  1837. case FSF_DATADIR_CMND:
  1838. lat = &unit->latencies.cmd;
  1839. break;
  1840. default:
  1841. return;
  1842. }
  1843. spin_lock(&unit->latencies.lock);
  1844. zfcp_fsf_update_lat(&lat->channel, lat_inf->channel_lat);
  1845. zfcp_fsf_update_lat(&lat->fabric, lat_inf->fabric_lat);
  1846. lat->counter++;
  1847. spin_unlock(&unit->latencies.lock);
  1848. }
  1849. #ifdef CONFIG_BLK_DEV_IO_TRACE
  1850. static void zfcp_fsf_trace_latency(struct zfcp_fsf_req *fsf_req)
  1851. {
  1852. struct fsf_qual_latency_info *lat_inf;
  1853. struct scsi_cmnd *scsi_cmnd = (struct scsi_cmnd *)fsf_req->data;
  1854. struct request *req = scsi_cmnd->request;
  1855. struct zfcp_blk_drv_data trace;
  1856. int ticks = fsf_req->adapter->timer_ticks;
  1857. trace.flags = 0;
  1858. trace.magic = ZFCP_BLK_DRV_DATA_MAGIC;
  1859. if (fsf_req->adapter->adapter_features & FSF_FEATURE_MEASUREMENT_DATA) {
  1860. trace.flags |= ZFCP_BLK_LAT_VALID;
  1861. lat_inf = &fsf_req->qtcb->prefix.prot_status_qual.latency_info;
  1862. trace.channel_lat = lat_inf->channel_lat * ticks;
  1863. trace.fabric_lat = lat_inf->fabric_lat * ticks;
  1864. }
  1865. if (fsf_req->status & ZFCP_STATUS_FSFREQ_ERROR)
  1866. trace.flags |= ZFCP_BLK_REQ_ERROR;
  1867. trace.inb_usage = fsf_req->qdio_inb_usage;
  1868. trace.outb_usage = fsf_req->qdio_outb_usage;
  1869. blk_add_driver_data(req->q, req, &trace, sizeof(trace));
  1870. }
  1871. #else
  1872. static inline void zfcp_fsf_trace_latency(struct zfcp_fsf_req *fsf_req)
  1873. {
  1874. }
  1875. #endif
  1876. static void zfcp_fsf_send_fcp_command_task_handler(struct zfcp_fsf_req *req)
  1877. {
  1878. struct scsi_cmnd *scpnt;
  1879. struct fcp_rsp_iu *fcp_rsp_iu = (struct fcp_rsp_iu *)
  1880. &(req->qtcb->bottom.io.fcp_rsp);
  1881. u32 sns_len;
  1882. char *fcp_rsp_info = (unsigned char *) &fcp_rsp_iu[1];
  1883. unsigned long flags;
  1884. read_lock_irqsave(&req->adapter->abort_lock, flags);
  1885. scpnt = req->data;
  1886. if (unlikely(!scpnt)) {
  1887. read_unlock_irqrestore(&req->adapter->abort_lock, flags);
  1888. return;
  1889. }
  1890. if (unlikely(req->status & ZFCP_STATUS_FSFREQ_ABORTED)) {
  1891. set_host_byte(scpnt, DID_SOFT_ERROR);
  1892. goto skip_fsfstatus;
  1893. }
  1894. if (unlikely(req->status & ZFCP_STATUS_FSFREQ_ERROR)) {
  1895. set_host_byte(scpnt, DID_ERROR);
  1896. goto skip_fsfstatus;
  1897. }
  1898. set_msg_byte(scpnt, COMMAND_COMPLETE);
  1899. scpnt->result |= fcp_rsp_iu->scsi_status;
  1900. if (req->adapter->adapter_features & FSF_FEATURE_MEASUREMENT_DATA)
  1901. zfcp_fsf_req_latency(req);
  1902. zfcp_fsf_trace_latency(req);
  1903. if (unlikely(fcp_rsp_iu->validity.bits.fcp_rsp_len_valid)) {
  1904. if (fcp_rsp_info[3] == RSP_CODE_GOOD)
  1905. set_host_byte(scpnt, DID_OK);
  1906. else {
  1907. set_host_byte(scpnt, DID_ERROR);
  1908. goto skip_fsfstatus;
  1909. }
  1910. }
  1911. if (unlikely(fcp_rsp_iu->validity.bits.fcp_sns_len_valid)) {
  1912. sns_len = FSF_FCP_RSP_SIZE - sizeof(struct fcp_rsp_iu) +
  1913. fcp_rsp_iu->fcp_rsp_len;
  1914. sns_len = min(sns_len, (u32) SCSI_SENSE_BUFFERSIZE);
  1915. sns_len = min(sns_len, fcp_rsp_iu->fcp_sns_len);
  1916. memcpy(scpnt->sense_buffer,
  1917. zfcp_get_fcp_sns_info_ptr(fcp_rsp_iu), sns_len);
  1918. }
  1919. if (unlikely(fcp_rsp_iu->validity.bits.fcp_resid_under)) {
  1920. scsi_set_resid(scpnt, fcp_rsp_iu->fcp_resid);
  1921. if (scsi_bufflen(scpnt) - scsi_get_resid(scpnt) <
  1922. scpnt->underflow)
  1923. set_host_byte(scpnt, DID_ERROR);
  1924. }
  1925. skip_fsfstatus:
  1926. if (scpnt->result != 0)
  1927. zfcp_scsi_dbf_event_result("erro", 3, req->adapter, scpnt, req);
  1928. else if (scpnt->retries > 0)
  1929. zfcp_scsi_dbf_event_result("retr", 4, req->adapter, scpnt, req);
  1930. else
  1931. zfcp_scsi_dbf_event_result("norm", 6, req->adapter, scpnt, req);
  1932. scpnt->host_scribble = NULL;
  1933. (scpnt->scsi_done) (scpnt);
  1934. /*
  1935. * We must hold this lock until scsi_done has been called.
  1936. * Otherwise we may call scsi_done after abort regarding this
  1937. * command has completed.
  1938. * Note: scsi_done must not block!
  1939. */
  1940. read_unlock_irqrestore(&req->adapter->abort_lock, flags);
  1941. }
  1942. static void zfcp_fsf_send_fcp_ctm_handler(struct zfcp_fsf_req *req)
  1943. {
  1944. struct fcp_rsp_iu *fcp_rsp_iu = (struct fcp_rsp_iu *)
  1945. &(req->qtcb->bottom.io.fcp_rsp);
  1946. char *fcp_rsp_info = (unsigned char *) &fcp_rsp_iu[1];
  1947. if ((fcp_rsp_info[3] != RSP_CODE_GOOD) ||
  1948. (req->status & ZFCP_STATUS_FSFREQ_ERROR))
  1949. req->status |= ZFCP_STATUS_FSFREQ_TMFUNCFAILED;
  1950. }
  1951. static void zfcp_fsf_send_fcp_command_handler(struct zfcp_fsf_req *req)
  1952. {
  1953. struct zfcp_unit *unit;
  1954. struct fsf_qtcb_header *header = &req->qtcb->header;
  1955. if (unlikely(req->status & ZFCP_STATUS_FSFREQ_TASK_MANAGEMENT))
  1956. unit = req->data;
  1957. else
  1958. unit = req->unit;
  1959. if (unlikely(req->status & ZFCP_STATUS_FSFREQ_ERROR))
  1960. goto skip_fsfstatus;
  1961. switch (header->fsf_status) {
  1962. case FSF_HANDLE_MISMATCH:
  1963. case FSF_PORT_HANDLE_NOT_VALID:
  1964. zfcp_erp_adapter_reopen(unit->port->adapter, 0, "fssfch1", req);
  1965. req->status |= ZFCP_STATUS_FSFREQ_ERROR;
  1966. break;
  1967. case FSF_FCPLUN_NOT_VALID:
  1968. case FSF_LUN_HANDLE_NOT_VALID:
  1969. zfcp_erp_port_reopen(unit->port, 0, "fssfch2", req);
  1970. req->status |= ZFCP_STATUS_FSFREQ_ERROR;
  1971. break;
  1972. case FSF_SERVICE_CLASS_NOT_SUPPORTED:
  1973. zfcp_fsf_class_not_supp(req);
  1974. break;
  1975. case FSF_ACCESS_DENIED:
  1976. zfcp_fsf_access_denied_unit(req, unit);
  1977. break;
  1978. case FSF_DIRECTION_INDICATOR_NOT_VALID:
  1979. dev_err(&req->adapter->ccw_device->dev,
  1980. "Incorrect direction %d, unit 0x%016Lx on port "
  1981. "0x%016Lx closed\n",
  1982. req->qtcb->bottom.io.data_direction,
  1983. (unsigned long long)unit->fcp_lun,
  1984. (unsigned long long)unit->port->wwpn);
  1985. zfcp_erp_adapter_shutdown(unit->port->adapter, 0, "fssfch3",
  1986. req);
  1987. req->status |= ZFCP_STATUS_FSFREQ_ERROR;
  1988. break;
  1989. case FSF_CMND_LENGTH_NOT_VALID:
  1990. dev_err(&req->adapter->ccw_device->dev,
  1991. "Incorrect CDB length %d, unit 0x%016Lx on "
  1992. "port 0x%016Lx closed\n",
  1993. req->qtcb->bottom.io.fcp_cmnd_length,
  1994. (unsigned long long)unit->fcp_lun,
  1995. (unsigned long long)unit->port->wwpn);
  1996. zfcp_erp_adapter_shutdown(unit->port->adapter, 0, "fssfch4",
  1997. req);
  1998. req->status |= ZFCP_STATUS_FSFREQ_ERROR;
  1999. break;
  2000. case FSF_PORT_BOXED:
  2001. zfcp_erp_port_boxed(unit->port, "fssfch5", req);
  2002. req->status |= ZFCP_STATUS_FSFREQ_ERROR |
  2003. ZFCP_STATUS_FSFREQ_RETRY;
  2004. break;
  2005. case FSF_LUN_BOXED:
  2006. zfcp_erp_unit_boxed(unit, "fssfch6", req);
  2007. req->status |= ZFCP_STATUS_FSFREQ_ERROR |
  2008. ZFCP_STATUS_FSFREQ_RETRY;
  2009. break;
  2010. case FSF_ADAPTER_STATUS_AVAILABLE:
  2011. if (header->fsf_status_qual.word[0] ==
  2012. FSF_SQ_INVOKE_LINK_TEST_PROCEDURE)
  2013. zfcp_test_link(unit->port);
  2014. req->status |= ZFCP_STATUS_FSFREQ_ERROR;
  2015. break;
  2016. }
  2017. skip_fsfstatus:
  2018. if (req->status & ZFCP_STATUS_FSFREQ_TASK_MANAGEMENT)
  2019. zfcp_fsf_send_fcp_ctm_handler(req);
  2020. else {
  2021. zfcp_fsf_send_fcp_command_task_handler(req);
  2022. req->unit = NULL;
  2023. zfcp_unit_put(unit);
  2024. }
  2025. }
  2026. static void zfcp_set_fcp_dl(struct fcp_cmnd_iu *fcp_cmd, u32 fcp_dl)
  2027. {
  2028. u32 *fcp_dl_ptr;
  2029. /*
  2030. * fcp_dl_addr = start address of fcp_cmnd structure +
  2031. * size of fixed part + size of dynamically sized add_dcp_cdb field
  2032. * SEE FCP-2 documentation
  2033. */
  2034. fcp_dl_ptr = (u32 *) ((unsigned char *) &fcp_cmd[1] +
  2035. (fcp_cmd->add_fcp_cdb_length << 2));
  2036. *fcp_dl_ptr = fcp_dl;
  2037. }
  2038. /**
  2039. * zfcp_fsf_send_fcp_command_task - initiate an FCP command (for a SCSI command)
  2040. * @unit: unit where command is sent to
  2041. * @scsi_cmnd: scsi command to be sent
  2042. */
  2043. int zfcp_fsf_send_fcp_command_task(struct zfcp_unit *unit,
  2044. struct scsi_cmnd *scsi_cmnd)
  2045. {
  2046. struct zfcp_fsf_req *req;
  2047. struct fcp_cmnd_iu *fcp_cmnd_iu;
  2048. unsigned int sbtype = SBAL_FLAGS0_TYPE_READ;
  2049. int real_bytes, retval = -EIO;
  2050. struct zfcp_adapter *adapter = unit->port->adapter;
  2051. if (unlikely(!(atomic_read(&unit->status) &
  2052. ZFCP_STATUS_COMMON_UNBLOCKED)))
  2053. return -EBUSY;
  2054. spin_lock(&adapter->req_q_lock);
  2055. if (atomic_read(&adapter->req_q.count) <= 0) {
  2056. atomic_inc(&adapter->qdio_outb_full);
  2057. goto out;
  2058. }
  2059. req = zfcp_fsf_req_create(adapter, FSF_QTCB_FCP_CMND,
  2060. ZFCP_REQ_AUTO_CLEANUP,
  2061. adapter->pool.fsf_req_scsi);
  2062. if (IS_ERR(req)) {
  2063. retval = PTR_ERR(req);
  2064. goto out;
  2065. }
  2066. zfcp_unit_get(unit);
  2067. req->unit = unit;
  2068. req->data = scsi_cmnd;
  2069. req->handler = zfcp_fsf_send_fcp_command_handler;
  2070. req->qtcb->header.lun_handle = unit->handle;
  2071. req->qtcb->header.port_handle = unit->port->handle;
  2072. req->qtcb->bottom.io.service_class = FSF_CLASS_3;
  2073. scsi_cmnd->host_scribble = (unsigned char *) req->req_id;
  2074. fcp_cmnd_iu = (struct fcp_cmnd_iu *) &(req->qtcb->bottom.io.fcp_cmnd);
  2075. fcp_cmnd_iu->fcp_lun = unit->fcp_lun;
  2076. /*
  2077. * set depending on data direction:
  2078. * data direction bits in SBALE (SB Type)
  2079. * data direction bits in QTCB
  2080. * data direction bits in FCP_CMND IU
  2081. */
  2082. switch (scsi_cmnd->sc_data_direction) {
  2083. case DMA_NONE:
  2084. req->qtcb->bottom.io.data_direction = FSF_DATADIR_CMND;
  2085. break;
  2086. case DMA_FROM_DEVICE:
  2087. req->qtcb->bottom.io.data_direction = FSF_DATADIR_READ;
  2088. fcp_cmnd_iu->rddata = 1;
  2089. break;
  2090. case DMA_TO_DEVICE:
  2091. req->qtcb->bottom.io.data_direction = FSF_DATADIR_WRITE;
  2092. sbtype = SBAL_FLAGS0_TYPE_WRITE;
  2093. fcp_cmnd_iu->wddata = 1;
  2094. break;
  2095. case DMA_BIDIRECTIONAL:
  2096. goto failed_scsi_cmnd;
  2097. }
  2098. if (likely((scsi_cmnd->device->simple_tags) ||
  2099. ((atomic_read(&unit->status) & ZFCP_STATUS_UNIT_READONLY) &&
  2100. (atomic_read(&unit->status) & ZFCP_STATUS_UNIT_SHARED))))
  2101. fcp_cmnd_iu->task_attribute = SIMPLE_Q;
  2102. else
  2103. fcp_cmnd_iu->task_attribute = UNTAGGED;
  2104. if (unlikely(scsi_cmnd->cmd_len > FCP_CDB_LENGTH))
  2105. fcp_cmnd_iu->add_fcp_cdb_length =
  2106. (scsi_cmnd->cmd_len - FCP_CDB_LENGTH) >> 2;
  2107. memcpy(fcp_cmnd_iu->fcp_cdb, scsi_cmnd->cmnd, scsi_cmnd->cmd_len);
  2108. req->qtcb->bottom.io.fcp_cmnd_length = sizeof(struct fcp_cmnd_iu) +
  2109. fcp_cmnd_iu->add_fcp_cdb_length + sizeof(u32);
  2110. real_bytes = zfcp_qdio_sbals_from_sg(req, sbtype,
  2111. scsi_sglist(scsi_cmnd),
  2112. FSF_MAX_SBALS_PER_REQ);
  2113. if (unlikely(real_bytes < 0)) {
  2114. if (req->sbal_number >= FSF_MAX_SBALS_PER_REQ) {
  2115. dev_err(&adapter->ccw_device->dev,
  2116. "Oversize data package, unit 0x%016Lx "
  2117. "on port 0x%016Lx closed\n",
  2118. (unsigned long long)unit->fcp_lun,
  2119. (unsigned long long)unit->port->wwpn);
  2120. zfcp_erp_unit_shutdown(unit, 0, "fssfct1", req);
  2121. retval = -EINVAL;
  2122. }
  2123. goto failed_scsi_cmnd;
  2124. }
  2125. zfcp_set_fcp_dl(fcp_cmnd_iu, real_bytes);
  2126. retval = zfcp_fsf_req_send(req);
  2127. if (unlikely(retval))
  2128. goto failed_scsi_cmnd;
  2129. goto out;
  2130. failed_scsi_cmnd:
  2131. zfcp_unit_put(unit);
  2132. zfcp_fsf_req_free(req);
  2133. scsi_cmnd->host_scribble = NULL;
  2134. out:
  2135. spin_unlock(&adapter->req_q_lock);
  2136. return retval;
  2137. }
  2138. /**
  2139. * zfcp_fsf_send_fcp_ctm - send SCSI task management command
  2140. * @unit: pointer to struct zfcp_unit
  2141. * @tm_flags: unsigned byte for task management flags
  2142. * Returns: on success pointer to struct fsf_req, NULL otherwise
  2143. */
  2144. struct zfcp_fsf_req *zfcp_fsf_send_fcp_ctm(struct zfcp_unit *unit, u8 tm_flags)
  2145. {
  2146. struct qdio_buffer_element *sbale;
  2147. struct zfcp_fsf_req *req = NULL;
  2148. struct fcp_cmnd_iu *fcp_cmnd_iu;
  2149. struct zfcp_adapter *adapter = unit->port->adapter;
  2150. if (unlikely(!(atomic_read(&unit->status) &
  2151. ZFCP_STATUS_COMMON_UNBLOCKED)))
  2152. return NULL;
  2153. spin_lock_bh(&adapter->req_q_lock);
  2154. if (zfcp_fsf_req_sbal_get(adapter))
  2155. goto out;
  2156. req = zfcp_fsf_req_create(adapter, FSF_QTCB_FCP_CMND, 0,
  2157. adapter->pool.fsf_req_scsi);
  2158. if (IS_ERR(req)) {
  2159. req = NULL;
  2160. goto out;
  2161. }
  2162. req->status |= ZFCP_STATUS_FSFREQ_TASK_MANAGEMENT;
  2163. req->data = unit;
  2164. req->handler = zfcp_fsf_send_fcp_command_handler;
  2165. req->qtcb->header.lun_handle = unit->handle;
  2166. req->qtcb->header.port_handle = unit->port->handle;
  2167. req->qtcb->bottom.io.data_direction = FSF_DATADIR_CMND;
  2168. req->qtcb->bottom.io.service_class = FSF_CLASS_3;
  2169. req->qtcb->bottom.io.fcp_cmnd_length = sizeof(struct fcp_cmnd_iu) +
  2170. sizeof(u32);
  2171. sbale = zfcp_qdio_sbale_req(req);
  2172. sbale[0].flags |= SBAL_FLAGS0_TYPE_WRITE;
  2173. sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY;
  2174. fcp_cmnd_iu = (struct fcp_cmnd_iu *) &req->qtcb->bottom.io.fcp_cmnd;
  2175. fcp_cmnd_iu->fcp_lun = unit->fcp_lun;
  2176. fcp_cmnd_iu->task_management_flags = tm_flags;
  2177. zfcp_fsf_start_timer(req, ZFCP_SCSI_ER_TIMEOUT);
  2178. if (!zfcp_fsf_req_send(req))
  2179. goto out;
  2180. zfcp_fsf_req_free(req);
  2181. req = NULL;
  2182. out:
  2183. spin_unlock_bh(&adapter->req_q_lock);
  2184. return req;
  2185. }
  2186. static void zfcp_fsf_control_file_handler(struct zfcp_fsf_req *req)
  2187. {
  2188. }
  2189. /**
  2190. * zfcp_fsf_control_file - control file upload/download
  2191. * @adapter: pointer to struct zfcp_adapter
  2192. * @fsf_cfdc: pointer to struct zfcp_fsf_cfdc
  2193. * Returns: on success pointer to struct zfcp_fsf_req, NULL otherwise
  2194. */
  2195. struct zfcp_fsf_req *zfcp_fsf_control_file(struct zfcp_adapter *adapter,
  2196. struct zfcp_fsf_cfdc *fsf_cfdc)
  2197. {
  2198. struct qdio_buffer_element *sbale;
  2199. struct zfcp_fsf_req *req = NULL;
  2200. struct fsf_qtcb_bottom_support *bottom;
  2201. int direction, retval = -EIO, bytes;
  2202. if (!(adapter->adapter_features & FSF_FEATURE_CFDC))
  2203. return ERR_PTR(-EOPNOTSUPP);
  2204. switch (fsf_cfdc->command) {
  2205. case FSF_QTCB_DOWNLOAD_CONTROL_FILE:
  2206. direction = SBAL_FLAGS0_TYPE_WRITE;
  2207. break;
  2208. case FSF_QTCB_UPLOAD_CONTROL_FILE:
  2209. direction = SBAL_FLAGS0_TYPE_READ;
  2210. break;
  2211. default:
  2212. return ERR_PTR(-EINVAL);
  2213. }
  2214. spin_lock_bh(&adapter->req_q_lock);
  2215. if (zfcp_fsf_req_sbal_get(adapter))
  2216. goto out;
  2217. req = zfcp_fsf_req_create(adapter, fsf_cfdc->command, 0, NULL);
  2218. if (IS_ERR(req)) {
  2219. retval = -EPERM;
  2220. goto out;
  2221. }
  2222. req->handler = zfcp_fsf_control_file_handler;
  2223. sbale = zfcp_qdio_sbale_req(req);
  2224. sbale[0].flags |= direction;
  2225. bottom = &req->qtcb->bottom.support;
  2226. bottom->operation_subtype = FSF_CFDC_OPERATION_SUBTYPE;
  2227. bottom->option = fsf_cfdc->option;
  2228. bytes = zfcp_qdio_sbals_from_sg(req, direction, fsf_cfdc->sg,
  2229. FSF_MAX_SBALS_PER_REQ);
  2230. if (bytes != ZFCP_CFDC_MAX_SIZE) {
  2231. retval = -ENOMEM;
  2232. zfcp_fsf_req_free(req);
  2233. goto out;
  2234. }
  2235. zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT);
  2236. retval = zfcp_fsf_req_send(req);
  2237. out:
  2238. spin_unlock_bh(&adapter->req_q_lock);
  2239. if (!retval) {
  2240. wait_event(req->completion_wq,
  2241. req->status & ZFCP_STATUS_FSFREQ_COMPLETED);
  2242. return req;
  2243. }
  2244. return ERR_PTR(retval);
  2245. }