/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ /* * Copyright(c) 2007 Intel Corporation. All rights reserved. * * Maintained at www.Open-FCoE.org */ #ifndef _FC_GS_H_ #define _FC_GS_H_ #include <linux/types.h> /* * Fibre Channel Services - Common Transport. * From T11.org FC-GS-2 Rev 5.3 November 1998. */ struct fc_ct_hdr { … }; #define FC_CT_HDR_LEN … enum fc_ct_rev { … }; /* * ct_fs_type values. */ enum fc_ct_fs_type { … }; /* * ct_cmd: Command / response codes */ enum fc_ct_cmd { … }; /* * FS_RJT reason codes. */ enum fc_ct_reason { … }; /* * FS_RJT reason code explanations. */ enum fc_ct_explan { … }; #endif /* _FC_GS_H_ */