1219820Sjeff/*-
2219820Sjeff * Copyright (c) 2010 Isilon Systems, Inc.
3219820Sjeff * Copyright (c) 2010 iX Systems, Inc.
4219820Sjeff * Copyright (c) 2010 Panasas, Inc.
5294830Shselasky * Copyright (c) 2013-2016 Mellanox Technologies, Ltd.
6219820Sjeff * All rights reserved.
7219820Sjeff *
8219820Sjeff * Redistribution and use in source and binary forms, with or without
9219820Sjeff * modification, are permitted provided that the following conditions
10219820Sjeff * are met:
11219820Sjeff * 1. Redistributions of source code must retain the above copyright
12219820Sjeff *    notice unmodified, this list of conditions, and the following
13219820Sjeff *    disclaimer.
14219820Sjeff * 2. Redistributions in binary form must reproduce the above copyright
15219820Sjeff *    notice, this list of conditions and the following disclaimer in the
16219820Sjeff *    documentation and/or other materials provided with the distribution.
17219820Sjeff *
18219820Sjeff * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19219820Sjeff * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20219820Sjeff * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21219820Sjeff * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22219820Sjeff * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23219820Sjeff * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24219820Sjeff * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25219820Sjeff * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26219820Sjeff * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27219820Sjeff * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28289644Shselasky *
29289644Shselasky * $FreeBSD: stable/11/sys/compat/linuxkpi/common/include/linux/if_vlan.h 331756 2018-03-30 02:04:46Z emaste $
30219820Sjeff */
31219820Sjeff#ifndef	_LINUX_IF_VLAN_H_
32219820Sjeff#define	_LINUX_IF_VLAN_H_
33219820Sjeff
34290335Shselasky#include <sys/types.h>
35270710Shselasky#include <sys/socket.h>
36270710Shselasky#include <net/if.h>
37219820Sjeff#include <net/ethernet.h>
38294830Shselasky#include <net/if_var.h>
39219820Sjeff#include <net/if_vlan_var.h>
40294830Shselasky#include <net/if_types.h>
41219820Sjeff
42331756Semaste#define VLAN_N_VID	4096
43270710Shselasky
44294830Shselaskystatic inline int
45294830Shselaskyis_vlan_dev(struct ifnet *ifp)
46294830Shselasky{
47294830Shselasky	return (ifp->if_type == IFT_L2VLAN);
48294830Shselasky}
49294830Shselasky
50294830Shselaskystatic inline uint16_t
51294830Shselaskyvlan_dev_vlan_id(struct ifnet *ifp)
52294830Shselasky{
53294830Shselasky	uint16_t vtag;
54294830Shselasky	if (VLAN_TAG(ifp, &vtag) == 0)
55294830Shselasky		return (vtag);
56294830Shselasky	return (0);
57294830Shselasky}
58294830Shselasky
59219820Sjeff#endif	/* _LINUX_IF_VLAN_H_ */
60