fc_npiv.c 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /*
  2. * Copyright(c) 2009 Intel Corporation. All rights reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or modify it
  5. * under the terms and conditions of the GNU General Public License,
  6. * version 2, as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope it will be useful, but WITHOUT
  9. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  10. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  11. * more details.
  12. *
  13. * You should have received a copy of the GNU General Public License along with
  14. * this program; if not, write to the Free Software Foundation, Inc.,
  15. * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
  16. *
  17. * Maintained at www.Open-FCoE.org
  18. */
  19. /*
  20. * NPIV VN_Port helper functions for libfc
  21. */
  22. #include <scsi/libfc.h>
  23. /**
  24. * fc_vport_create() - Create a new NPIV vport instance
  25. * @vport: fc_vport structure from scsi_transport_fc
  26. * @privsize: driver private data size to allocate along with the Scsi_Host
  27. */
  28. struct fc_lport *libfc_vport_create(struct fc_vport *vport, int privsize)
  29. {
  30. struct Scsi_Host *shost = vport_to_shost(vport);
  31. struct fc_lport *n_port = shost_priv(shost);
  32. struct fc_lport *vn_port;
  33. vn_port = libfc_host_alloc(shost->hostt, privsize);
  34. if (!vn_port)
  35. goto err_out;
  36. if (fc_exch_mgr_list_clone(n_port, vn_port))
  37. goto err_put;
  38. vn_port->vport = vport;
  39. vport->dd_data = vn_port;
  40. mutex_lock(&n_port->lp_mutex);
  41. list_add_tail(&vn_port->list, &n_port->vports);
  42. mutex_unlock(&n_port->lp_mutex);
  43. return vn_port;
  44. err_put:
  45. scsi_host_put(vn_port->host);
  46. err_out:
  47. return NULL;
  48. }
  49. EXPORT_SYMBOL(libfc_vport_create);
  50. /**
  51. * fc_vport_id_lookup() - find NPIV lport that matches a given fabric ID
  52. * @n_port: Top level N_Port which may have multiple NPIV VN_Ports
  53. * @port_id: Fabric ID to find a match for
  54. *
  55. * Returns: matching lport pointer or NULL if there is no match
  56. */
  57. struct fc_lport *fc_vport_id_lookup(struct fc_lport *n_port, u32 port_id)
  58. {
  59. struct fc_lport *lport = NULL;
  60. struct fc_lport *vn_port;
  61. if (fc_host_port_id(n_port->host) == port_id)
  62. return n_port;
  63. mutex_lock(&n_port->lp_mutex);
  64. list_for_each_entry(vn_port, &n_port->vports, list) {
  65. if (fc_host_port_id(vn_port->host) == port_id) {
  66. lport = vn_port;
  67. break;
  68. }
  69. }
  70. mutex_unlock(&n_port->lp_mutex);
  71. return lport;
  72. }