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
);
32 * qed_get_protocol_stats_fcoe(): Fills provided statistics
33 * struct with statistics.
35 * @cdev: Qed dev pointer.
36 * @stats: Points to struct that will be filled with statistics.
37 * @is_atomic: Hint from the caller - if the func can sleep or not.
39 * Context: The function should not sleep in case is_atomic == true.
42 void qed_get_protocol_stats_fcoe(struct qed_dev
*cdev
,
43 struct qed_mcp_fcoe_stats
*stats
,
45 #else /* CONFIG_QED_FCOE */
46 static inline int qed_fcoe_alloc(struct qed_hwfn
*p_hwfn
)
51 static inline void qed_fcoe_setup(struct qed_hwfn
*p_hwfn
) {}
52 static inline void qed_fcoe_free(struct qed_hwfn
*p_hwfn
) {}
54 static inline void qed_get_protocol_stats_fcoe(struct qed_dev
*cdev
,
55 struct qed_mcp_fcoe_stats
*stats
,
59 #endif /* CONFIG_QED_FCOE */
61 #endif /* _QED_FCOE_H */