/* SPDX-License-Identifier: GPL-2.0+ WITH Linux-syscall-note */ /* * INET An implementation of the TCP/IP protocol suite for the LINUX * operating system. INET is implemented using the BSD Socket * interface as the means of communication with the user level. * * Global definitions for Fibre Channel. * * Version: @(#)if_fc.h 0.0 11/20/98 * * Author: Fred N. van Kempen, <[email protected]> * Donald Becker, <[email protected]> * Peter De Schrijver, <[email protected]> * Vineet Abraham, <[email protected]> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version * 2 of the License, or (at your option) any later version. */ #ifndef _LINUX_IF_FC_H #define _LINUX_IF_FC_H #include <linux/types.h> #define FC_ALEN … #define FC_HLEN … #define FC_ID_LEN … /* LLC and SNAP constants */ #define EXTENDED_SAP … #define UI_CMD … /* This is NOT the Fibre Channel frame header. The FC frame header is * constructed in the driver as the Tachyon needs certain fields in * certains positions. So, it can't be generalized here.*/ struct fch_hdr { … }; /* This is a Fibre Channel LLC structure */ struct fcllc { … }; #endif /* _LINUX_IF_FC_H */