1 /* SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause) */
2 /* QLogic qed NIC Driver
3 * Copyright (c) 2015-2017 QLogic Corporation
4 * Copyright (c) 2019-2020 Marvell International Ltd.
9 #include <linux/types.h>
10 #include <linux/list.h>
11 #include <linux/slab.h>
12 #include <linux/spinlock.h>
13 #include <linux/qed/qed_fcoe_if.h>
14 #include <linux/qed/qed_chain.h>
20 struct qed_fcoe_info
{
21 spinlock_t lock
; /* Connection resources. */
22 struct list_head free_list
;
25 #if IS_ENABLED(CONFIG_QED_FCOE)
26 int qed_fcoe_alloc(struct qed_hwfn
*p_hwfn
);
28 void qed_fcoe_setup(struct qed_hwfn
*p_hwfn
);
30 void qed_fcoe_free(struct qed_hwfn
*p_hwfn
);
31 void qed_get_protocol_stats_fcoe(struct qed_dev
*cdev
,
32 struct qed_mcp_fcoe_stats
*stats
);
33 #else /* CONFIG_QED_FCOE */
34 static inline int qed_fcoe_alloc(struct qed_hwfn
*p_hwfn
)
39 static inline void qed_fcoe_setup(struct qed_hwfn
*p_hwfn
) {}
40 static inline void qed_fcoe_free(struct qed_hwfn
*p_hwfn
) {}
42 static inline void qed_get_protocol_stats_fcoe(struct qed_dev
*cdev
,
43 struct qed_mcp_fcoe_stats
*stats
)
46 #endif /* CONFIG_QED_FCOE */
48 #endif /* _QED_FCOE_H */