zfcp_aux.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733
  1. /*
  2. * zfcp device driver
  3. *
  4. * Module interface and handling of zfcp data structures.
  5. *
  6. * Copyright IBM Corporation 2002, 2010
  7. */
  8. /*
  9. * Driver authors:
  10. * Martin Peschke (originator of the driver)
  11. * Raimund Schroeder
  12. * Aron Zeh
  13. * Wolfgang Taphorn
  14. * Stefan Bader
  15. * Heiko Carstens (kernel 2.6 port of the driver)
  16. * Andreas Herrmann
  17. * Maxim Shchetynin
  18. * Volker Sameske
  19. * Ralph Wuerthner
  20. * Michael Loehr
  21. * Swen Schillig
  22. * Christof Schmitt
  23. * Martin Petermann
  24. * Sven Schuetz
  25. */
  26. #define KMSG_COMPONENT "zfcp"
  27. #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
  28. #include <linux/miscdevice.h>
  29. #include <linux/seq_file.h>
  30. #include <linux/slab.h>
  31. #include "zfcp_ext.h"
  32. #include "zfcp_fc.h"
  33. #include "zfcp_reqlist.h"
  34. #define ZFCP_BUS_ID_SIZE 20
  35. MODULE_AUTHOR("IBM Deutschland Entwicklung GmbH - linux390@de.ibm.com");
  36. MODULE_DESCRIPTION("FCP HBA driver");
  37. MODULE_LICENSE("GPL");
  38. static char *init_device;
  39. module_param_named(device, init_device, charp, 0400);
  40. MODULE_PARM_DESC(device, "specify initial device");
  41. static struct kmem_cache *zfcp_cache_hw_align(const char *name,
  42. unsigned long size)
  43. {
  44. return kmem_cache_create(name, size, roundup_pow_of_two(size), 0, NULL);
  45. }
  46. static void __init zfcp_init_device_configure(char *busid, u64 wwpn, u64 lun)
  47. {
  48. struct ccw_device *cdev;
  49. struct zfcp_adapter *adapter;
  50. struct zfcp_port *port;
  51. struct zfcp_unit *unit;
  52. cdev = get_ccwdev_by_busid(&zfcp_ccw_driver, busid);
  53. if (!cdev)
  54. return;
  55. if (ccw_device_set_online(cdev))
  56. goto out_ccw_device;
  57. adapter = zfcp_ccw_adapter_by_cdev(cdev);
  58. if (!adapter)
  59. goto out_ccw_device;
  60. port = zfcp_get_port_by_wwpn(adapter, wwpn);
  61. if (!port)
  62. goto out_port;
  63. unit = zfcp_unit_enqueue(port, lun);
  64. if (IS_ERR(unit))
  65. goto out_unit;
  66. zfcp_erp_unit_reopen(unit, 0, "auidc_1", NULL);
  67. zfcp_erp_wait(adapter);
  68. flush_work(&unit->scsi_work);
  69. out_unit:
  70. put_device(&port->dev);
  71. out_port:
  72. zfcp_ccw_adapter_put(adapter);
  73. out_ccw_device:
  74. put_device(&cdev->dev);
  75. return;
  76. }
  77. static void __init zfcp_init_device_setup(char *devstr)
  78. {
  79. char *token;
  80. char *str, *str_saved;
  81. char busid[ZFCP_BUS_ID_SIZE];
  82. u64 wwpn, lun;
  83. /* duplicate devstr and keep the original for sysfs presentation*/
  84. str_saved = kmalloc(strlen(devstr) + 1, GFP_KERNEL);
  85. str = str_saved;
  86. if (!str)
  87. return;
  88. strcpy(str, devstr);
  89. token = strsep(&str, ",");
  90. if (!token || strlen(token) >= ZFCP_BUS_ID_SIZE)
  91. goto err_out;
  92. strncpy(busid, token, ZFCP_BUS_ID_SIZE);
  93. token = strsep(&str, ",");
  94. if (!token || strict_strtoull(token, 0, (unsigned long long *) &wwpn))
  95. goto err_out;
  96. token = strsep(&str, ",");
  97. if (!token || strict_strtoull(token, 0, (unsigned long long *) &lun))
  98. goto err_out;
  99. kfree(str_saved);
  100. zfcp_init_device_configure(busid, wwpn, lun);
  101. return;
  102. err_out:
  103. kfree(str_saved);
  104. pr_err("%s is not a valid SCSI device\n", devstr);
  105. }
  106. static int __init zfcp_module_init(void)
  107. {
  108. int retval = -ENOMEM;
  109. zfcp_data.gpn_ft_cache = zfcp_cache_hw_align("zfcp_gpn",
  110. sizeof(struct zfcp_fc_gpn_ft_req));
  111. if (!zfcp_data.gpn_ft_cache)
  112. goto out;
  113. zfcp_data.qtcb_cache = zfcp_cache_hw_align("zfcp_qtcb",
  114. sizeof(struct fsf_qtcb));
  115. if (!zfcp_data.qtcb_cache)
  116. goto out_qtcb_cache;
  117. zfcp_data.sr_buffer_cache = zfcp_cache_hw_align("zfcp_sr",
  118. sizeof(struct fsf_status_read_buffer));
  119. if (!zfcp_data.sr_buffer_cache)
  120. goto out_sr_cache;
  121. zfcp_data.gid_pn_cache = zfcp_cache_hw_align("zfcp_gid",
  122. sizeof(struct zfcp_fc_gid_pn));
  123. if (!zfcp_data.gid_pn_cache)
  124. goto out_gid_cache;
  125. zfcp_data.adisc_cache = zfcp_cache_hw_align("zfcp_adisc",
  126. sizeof(struct zfcp_fc_els_adisc));
  127. if (!zfcp_data.adisc_cache)
  128. goto out_adisc_cache;
  129. zfcp_data.scsi_transport_template =
  130. fc_attach_transport(&zfcp_transport_functions);
  131. if (!zfcp_data.scsi_transport_template)
  132. goto out_transport;
  133. retval = misc_register(&zfcp_cfdc_misc);
  134. if (retval) {
  135. pr_err("Registering the misc device zfcp_cfdc failed\n");
  136. goto out_misc;
  137. }
  138. retval = ccw_driver_register(&zfcp_ccw_driver);
  139. if (retval) {
  140. pr_err("The zfcp device driver could not register with "
  141. "the common I/O layer\n");
  142. goto out_ccw_register;
  143. }
  144. if (init_device)
  145. zfcp_init_device_setup(init_device);
  146. return 0;
  147. out_ccw_register:
  148. misc_deregister(&zfcp_cfdc_misc);
  149. out_misc:
  150. fc_release_transport(zfcp_data.scsi_transport_template);
  151. out_transport:
  152. kmem_cache_destroy(zfcp_data.adisc_cache);
  153. out_adisc_cache:
  154. kmem_cache_destroy(zfcp_data.gid_pn_cache);
  155. out_gid_cache:
  156. kmem_cache_destroy(zfcp_data.sr_buffer_cache);
  157. out_sr_cache:
  158. kmem_cache_destroy(zfcp_data.qtcb_cache);
  159. out_qtcb_cache:
  160. kmem_cache_destroy(zfcp_data.gpn_ft_cache);
  161. out:
  162. return retval;
  163. }
  164. module_init(zfcp_module_init);
  165. static void __exit zfcp_module_exit(void)
  166. {
  167. ccw_driver_unregister(&zfcp_ccw_driver);
  168. misc_deregister(&zfcp_cfdc_misc);
  169. fc_release_transport(zfcp_data.scsi_transport_template);
  170. kmem_cache_destroy(zfcp_data.adisc_cache);
  171. kmem_cache_destroy(zfcp_data.gid_pn_cache);
  172. kmem_cache_destroy(zfcp_data.sr_buffer_cache);
  173. kmem_cache_destroy(zfcp_data.qtcb_cache);
  174. kmem_cache_destroy(zfcp_data.gpn_ft_cache);
  175. }
  176. module_exit(zfcp_module_exit);
  177. /**
  178. * zfcp_get_unit_by_lun - find unit in unit list of port by FCP LUN
  179. * @port: pointer to port to search for unit
  180. * @fcp_lun: FCP LUN to search for
  181. *
  182. * Returns: pointer to zfcp_unit or NULL
  183. */
  184. struct zfcp_unit *zfcp_get_unit_by_lun(struct zfcp_port *port, u64 fcp_lun)
  185. {
  186. unsigned long flags;
  187. struct zfcp_unit *unit;
  188. read_lock_irqsave(&port->unit_list_lock, flags);
  189. list_for_each_entry(unit, &port->unit_list, list)
  190. if (unit->fcp_lun == fcp_lun) {
  191. if (!get_device(&unit->dev))
  192. unit = NULL;
  193. read_unlock_irqrestore(&port->unit_list_lock, flags);
  194. return unit;
  195. }
  196. read_unlock_irqrestore(&port->unit_list_lock, flags);
  197. return NULL;
  198. }
  199. /**
  200. * zfcp_get_port_by_wwpn - find port in port list of adapter by wwpn
  201. * @adapter: pointer to adapter to search for port
  202. * @wwpn: wwpn to search for
  203. *
  204. * Returns: pointer to zfcp_port or NULL
  205. */
  206. struct zfcp_port *zfcp_get_port_by_wwpn(struct zfcp_adapter *adapter,
  207. u64 wwpn)
  208. {
  209. unsigned long flags;
  210. struct zfcp_port *port;
  211. read_lock_irqsave(&adapter->port_list_lock, flags);
  212. list_for_each_entry(port, &adapter->port_list, list)
  213. if (port->wwpn == wwpn) {
  214. if (!get_device(&port->dev))
  215. port = NULL;
  216. read_unlock_irqrestore(&adapter->port_list_lock, flags);
  217. return port;
  218. }
  219. read_unlock_irqrestore(&adapter->port_list_lock, flags);
  220. return NULL;
  221. }
  222. /**
  223. * zfcp_unit_release - dequeue unit
  224. * @dev: pointer to device
  225. *
  226. * waits until all work is done on unit and removes it then from the unit->list
  227. * of the associated port.
  228. */
  229. static void zfcp_unit_release(struct device *dev)
  230. {
  231. struct zfcp_unit *unit = container_of(dev, struct zfcp_unit, dev);
  232. put_device(&unit->port->dev);
  233. kfree(unit);
  234. }
  235. /**
  236. * zfcp_unit_enqueue - enqueue unit to unit list of a port.
  237. * @port: pointer to port where unit is added
  238. * @fcp_lun: FCP LUN of unit to be enqueued
  239. * Returns: pointer to enqueued unit on success, ERR_PTR on error
  240. *
  241. * Sets up some unit internal structures and creates sysfs entry.
  242. */
  243. struct zfcp_unit *zfcp_unit_enqueue(struct zfcp_port *port, u64 fcp_lun)
  244. {
  245. struct zfcp_unit *unit;
  246. int retval = -ENOMEM;
  247. get_device(&port->dev);
  248. unit = zfcp_get_unit_by_lun(port, fcp_lun);
  249. if (unit) {
  250. put_device(&unit->dev);
  251. retval = -EEXIST;
  252. goto err_out;
  253. }
  254. unit = kzalloc(sizeof(struct zfcp_unit), GFP_KERNEL);
  255. if (!unit)
  256. goto err_out;
  257. unit->port = port;
  258. unit->fcp_lun = fcp_lun;
  259. unit->dev.parent = &port->dev;
  260. unit->dev.release = zfcp_unit_release;
  261. if (dev_set_name(&unit->dev, "0x%016llx",
  262. (unsigned long long) fcp_lun)) {
  263. kfree(unit);
  264. goto err_out;
  265. }
  266. retval = -EINVAL;
  267. INIT_WORK(&unit->scsi_work, zfcp_scsi_scan);
  268. spin_lock_init(&unit->latencies.lock);
  269. unit->latencies.write.channel.min = 0xFFFFFFFF;
  270. unit->latencies.write.fabric.min = 0xFFFFFFFF;
  271. unit->latencies.read.channel.min = 0xFFFFFFFF;
  272. unit->latencies.read.fabric.min = 0xFFFFFFFF;
  273. unit->latencies.cmd.channel.min = 0xFFFFFFFF;
  274. unit->latencies.cmd.fabric.min = 0xFFFFFFFF;
  275. if (device_register(&unit->dev)) {
  276. put_device(&unit->dev);
  277. goto err_out;
  278. }
  279. if (sysfs_create_group(&unit->dev.kobj, &zfcp_sysfs_unit_attrs))
  280. goto err_out_put;
  281. write_lock_irq(&port->unit_list_lock);
  282. list_add_tail(&unit->list, &port->unit_list);
  283. write_unlock_irq(&port->unit_list_lock);
  284. atomic_set_mask(ZFCP_STATUS_COMMON_RUNNING, &unit->status);
  285. return unit;
  286. err_out_put:
  287. device_unregister(&unit->dev);
  288. err_out:
  289. put_device(&port->dev);
  290. return ERR_PTR(retval);
  291. }
  292. static int zfcp_allocate_low_mem_buffers(struct zfcp_adapter *adapter)
  293. {
  294. adapter->pool.erp_req =
  295. mempool_create_kmalloc_pool(1, sizeof(struct zfcp_fsf_req));
  296. if (!adapter->pool.erp_req)
  297. return -ENOMEM;
  298. adapter->pool.gid_pn_req =
  299. mempool_create_kmalloc_pool(1, sizeof(struct zfcp_fsf_req));
  300. if (!adapter->pool.gid_pn_req)
  301. return -ENOMEM;
  302. adapter->pool.scsi_req =
  303. mempool_create_kmalloc_pool(1, sizeof(struct zfcp_fsf_req));
  304. if (!adapter->pool.scsi_req)
  305. return -ENOMEM;
  306. adapter->pool.scsi_abort =
  307. mempool_create_kmalloc_pool(1, sizeof(struct zfcp_fsf_req));
  308. if (!adapter->pool.scsi_abort)
  309. return -ENOMEM;
  310. adapter->pool.status_read_req =
  311. mempool_create_kmalloc_pool(FSF_STATUS_READS_RECOM,
  312. sizeof(struct zfcp_fsf_req));
  313. if (!adapter->pool.status_read_req)
  314. return -ENOMEM;
  315. adapter->pool.qtcb_pool =
  316. mempool_create_slab_pool(4, zfcp_data.qtcb_cache);
  317. if (!adapter->pool.qtcb_pool)
  318. return -ENOMEM;
  319. adapter->pool.status_read_data =
  320. mempool_create_slab_pool(FSF_STATUS_READS_RECOM,
  321. zfcp_data.sr_buffer_cache);
  322. if (!adapter->pool.status_read_data)
  323. return -ENOMEM;
  324. adapter->pool.gid_pn =
  325. mempool_create_slab_pool(1, zfcp_data.gid_pn_cache);
  326. if (!adapter->pool.gid_pn)
  327. return -ENOMEM;
  328. return 0;
  329. }
  330. static void zfcp_free_low_mem_buffers(struct zfcp_adapter *adapter)
  331. {
  332. if (adapter->pool.erp_req)
  333. mempool_destroy(adapter->pool.erp_req);
  334. if (adapter->pool.scsi_req)
  335. mempool_destroy(adapter->pool.scsi_req);
  336. if (adapter->pool.scsi_abort)
  337. mempool_destroy(adapter->pool.scsi_abort);
  338. if (adapter->pool.qtcb_pool)
  339. mempool_destroy(adapter->pool.qtcb_pool);
  340. if (adapter->pool.status_read_req)
  341. mempool_destroy(adapter->pool.status_read_req);
  342. if (adapter->pool.status_read_data)
  343. mempool_destroy(adapter->pool.status_read_data);
  344. if (adapter->pool.gid_pn)
  345. mempool_destroy(adapter->pool.gid_pn);
  346. }
  347. /**
  348. * zfcp_status_read_refill - refill the long running status_read_requests
  349. * @adapter: ptr to struct zfcp_adapter for which the buffers should be refilled
  350. *
  351. * Returns: 0 on success, 1 otherwise
  352. *
  353. * if there are 16 or more status_read requests missing an adapter_reopen
  354. * is triggered
  355. */
  356. int zfcp_status_read_refill(struct zfcp_adapter *adapter)
  357. {
  358. while (atomic_read(&adapter->stat_miss) > 0)
  359. if (zfcp_fsf_status_read(adapter->qdio)) {
  360. if (atomic_read(&adapter->stat_miss) >= 16) {
  361. zfcp_erp_adapter_reopen(adapter, 0, "axsref1",
  362. NULL);
  363. return 1;
  364. }
  365. break;
  366. } else
  367. atomic_dec(&adapter->stat_miss);
  368. return 0;
  369. }
  370. static void _zfcp_status_read_scheduler(struct work_struct *work)
  371. {
  372. zfcp_status_read_refill(container_of(work, struct zfcp_adapter,
  373. stat_work));
  374. }
  375. static void zfcp_print_sl(struct seq_file *m, struct service_level *sl)
  376. {
  377. struct zfcp_adapter *adapter =
  378. container_of(sl, struct zfcp_adapter, service_level);
  379. seq_printf(m, "zfcp: %s microcode level %x\n",
  380. dev_name(&adapter->ccw_device->dev),
  381. adapter->fsf_lic_version);
  382. }
  383. static int zfcp_setup_adapter_work_queue(struct zfcp_adapter *adapter)
  384. {
  385. char name[TASK_COMM_LEN];
  386. snprintf(name, sizeof(name), "zfcp_q_%s",
  387. dev_name(&adapter->ccw_device->dev));
  388. adapter->work_queue = create_singlethread_workqueue(name);
  389. if (adapter->work_queue)
  390. return 0;
  391. return -ENOMEM;
  392. }
  393. static void zfcp_destroy_adapter_work_queue(struct zfcp_adapter *adapter)
  394. {
  395. if (adapter->work_queue)
  396. destroy_workqueue(adapter->work_queue);
  397. adapter->work_queue = NULL;
  398. }
  399. /**
  400. * zfcp_adapter_enqueue - enqueue a new adapter to the list
  401. * @ccw_device: pointer to the struct cc_device
  402. *
  403. * Returns: struct zfcp_adapter*
  404. * Enqueues an adapter at the end of the adapter list in the driver data.
  405. * All adapter internal structures are set up.
  406. * Proc-fs entries are also created.
  407. */
  408. struct zfcp_adapter *zfcp_adapter_enqueue(struct ccw_device *ccw_device)
  409. {
  410. struct zfcp_adapter *adapter;
  411. if (!get_device(&ccw_device->dev))
  412. return ERR_PTR(-ENODEV);
  413. adapter = kzalloc(sizeof(struct zfcp_adapter), GFP_KERNEL);
  414. if (!adapter) {
  415. put_device(&ccw_device->dev);
  416. return ERR_PTR(-ENOMEM);
  417. }
  418. kref_init(&adapter->ref);
  419. ccw_device->handler = NULL;
  420. adapter->ccw_device = ccw_device;
  421. INIT_WORK(&adapter->stat_work, _zfcp_status_read_scheduler);
  422. INIT_WORK(&adapter->scan_work, zfcp_fc_scan_ports);
  423. if (zfcp_qdio_setup(adapter))
  424. goto failed;
  425. if (zfcp_allocate_low_mem_buffers(adapter))
  426. goto failed;
  427. adapter->req_list = zfcp_reqlist_alloc();
  428. if (!adapter->req_list)
  429. goto failed;
  430. if (zfcp_dbf_adapter_register(adapter))
  431. goto failed;
  432. if (zfcp_setup_adapter_work_queue(adapter))
  433. goto failed;
  434. if (zfcp_fc_gs_setup(adapter))
  435. goto failed;
  436. rwlock_init(&adapter->port_list_lock);
  437. INIT_LIST_HEAD(&adapter->port_list);
  438. init_waitqueue_head(&adapter->erp_ready_wq);
  439. init_waitqueue_head(&adapter->erp_done_wqh);
  440. INIT_LIST_HEAD(&adapter->erp_ready_head);
  441. INIT_LIST_HEAD(&adapter->erp_running_head);
  442. rwlock_init(&adapter->erp_lock);
  443. rwlock_init(&adapter->abort_lock);
  444. if (zfcp_erp_thread_setup(adapter))
  445. goto failed;
  446. adapter->service_level.seq_print = zfcp_print_sl;
  447. dev_set_drvdata(&ccw_device->dev, adapter);
  448. if (sysfs_create_group(&ccw_device->dev.kobj,
  449. &zfcp_sysfs_adapter_attrs))
  450. goto failed;
  451. if (!zfcp_adapter_scsi_register(adapter))
  452. return adapter;
  453. failed:
  454. zfcp_adapter_unregister(adapter);
  455. return ERR_PTR(-ENOMEM);
  456. }
  457. void zfcp_adapter_unregister(struct zfcp_adapter *adapter)
  458. {
  459. struct ccw_device *cdev = adapter->ccw_device;
  460. cancel_work_sync(&adapter->scan_work);
  461. cancel_work_sync(&adapter->stat_work);
  462. zfcp_destroy_adapter_work_queue(adapter);
  463. zfcp_fc_wka_ports_force_offline(adapter->gs);
  464. zfcp_adapter_scsi_unregister(adapter);
  465. sysfs_remove_group(&cdev->dev.kobj, &zfcp_sysfs_adapter_attrs);
  466. zfcp_erp_thread_kill(adapter);
  467. zfcp_dbf_adapter_unregister(adapter->dbf);
  468. zfcp_qdio_destroy(adapter->qdio);
  469. zfcp_ccw_adapter_put(adapter); /* final put to release */
  470. }
  471. /**
  472. * zfcp_adapter_release - remove the adapter from the resource list
  473. * @ref: pointer to struct kref
  474. * locks: adapter list write lock is assumed to be held by caller
  475. */
  476. void zfcp_adapter_release(struct kref *ref)
  477. {
  478. struct zfcp_adapter *adapter = container_of(ref, struct zfcp_adapter,
  479. ref);
  480. struct ccw_device *cdev = adapter->ccw_device;
  481. dev_set_drvdata(&adapter->ccw_device->dev, NULL);
  482. zfcp_fc_gs_destroy(adapter);
  483. zfcp_free_low_mem_buffers(adapter);
  484. kfree(adapter->req_list);
  485. kfree(adapter->fc_stats);
  486. kfree(adapter->stats_reset_data);
  487. kfree(adapter);
  488. put_device(&cdev->dev);
  489. }
  490. /**
  491. * zfcp_device_unregister - remove port, unit from system
  492. * @dev: reference to device which is to be removed
  493. * @grp: related reference to attribute group
  494. *
  495. * Helper function to unregister port, unit from system
  496. */
  497. void zfcp_device_unregister(struct device *dev,
  498. const struct attribute_group *grp)
  499. {
  500. sysfs_remove_group(&dev->kobj, grp);
  501. device_unregister(dev);
  502. }
  503. static void zfcp_port_release(struct device *dev)
  504. {
  505. struct zfcp_port *port = container_of(dev, struct zfcp_port, dev);
  506. zfcp_ccw_adapter_put(port->adapter);
  507. kfree(port);
  508. }
  509. /**
  510. * zfcp_port_enqueue - enqueue port to port list of adapter
  511. * @adapter: adapter where remote port is added
  512. * @wwpn: WWPN of the remote port to be enqueued
  513. * @status: initial status for the port
  514. * @d_id: destination id of the remote port to be enqueued
  515. * Returns: pointer to enqueued port on success, ERR_PTR on error
  516. *
  517. * All port internal structures are set up and the sysfs entry is generated.
  518. * d_id is used to enqueue ports with a well known address like the Directory
  519. * Service for nameserver lookup.
  520. */
  521. struct zfcp_port *zfcp_port_enqueue(struct zfcp_adapter *adapter, u64 wwpn,
  522. u32 status, u32 d_id)
  523. {
  524. struct zfcp_port *port;
  525. int retval = -ENOMEM;
  526. kref_get(&adapter->ref);
  527. port = zfcp_get_port_by_wwpn(adapter, wwpn);
  528. if (port) {
  529. put_device(&port->dev);
  530. retval = -EEXIST;
  531. goto err_out;
  532. }
  533. port = kzalloc(sizeof(struct zfcp_port), GFP_KERNEL);
  534. if (!port)
  535. goto err_out;
  536. rwlock_init(&port->unit_list_lock);
  537. INIT_LIST_HEAD(&port->unit_list);
  538. INIT_WORK(&port->gid_pn_work, zfcp_fc_port_did_lookup);
  539. INIT_WORK(&port->test_link_work, zfcp_fc_link_test_work);
  540. INIT_WORK(&port->rport_work, zfcp_scsi_rport_work);
  541. port->adapter = adapter;
  542. port->d_id = d_id;
  543. port->wwpn = wwpn;
  544. port->rport_task = RPORT_NONE;
  545. port->dev.parent = &adapter->ccw_device->dev;
  546. port->dev.release = zfcp_port_release;
  547. if (dev_set_name(&port->dev, "0x%016llx", (unsigned long long)wwpn)) {
  548. kfree(port);
  549. goto err_out;
  550. }
  551. retval = -EINVAL;
  552. if (device_register(&port->dev)) {
  553. put_device(&port->dev);
  554. goto err_out;
  555. }
  556. if (sysfs_create_group(&port->dev.kobj,
  557. &zfcp_sysfs_port_attrs))
  558. goto err_out_put;
  559. write_lock_irq(&adapter->port_list_lock);
  560. list_add_tail(&port->list, &adapter->port_list);
  561. write_unlock_irq(&adapter->port_list_lock);
  562. atomic_set_mask(status | ZFCP_STATUS_COMMON_RUNNING, &port->status);
  563. return port;
  564. err_out_put:
  565. device_unregister(&port->dev);
  566. err_out:
  567. zfcp_ccw_adapter_put(adapter);
  568. return ERR_PTR(retval);
  569. }
  570. /**
  571. * zfcp_sg_free_table - free memory used by scatterlists
  572. * @sg: pointer to scatterlist
  573. * @count: number of scatterlist which are to be free'ed
  574. * the scatterlist are expected to reference pages always
  575. */
  576. void zfcp_sg_free_table(struct scatterlist *sg, int count)
  577. {
  578. int i;
  579. for (i = 0; i < count; i++, sg++)
  580. if (sg)
  581. free_page((unsigned long) sg_virt(sg));
  582. else
  583. break;
  584. }
  585. /**
  586. * zfcp_sg_setup_table - init scatterlist and allocate, assign buffers
  587. * @sg: pointer to struct scatterlist
  588. * @count: number of scatterlists which should be assigned with buffers
  589. * of size page
  590. *
  591. * Returns: 0 on success, -ENOMEM otherwise
  592. */
  593. int zfcp_sg_setup_table(struct scatterlist *sg, int count)
  594. {
  595. void *addr;
  596. int i;
  597. sg_init_table(sg, count);
  598. for (i = 0; i < count; i++, sg++) {
  599. addr = (void *) get_zeroed_page(GFP_KERNEL);
  600. if (!addr) {
  601. zfcp_sg_free_table(sg, i);
  602. return -ENOMEM;
  603. }
  604. sg_set_buf(sg, addr, PAGE_SIZE);
  605. }
  606. return 0;
  607. }