4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
22 * Copyright 2010 Sun Microsystems, Inc. All rights reserved.
23 * Use is subject to license terms.
24 * Copyright 2014 Joyent, Inc. All rights reserved.
27 #ifndef _SYS_VNIC_IMPL_H
28 #define _SYS_VNIC_IMPL_H
31 #include <sys/mac_provider.h>
32 #include <sys/mac_client.h>
33 #include <sys/mac_client_priv.h>
35 #include <sys/mac_flow.h>
36 #include <sys/ksynch.h>
42 typedef struct vnic_s
{
46 vn_pad_to_bit_31
: 31;
49 mac_handle_t vn_lower_mh
;
50 uint_t vn_nhandles
; /* # of secondary mac handles */
51 /* The primary handle is always the first element in the array */
52 mac_client_handle_t vn_mc_handles
[MPT_MAXMACADDR
];
53 mac_unicast_handle_t vn_mu_handles
[MPT_MAXMACADDR
];
56 vnic_mac_addr_type_t vn_addr_type
;
57 uint8_t vn_addr
[MAXMACADDRLEN
];
63 datalink_id_t vn_link_id
;
64 mac_notify_handle_t vn_mnh
;
66 uint32_t vn_hcksum_txflags
;
70 #define vn_mch vn_mc_handles[0]
71 #define vn_muh vn_mu_handles[0]
73 extern int vnic_dev_create(datalink_id_t
, datalink_id_t
, vnic_mac_addr_type_t
*,
74 int *, uchar_t
*, int *, uint_t
, uint16_t, vrid_t
, int,
75 mac_resource_props_t
*, uint32_t, vnic_ioc_diag_t
*, cred_t
*);
76 extern int vnic_dev_modify(datalink_id_t
, uint_t
, vnic_mac_addr_type_t
,
77 uint_t
, uchar_t
*, uint_t
, mac_resource_props_t
*);
78 extern int vnic_dev_delete(datalink_id_t
, uint32_t, cred_t
*);
80 extern void vnic_dev_init(void);
81 extern void vnic_dev_fini(void);
82 extern uint_t
vnic_dev_count(void);
83 extern dev_info_t
*vnic_get_dip(void);
85 extern int vnic_info(vnic_info_t
*, cred_t
*);
91 #endif /* _SYS_VNIC_IMPL_H */