2 .\" Copyright (c) 2009, Sun Microsystems Inc. All Rights Reserved.
3 .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing.
4 .\" See the License for the specific language governing permissions and limitations under the License. When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with
5 .\" the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner]
6 .TH FCOE_CREATEPORT 3FCOE "Apr 1, 2009"
8 FCOE_CreatePort \- create an FCoE port
12 cc [ \fIflag\fR... ] \fIfile\fR... -lfcoe [ \fIlibrary\fR... ]
15 \fBint\fR \fBFCOE_CreatePort\fR(\fBconst char *\fR\fImacLinkName\fR, \fBint\fR \fIportType\fR,
16 \fBstruct fcoe_port_wwn\fR \fIpwwn\fR, \fBstruct fcoe_port_wwn\fR \fInwwn\fR,
17 \fBint\fR \fIpromiscuous\fR);
24 \fB\fImacLinkName\fR\fR
27 The name of the MAC link on which to create the FCoE port.
36 This parameter should always be \fBFCOE_PORTTYPE_TARGET\fR.
45 The Port WorldWideName to be used for the FCoE port. Fill the structure with
46 zeros to let the \fBfcoe\fR driver generate a valid Port WWN from the MAC
47 address of the underlying NIC hardware.
56 The Node WorldWideName to be used for the FCoE port. Fill the structure with
57 zeros to let the \fBfcoe\fR driver generate a valid Node WWN from the MAC
58 address of the underlying NIC hardware.
64 \fB\fIpromiscuous\fR\fR
67 A non-zero value to enable promiscuous mode on the underlying NIC hardware. A
68 value of 0 indicates use of the multiple unicast address feature of the
69 underlying NIC hardware.
75 The \fBFCOE_CreatePort()\fR function creates an FCoE port over the specified
80 The following values are returned:
84 \fB\fBFCOE_STATUS_ERROR_BUSY\fR\fR
88 The \fBfcoe\fR driver is busy and cannot complete the operation.
94 \fB\fBFCOE_STATUS_ERROR_ALREADY\fR\fR
98 An existing FCoE port was found over the specified MAC link.
104 \fB\fBFCOE_STATUS_ERROR_OPEN_DEV\fR\fR
108 Failed to open \fBfcoe\fR device.
114 \fB\fBFCOE_STATUS_ERROR_WWN_SAME\fR\fR
118 The specified Port WWN is same as the specified Node WWN.
124 \fB\fBFCOE_STATUS_ERROR_MAC_LEN\fR\fR
128 MAC link name exceeds the maximum length.
134 \fB\fBFCOE_STATUS_ERROR_PWWN_CONFLICTED\fR\fR
138 The specified Port WWN is already in use.
144 \fB\fBFCOE_STATUS_ERROR_NWWN_CONFLICTED\fR\fR
148 The specified Node WWN is already in use.
154 \fB\fBFCOE_STATUS_ERROR_NEED_JUMBO_FRAME\fR\fR
158 The MTU size of the specified MAC link needs to be increased to 2500 or above.
164 \fB\fBFCOE_STATUS_ERROR_OPEN_MAC\fR\fR
168 Failed to open the specified MAC link.
174 \fB\fBFCOE_STATUS_ERROR_CREATE_PORT\fR\fR
178 Failed to create FCoE port on the specified MAC link.
184 \fB\fBFCOE_STATUS_OK\fR\fR
188 The API call was successful.
194 See \fBattributes\fR(5) for descriptions of the following attributes:
202 ATTRIBUTE TYPE ATTRIBUTE VALUE
204 Interface Stability Committed
212 \fBlibfcoe\fR(3LIB), \fBattributes\fR(5)