Skip to content

Commit 6fa382a

Browse files
yizoudavem330
authored andcommitted
dcbnl: Add netlink attributes for setapp/getapp to dcbnl
Add defines for dcbnl netlink attributes to support netlink message passing of setapp/getapp in dcbnl. Signed-off-by: Yi Zou <yi.zou@intel.com> Acked-by: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com> Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent 7114323 commit 6fa382a

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

net/dcb/dcbnl.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ static struct nla_policy dcbnl_rtnl_policy[DCB_ATTR_MAX + 1] = {
6464
[DCB_ATTR_CAP] = {.type = NLA_NESTED},
6565
[DCB_ATTR_PFC_STATE] = {.type = NLA_U8},
6666
[DCB_ATTR_BCN] = {.type = NLA_NESTED},
67+
[DCB_ATTR_APP] = {.type = NLA_NESTED},
6768
};
6869

6970
/* DCB priority flow control to User Priority nested attributes */
@@ -158,6 +159,13 @@ static struct nla_policy dcbnl_bcn_nest[DCB_BCN_ATTR_MAX + 1] = {
158159
[DCB_BCN_ATTR_ALL] = {.type = NLA_FLAG},
159160
};
160161

162+
/* DCB APP nested attributes. */
163+
static struct nla_policy dcbnl_app_nest[DCB_APP_ATTR_MAX + 1] = {
164+
[DCB_APP_ATTR_IDTYPE] = {.type = NLA_U8},
165+
[DCB_APP_ATTR_ID] = {.type = NLA_U16},
166+
[DCB_APP_ATTR_PRIORITY] = {.type = NLA_U8},
167+
};
168+
161169
/* standard netlink reply call */
162170
static int dcbnl_reply(u8 value, u8 event, u8 cmd, u8 attr, u32 pid,
163171
u32 seq, u16 flags)

0 commit comments

Comments
 (0)