mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2025-11-25 16:33:36 +00:00
Based on the normalized pattern:
this program is free software you may redistribute it and/or modify it
under the terms of the gnu general public license as published by the
free software foundation version 2 of the license the software is
provided as is without warranty of any kind express or implied
including but not limited to the warranties of merchantability fitness
for a particular purpose and noninfringement in no event shall the
authors or copyright holders be liable for any claim damages or other
liability whether in an action of contract tort or otherwise arising
from out of or in connection with the software or the use or other
dealings in the software
extracted by the scancode license scanner the SPDX license identifier
GPL-2.0-only
has been chosen to replace the boilerplate/reference.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
49 lines
999 B
C
49 lines
999 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright 2008 Cisco Systems, Inc. All rights reserved.
|
|
* Copyright 2007 Nuova Systems, Inc. All rights reserved.
|
|
*/
|
|
|
|
#ifndef _FNIC_FIP_H_
|
|
#define _FNIC_FIP_H_
|
|
|
|
|
|
#define FCOE_CTLR_START_DELAY 2000 /* ms after first adv. to choose FCF */
|
|
#define FCOE_CTLR_FIPVLAN_TOV 2000 /* ms after FIP VLAN disc */
|
|
#define FCOE_CTLR_MAX_SOL 8
|
|
|
|
#define FINC_MAX_FLOGI_REJECTS 8
|
|
|
|
struct vlan {
|
|
__be16 vid;
|
|
__be16 type;
|
|
};
|
|
|
|
/*
|
|
* VLAN entry.
|
|
*/
|
|
struct fcoe_vlan {
|
|
struct list_head list;
|
|
u16 vid; /* vlan ID */
|
|
u16 sol_count; /* no. of sols sent */
|
|
u16 state; /* state */
|
|
};
|
|
|
|
enum fip_vlan_state {
|
|
FIP_VLAN_AVAIL = 0, /* don't do anything */
|
|
FIP_VLAN_SENT = 1, /* sent */
|
|
FIP_VLAN_USED = 2, /* succeed */
|
|
FIP_VLAN_FAILED = 3, /* failed to response */
|
|
};
|
|
|
|
struct fip_vlan {
|
|
struct ethhdr eth;
|
|
struct fip_header fip;
|
|
struct {
|
|
struct fip_mac_desc mac;
|
|
struct fip_wwn_desc wwnn;
|
|
} desc;
|
|
};
|
|
|
|
#endif /* __FINC_FIP_H_ */
|