1 /*******************************************************************************
3 Intel 10 Gigabit PCI Express Linux driver
4 Copyright(c) 1999 - 2009 Intel Corporation.
6 This program is free software; you can redistribute it and/or modify it
7 under the terms and conditions of the GNU General Public License,
8 version 2, as published by the Free Software Foundation.
10 This program is distributed in the hope it will be useful, but WITHOUT
11 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 You should have received a copy of the GNU General Public License along with
16 this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
19 The full GNU General Public License is included in this distribution in
20 the file called "COPYING".
23 Linux NICS <linux.nics@intel.com>
24 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
25 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27 *******************************************************************************/
30 #include <linux/dcbnl.h>
31 #include "ixgbe_dcb_82598.h"
32 #include "ixgbe_dcb_82599.h"
34 /* Callbacks for DCB netlink in the kernel */
35 #define BIT_DCB_MODE 0x01
37 #define BIT_PG_RX 0x04
38 #define BIT_PG_TX 0x08
39 #define BIT_RESETLINK 0x40
40 #define BIT_LINKSPEED 0x80
42 /* Responses for the DCB_C_SET_ALL command */
43 #define DCB_HW_CHG_RST 0 /* DCB configuration changed with reset */
44 #define DCB_NO_HW_CHG 1 /* DCB configuration did not change */
45 #define DCB_HW_CHG 2 /* DCB configuration changed, no reset */
47 int ixgbe_copy_dcb_cfg(struct ixgbe_dcb_config
*src_dcb_cfg
,
48 struct ixgbe_dcb_config
*dst_dcb_cfg
, int tc_max
)
50 struct tc_configuration
*src_tc_cfg
= NULL
;
51 struct tc_configuration
*dst_tc_cfg
= NULL
;
54 if (!src_dcb_cfg
|| !dst_dcb_cfg
)
57 for (i
= DCB_PG_ATTR_TC_0
; i
< tc_max
+ DCB_PG_ATTR_TC_0
; i
++) {
58 src_tc_cfg
= &src_dcb_cfg
->tc_config
[i
- DCB_PG_ATTR_TC_0
];
59 dst_tc_cfg
= &dst_dcb_cfg
->tc_config
[i
- DCB_PG_ATTR_TC_0
];
61 dst_tc_cfg
->path
[DCB_TX_CONFIG
].prio_type
=
62 src_tc_cfg
->path
[DCB_TX_CONFIG
].prio_type
;
64 dst_tc_cfg
->path
[DCB_TX_CONFIG
].bwg_id
=
65 src_tc_cfg
->path
[DCB_TX_CONFIG
].bwg_id
;
67 dst_tc_cfg
->path
[DCB_TX_CONFIG
].bwg_percent
=
68 src_tc_cfg
->path
[DCB_TX_CONFIG
].bwg_percent
;
70 dst_tc_cfg
->path
[DCB_TX_CONFIG
].up_to_tc_bitmap
=
71 src_tc_cfg
->path
[DCB_TX_CONFIG
].up_to_tc_bitmap
;
73 dst_tc_cfg
->path
[DCB_RX_CONFIG
].prio_type
=
74 src_tc_cfg
->path
[DCB_RX_CONFIG
].prio_type
;
76 dst_tc_cfg
->path
[DCB_RX_CONFIG
].bwg_id
=
77 src_tc_cfg
->path
[DCB_RX_CONFIG
].bwg_id
;
79 dst_tc_cfg
->path
[DCB_RX_CONFIG
].bwg_percent
=
80 src_tc_cfg
->path
[DCB_RX_CONFIG
].bwg_percent
;
82 dst_tc_cfg
->path
[DCB_RX_CONFIG
].up_to_tc_bitmap
=
83 src_tc_cfg
->path
[DCB_RX_CONFIG
].up_to_tc_bitmap
;
86 for (i
= DCB_PG_ATTR_BW_ID_0
; i
< DCB_PG_ATTR_BW_ID_MAX
; i
++) {
87 dst_dcb_cfg
->bw_percentage
[DCB_TX_CONFIG
]
88 [i
-DCB_PG_ATTR_BW_ID_0
] = src_dcb_cfg
->bw_percentage
89 [DCB_TX_CONFIG
][i
-DCB_PG_ATTR_BW_ID_0
];
90 dst_dcb_cfg
->bw_percentage
[DCB_RX_CONFIG
]
91 [i
-DCB_PG_ATTR_BW_ID_0
] = src_dcb_cfg
->bw_percentage
92 [DCB_RX_CONFIG
][i
-DCB_PG_ATTR_BW_ID_0
];
95 for (i
= DCB_PFC_UP_ATTR_0
; i
< DCB_PFC_UP_ATTR_MAX
; i
++) {
96 dst_dcb_cfg
->tc_config
[i
- DCB_PFC_UP_ATTR_0
].dcb_pfc
=
97 src_dcb_cfg
->tc_config
[i
- DCB_PFC_UP_ATTR_0
].dcb_pfc
;
100 dst_dcb_cfg
->pfc_mode_enable
= src_dcb_cfg
->pfc_mode_enable
;
105 static u8
ixgbe_dcbnl_get_state(struct net_device
*netdev
)
107 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
109 return !!(adapter
->flags
& IXGBE_FLAG_DCB_ENABLED
);
112 static u8
ixgbe_dcbnl_set_state(struct net_device
*netdev
, u8 state
)
115 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
119 if (adapter
->flags
& IXGBE_FLAG_DCB_ENABLED
)
122 if (!(adapter
->flags
& IXGBE_FLAG_MSIX_ENABLED
)) {
123 DPRINTK(DRV
, ERR
, "Enable failed, needs MSI-X\n");
128 if (netif_running(netdev
))
129 netdev
->netdev_ops
->ndo_stop(netdev
);
130 ixgbe_clear_interrupt_scheme(adapter
);
132 if (adapter
->hw
.mac
.type
== ixgbe_mac_82598EB
) {
133 adapter
->last_lfc_mode
= adapter
->hw
.fc
.current_mode
;
134 adapter
->hw
.fc
.requested_mode
= ixgbe_fc_none
;
136 adapter
->flags
&= ~IXGBE_FLAG_RSS_ENABLED
;
137 if (adapter
->hw
.mac
.type
== ixgbe_mac_82599EB
) {
138 adapter
->flags
&= ~IXGBE_FLAG_FDIR_HASH_CAPABLE
;
139 adapter
->flags
&= ~IXGBE_FLAG_FDIR_PERFECT_CAPABLE
;
141 adapter
->flags
|= IXGBE_FLAG_DCB_ENABLED
;
143 /* Turn on FCoE offload */
144 if ((adapter
->flags
& IXGBE_FLAG_FCOE_CAPABLE
) &&
145 (!(adapter
->flags
& IXGBE_FLAG_FCOE_ENABLED
))) {
146 adapter
->flags
|= IXGBE_FLAG_FCOE_ENABLED
;
147 adapter
->ring_feature
[RING_F_FCOE
].indices
=
149 netdev
->features
|= NETIF_F_FCOE_CRC
;
150 netdev
->features
|= NETIF_F_FSO
;
151 netdev
->fcoe_ddp_xid
= IXGBE_FCOE_DDP_MAX
- 1;
153 #endif /* IXGBE_FCOE */
154 ixgbe_init_interrupt_scheme(adapter
);
155 if (netif_running(netdev
))
156 netdev
->netdev_ops
->ndo_open(netdev
);
159 if (adapter
->flags
& IXGBE_FLAG_DCB_ENABLED
) {
160 if (netif_running(netdev
))
161 netdev
->netdev_ops
->ndo_stop(netdev
);
162 ixgbe_clear_interrupt_scheme(adapter
);
164 adapter
->hw
.fc
.requested_mode
= adapter
->last_lfc_mode
;
165 adapter
->temp_dcb_cfg
.pfc_mode_enable
= false;
166 adapter
->dcb_cfg
.pfc_mode_enable
= false;
167 adapter
->flags
&= ~IXGBE_FLAG_DCB_ENABLED
;
168 adapter
->flags
|= IXGBE_FLAG_RSS_ENABLED
;
169 if (adapter
->hw
.mac
.type
== ixgbe_mac_82599EB
)
170 adapter
->flags
|= IXGBE_FLAG_FDIR_HASH_CAPABLE
;
173 /* Turn off FCoE offload */
174 if (adapter
->flags
& (IXGBE_FLAG_FCOE_CAPABLE
|
175 IXGBE_FLAG_FCOE_ENABLED
)) {
176 adapter
->flags
&= ~IXGBE_FLAG_FCOE_ENABLED
;
177 adapter
->ring_feature
[RING_F_FCOE
].indices
= 0;
178 netdev
->features
&= ~NETIF_F_FCOE_CRC
;
179 netdev
->features
&= ~NETIF_F_FSO
;
180 netdev
->fcoe_ddp_xid
= 0;
182 #endif /* IXGBE_FCOE */
183 ixgbe_init_interrupt_scheme(adapter
);
184 if (netif_running(netdev
))
185 netdev
->netdev_ops
->ndo_open(netdev
);
192 static void ixgbe_dcbnl_get_perm_hw_addr(struct net_device
*netdev
,
195 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
198 memset(perm_addr
, 0xff, MAX_ADDR_LEN
);
200 for (i
= 0; i
< netdev
->addr_len
; i
++)
201 perm_addr
[i
] = adapter
->hw
.mac
.perm_addr
[i
];
203 if (adapter
->hw
.mac
.type
== ixgbe_mac_82599EB
) {
204 for (j
= 0; j
< netdev
->addr_len
; j
++, i
++)
205 perm_addr
[i
] = adapter
->hw
.mac
.san_addr
[j
];
209 static void ixgbe_dcbnl_set_pg_tc_cfg_tx(struct net_device
*netdev
, int tc
,
210 u8 prio
, u8 bwg_id
, u8 bw_pct
,
213 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
215 if (prio
!= DCB_ATTR_VALUE_UNDEFINED
)
216 adapter
->temp_dcb_cfg
.tc_config
[tc
].path
[0].prio_type
= prio
;
217 if (bwg_id
!= DCB_ATTR_VALUE_UNDEFINED
)
218 adapter
->temp_dcb_cfg
.tc_config
[tc
].path
[0].bwg_id
= bwg_id
;
219 if (bw_pct
!= DCB_ATTR_VALUE_UNDEFINED
)
220 adapter
->temp_dcb_cfg
.tc_config
[tc
].path
[0].bwg_percent
=
222 if (up_map
!= DCB_ATTR_VALUE_UNDEFINED
)
223 adapter
->temp_dcb_cfg
.tc_config
[tc
].path
[0].up_to_tc_bitmap
=
226 if ((adapter
->temp_dcb_cfg
.tc_config
[tc
].path
[0].prio_type
!=
227 adapter
->dcb_cfg
.tc_config
[tc
].path
[0].prio_type
) ||
228 (adapter
->temp_dcb_cfg
.tc_config
[tc
].path
[0].bwg_id
!=
229 adapter
->dcb_cfg
.tc_config
[tc
].path
[0].bwg_id
) ||
230 (adapter
->temp_dcb_cfg
.tc_config
[tc
].path
[0].bwg_percent
!=
231 adapter
->dcb_cfg
.tc_config
[tc
].path
[0].bwg_percent
) ||
232 (adapter
->temp_dcb_cfg
.tc_config
[tc
].path
[0].up_to_tc_bitmap
!=
233 adapter
->dcb_cfg
.tc_config
[tc
].path
[0].up_to_tc_bitmap
)) {
234 adapter
->dcb_set_bitmap
|= BIT_PG_TX
;
235 adapter
->dcb_set_bitmap
|= BIT_RESETLINK
;
239 static void ixgbe_dcbnl_set_pg_bwg_cfg_tx(struct net_device
*netdev
, int bwg_id
,
242 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
244 adapter
->temp_dcb_cfg
.bw_percentage
[0][bwg_id
] = bw_pct
;
246 if (adapter
->temp_dcb_cfg
.bw_percentage
[0][bwg_id
] !=
247 adapter
->dcb_cfg
.bw_percentage
[0][bwg_id
]) {
248 adapter
->dcb_set_bitmap
|= BIT_PG_RX
;
249 adapter
->dcb_set_bitmap
|= BIT_RESETLINK
;
253 static void ixgbe_dcbnl_set_pg_tc_cfg_rx(struct net_device
*netdev
, int tc
,
254 u8 prio
, u8 bwg_id
, u8 bw_pct
,
257 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
259 if (prio
!= DCB_ATTR_VALUE_UNDEFINED
)
260 adapter
->temp_dcb_cfg
.tc_config
[tc
].path
[1].prio_type
= prio
;
261 if (bwg_id
!= DCB_ATTR_VALUE_UNDEFINED
)
262 adapter
->temp_dcb_cfg
.tc_config
[tc
].path
[1].bwg_id
= bwg_id
;
263 if (bw_pct
!= DCB_ATTR_VALUE_UNDEFINED
)
264 adapter
->temp_dcb_cfg
.tc_config
[tc
].path
[1].bwg_percent
=
266 if (up_map
!= DCB_ATTR_VALUE_UNDEFINED
)
267 adapter
->temp_dcb_cfg
.tc_config
[tc
].path
[1].up_to_tc_bitmap
=
270 if ((adapter
->temp_dcb_cfg
.tc_config
[tc
].path
[1].prio_type
!=
271 adapter
->dcb_cfg
.tc_config
[tc
].path
[1].prio_type
) ||
272 (adapter
->temp_dcb_cfg
.tc_config
[tc
].path
[1].bwg_id
!=
273 adapter
->dcb_cfg
.tc_config
[tc
].path
[1].bwg_id
) ||
274 (adapter
->temp_dcb_cfg
.tc_config
[tc
].path
[1].bwg_percent
!=
275 adapter
->dcb_cfg
.tc_config
[tc
].path
[1].bwg_percent
) ||
276 (adapter
->temp_dcb_cfg
.tc_config
[tc
].path
[1].up_to_tc_bitmap
!=
277 adapter
->dcb_cfg
.tc_config
[tc
].path
[1].up_to_tc_bitmap
)) {
278 adapter
->dcb_set_bitmap
|= BIT_PG_RX
;
279 adapter
->dcb_set_bitmap
|= BIT_RESETLINK
;
283 static void ixgbe_dcbnl_set_pg_bwg_cfg_rx(struct net_device
*netdev
, int bwg_id
,
286 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
288 adapter
->temp_dcb_cfg
.bw_percentage
[1][bwg_id
] = bw_pct
;
290 if (adapter
->temp_dcb_cfg
.bw_percentage
[1][bwg_id
] !=
291 adapter
->dcb_cfg
.bw_percentage
[1][bwg_id
]) {
292 adapter
->dcb_set_bitmap
|= BIT_PG_RX
;
293 adapter
->dcb_set_bitmap
|= BIT_RESETLINK
;
297 static void ixgbe_dcbnl_get_pg_tc_cfg_tx(struct net_device
*netdev
, int tc
,
298 u8
*prio
, u8
*bwg_id
, u8
*bw_pct
,
301 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
303 *prio
= adapter
->dcb_cfg
.tc_config
[tc
].path
[0].prio_type
;
304 *bwg_id
= adapter
->dcb_cfg
.tc_config
[tc
].path
[0].bwg_id
;
305 *bw_pct
= adapter
->dcb_cfg
.tc_config
[tc
].path
[0].bwg_percent
;
306 *up_map
= adapter
->dcb_cfg
.tc_config
[tc
].path
[0].up_to_tc_bitmap
;
309 static void ixgbe_dcbnl_get_pg_bwg_cfg_tx(struct net_device
*netdev
, int bwg_id
,
312 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
314 *bw_pct
= adapter
->dcb_cfg
.bw_percentage
[0][bwg_id
];
317 static void ixgbe_dcbnl_get_pg_tc_cfg_rx(struct net_device
*netdev
, int tc
,
318 u8
*prio
, u8
*bwg_id
, u8
*bw_pct
,
321 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
323 *prio
= adapter
->dcb_cfg
.tc_config
[tc
].path
[1].prio_type
;
324 *bwg_id
= adapter
->dcb_cfg
.tc_config
[tc
].path
[1].bwg_id
;
325 *bw_pct
= adapter
->dcb_cfg
.tc_config
[tc
].path
[1].bwg_percent
;
326 *up_map
= adapter
->dcb_cfg
.tc_config
[tc
].path
[1].up_to_tc_bitmap
;
329 static void ixgbe_dcbnl_get_pg_bwg_cfg_rx(struct net_device
*netdev
, int bwg_id
,
332 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
334 *bw_pct
= adapter
->dcb_cfg
.bw_percentage
[1][bwg_id
];
337 static void ixgbe_dcbnl_set_pfc_cfg(struct net_device
*netdev
, int priority
,
340 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
342 adapter
->temp_dcb_cfg
.tc_config
[priority
].dcb_pfc
= setting
;
343 if (adapter
->temp_dcb_cfg
.tc_config
[priority
].dcb_pfc
!=
344 adapter
->dcb_cfg
.tc_config
[priority
].dcb_pfc
) {
345 adapter
->dcb_set_bitmap
|= BIT_PFC
;
346 adapter
->temp_dcb_cfg
.pfc_mode_enable
= true;
350 static void ixgbe_dcbnl_get_pfc_cfg(struct net_device
*netdev
, int priority
,
353 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
355 *setting
= adapter
->dcb_cfg
.tc_config
[priority
].dcb_pfc
;
358 static u8
ixgbe_dcbnl_set_all(struct net_device
*netdev
)
360 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
363 if (!adapter
->dcb_set_bitmap
)
364 return DCB_NO_HW_CHG
;
367 * Only take down the adapter if the configuration change
370 if (adapter
->dcb_set_bitmap
& BIT_RESETLINK
) {
371 while (test_and_set_bit(__IXGBE_RESETTING
, &adapter
->state
))
374 if (netif_running(netdev
))
378 ret
= ixgbe_copy_dcb_cfg(&adapter
->temp_dcb_cfg
, &adapter
->dcb_cfg
,
379 adapter
->ring_feature
[RING_F_DCB
].indices
);
381 if (adapter
->dcb_set_bitmap
& BIT_RESETLINK
)
382 clear_bit(__IXGBE_RESETTING
, &adapter
->state
);
383 return DCB_NO_HW_CHG
;
386 if (adapter
->dcb_cfg
.pfc_mode_enable
) {
387 if ((adapter
->hw
.mac
.type
!= ixgbe_mac_82598EB
) &&
388 (adapter
->hw
.fc
.current_mode
!= ixgbe_fc_pfc
))
389 adapter
->last_lfc_mode
= adapter
->hw
.fc
.current_mode
;
390 adapter
->hw
.fc
.requested_mode
= ixgbe_fc_pfc
;
392 if (adapter
->hw
.mac
.type
!= ixgbe_mac_82598EB
)
393 adapter
->hw
.fc
.requested_mode
= adapter
->last_lfc_mode
;
395 adapter
->hw
.fc
.requested_mode
= ixgbe_fc_none
;
398 if (adapter
->dcb_set_bitmap
& BIT_RESETLINK
) {
399 if (netif_running(netdev
))
401 ret
= DCB_HW_CHG_RST
;
402 } else if (adapter
->dcb_set_bitmap
& BIT_PFC
) {
403 if (adapter
->hw
.mac
.type
== ixgbe_mac_82598EB
)
404 ixgbe_dcb_config_pfc_82598(&adapter
->hw
,
406 else if (adapter
->hw
.mac
.type
== ixgbe_mac_82599EB
)
407 ixgbe_dcb_config_pfc_82599(&adapter
->hw
,
411 if (adapter
->dcb_cfg
.pfc_mode_enable
)
412 adapter
->hw
.fc
.current_mode
= ixgbe_fc_pfc
;
414 if (adapter
->dcb_set_bitmap
& BIT_RESETLINK
)
415 clear_bit(__IXGBE_RESETTING
, &adapter
->state
);
416 adapter
->dcb_set_bitmap
= 0x00;
420 static u8
ixgbe_dcbnl_getcap(struct net_device
*netdev
, int capid
, u8
*cap
)
422 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
425 if (adapter
->flags
& IXGBE_FLAG_DCB_ENABLED
) {
427 case DCB_CAP_ATTR_PG
:
430 case DCB_CAP_ATTR_PFC
:
433 case DCB_CAP_ATTR_UP2TC
:
436 case DCB_CAP_ATTR_PG_TCS
:
439 case DCB_CAP_ATTR_PFC_TCS
:
442 case DCB_CAP_ATTR_GSP
:
445 case DCB_CAP_ATTR_BCN
:
459 static u8
ixgbe_dcbnl_getnumtcs(struct net_device
*netdev
, int tcid
, u8
*num
)
461 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
464 if (adapter
->flags
& IXGBE_FLAG_DCB_ENABLED
) {
466 case DCB_NUMTCS_ATTR_PG
:
467 *num
= MAX_TRAFFIC_CLASS
;
469 case DCB_NUMTCS_ATTR_PFC
:
470 *num
= MAX_TRAFFIC_CLASS
;
483 static u8
ixgbe_dcbnl_setnumtcs(struct net_device
*netdev
, int tcid
, u8 num
)
488 static u8
ixgbe_dcbnl_getpfcstate(struct net_device
*netdev
)
490 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
492 return adapter
->dcb_cfg
.pfc_mode_enable
;
495 static void ixgbe_dcbnl_setpfcstate(struct net_device
*netdev
, u8 state
)
497 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
499 adapter
->temp_dcb_cfg
.pfc_mode_enable
= state
;
500 if (adapter
->temp_dcb_cfg
.pfc_mode_enable
!=
501 adapter
->dcb_cfg
.pfc_mode_enable
)
502 adapter
->dcb_set_bitmap
|= BIT_PFC
;
506 struct dcbnl_rtnl_ops dcbnl_ops
= {
507 .getstate
= ixgbe_dcbnl_get_state
,
508 .setstate
= ixgbe_dcbnl_set_state
,
509 .getpermhwaddr
= ixgbe_dcbnl_get_perm_hw_addr
,
510 .setpgtccfgtx
= ixgbe_dcbnl_set_pg_tc_cfg_tx
,
511 .setpgbwgcfgtx
= ixgbe_dcbnl_set_pg_bwg_cfg_tx
,
512 .setpgtccfgrx
= ixgbe_dcbnl_set_pg_tc_cfg_rx
,
513 .setpgbwgcfgrx
= ixgbe_dcbnl_set_pg_bwg_cfg_rx
,
514 .getpgtccfgtx
= ixgbe_dcbnl_get_pg_tc_cfg_tx
,
515 .getpgbwgcfgtx
= ixgbe_dcbnl_get_pg_bwg_cfg_tx
,
516 .getpgtccfgrx
= ixgbe_dcbnl_get_pg_tc_cfg_rx
,
517 .getpgbwgcfgrx
= ixgbe_dcbnl_get_pg_bwg_cfg_rx
,
518 .setpfccfg
= ixgbe_dcbnl_set_pfc_cfg
,
519 .getpfccfg
= ixgbe_dcbnl_get_pfc_cfg
,
520 .setall
= ixgbe_dcbnl_set_all
,
521 .getcap
= ixgbe_dcbnl_getcap
,
522 .getnumtcs
= ixgbe_dcbnl_getnumtcs
,
523 .setnumtcs
= ixgbe_dcbnl_setnumtcs
,
524 .getpfcstate
= ixgbe_dcbnl_getpfcstate
,
525 .setpfcstate
= ixgbe_dcbnl_setpfcstate
,