dcbnl: add support for ieee8021Qaz attributes
[deliverable/linux.git] / include / net / dcbnl.h
CommitLineData
2f90b865
AD
1/*
2 * Copyright (c) 2008, Intel Corporation.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
15 * Place - Suite 330, Boston, MA 02111-1307 USA.
16 *
17 * Author: Lucy Liu <lucy.liu@intel.com>
18 */
19
20#ifndef __NET_DCBNL_H__
21#define __NET_DCBNL_H__
22
3e29027a
JF
23#include <linux/dcbnl.h>
24
2f90b865
AD
25/*
26 * Ops struct for the netlink callbacks. Used by DCB-enabled drivers through
27 * the netdevice struct.
28 */
29struct dcbnl_rtnl_ops {
3e29027a
JF
30 /* IEEE 802.1Qaz std */
31 int (*ieee_getets) (struct net_device *, struct ieee_ets *);
32 int (*ieee_setets) (struct net_device *, struct ieee_ets *);
33 int (*ieee_getpfc) (struct net_device *, struct ieee_pfc *);
34 int (*ieee_setpfc) (struct net_device *, struct ieee_pfc *);
35 int (*ieee_getapp) (struct net_device *, struct dcb_app *);
36 int (*ieee_setapp) (struct net_device *, struct dcb_app *);
37
38 /* CEE std */
2f90b865 39 u8 (*getstate)(struct net_device *);
1486a61e 40 u8 (*setstate)(struct net_device *, u8);
2f90b865
AD
41 void (*getpermhwaddr)(struct net_device *, u8 *);
42 void (*setpgtccfgtx)(struct net_device *, int, u8, u8, u8, u8);
43 void (*setpgbwgcfgtx)(struct net_device *, int, u8);
44 void (*setpgtccfgrx)(struct net_device *, int, u8, u8, u8, u8);
45 void (*setpgbwgcfgrx)(struct net_device *, int, u8);
46 void (*getpgtccfgtx)(struct net_device *, int, u8 *, u8 *, u8 *, u8 *);
47 void (*getpgbwgcfgtx)(struct net_device *, int, u8 *);
48 void (*getpgtccfgrx)(struct net_device *, int, u8 *, u8 *, u8 *, u8 *);
49 void (*getpgbwgcfgrx)(struct net_device *, int, u8 *);
50 void (*setpfccfg)(struct net_device *, int, u8);
51 void (*getpfccfg)(struct net_device *, int, u8 *);
52 u8 (*setall)(struct net_device *);
46132188 53 u8 (*getcap)(struct net_device *, int, u8 *);
33dbabc4
AD
54 u8 (*getnumtcs)(struct net_device *, int, u8 *);
55 u8 (*setnumtcs)(struct net_device *, int, u8);
0eb3aa9b
AD
56 u8 (*getpfcstate)(struct net_device *);
57 void (*setpfcstate)(struct net_device *, u8);
859ee3c4
AD
58 void (*getbcncfg)(struct net_device *, int, u32 *);
59 void (*setbcncfg)(struct net_device *, int, u32);
60 void (*getbcnrp)(struct net_device *, int, u8 *);
61 void (*setbcnrp)(struct net_device *, int, u8);
7114323b
YZ
62 u8 (*setapp)(struct net_device *, u8, u16, u8);
63 u8 (*getapp)(struct net_device *, u8, u16);
2f90b865
AD
64};
65
66#endif /* __NET_DCBNL_H__ */
This page took 0.227492 seconds and 5 git commands to generate.