zfcp_aux.c 19 KB

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