diff options
author | Alexander Duyck <alexander.h.duyck@intel.com> | 2008-11-20 21:05:08 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-11-20 21:05:08 -0800 |
commit | 46132188bf72e22ef097f16ed5c969ee8cea1e8b (patch) | |
tree | e776ed8011b8314ff08abf4f3467c07d037fec4f /include/net | |
parent | 2f90b8657ec942d1880f720e0177ee71df7c8e3c (diff) | |
download | linux-3.10-46132188bf72e22ef097f16ed5c969ee8cea1e8b.tar.gz linux-3.10-46132188bf72e22ef097f16ed5c969ee8cea1e8b.tar.bz2 linux-3.10-46132188bf72e22ef097f16ed5c969ee8cea1e8b.zip |
DCB: Add interface to query for the DCB capabilities of an device.
Adds to the netlink interface for Data Center Bridging (DCB), allowing
the DCB capabilities supported by a device to be queried.
Signed-off-by: Alexander Duyck <alexander.h.duyck@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/dcbnl.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/net/dcbnl.h b/include/net/dcbnl.h index 0ef0c5a46d8..183ed040cf4 100644 --- a/include/net/dcbnl.h +++ b/include/net/dcbnl.h @@ -39,6 +39,7 @@ struct dcbnl_rtnl_ops { void (*setpfccfg)(struct net_device *, int, u8); void (*getpfccfg)(struct net_device *, int, u8 *); u8 (*setall)(struct net_device *); + u8 (*getcap)(struct net_device *, int, u8 *); }; #endif /* __NET_DCBNL_H__ */ |