diff mbox

net/core: Add VF link state control policy

Message ID 74ee0f0299e2043de14be353dd7d34fe07ecdf92.1402497459.git.dledford@redhat.com
State Accepted, archived
Delegated to: David Miller
Headers show

Commit Message

Doug Ledford June 11, 2014, 2:38 p.m. UTC
Commit 1d8faf48c7 (net/core: Add VF link state control) added VF link state
control to the netlink VF nested structure, but failed to add a proper entry
for the new structure into the VF policy table.  Add the missing entry so
the table and the actual data copied into the netlink nested struct are in
sync.

Signed-off-by: Doug Ledford <dledford@redhat.com>
---
 net/core/rtnetlink.c | 2 ++
 1 file changed, 2 insertions(+)

Comments

David Miller June 11, 2014, 10:59 p.m. UTC | #1
From: Doug Ledford <dledford@redhat.com>
Date: Wed, 11 Jun 2014 10:38:03 -0400

> Commit 1d8faf48c7 (net/core: Add VF link state control) added VF link state
> control to the netlink VF nested structure, but failed to add a proper entry
> for the new structure into the VF policy table.  Add the missing entry so
> the table and the actual data copied into the netlink nested struct are in
> sync.
> 
> Signed-off-by: Doug Ledford <dledford@redhat.com>

Applied, thanks.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/net/core/rtnetlink.c b/net/core/rtnetlink.c
index 2d8d8fcfa06..cdccf028171 100644
--- a/net/core/rtnetlink.c
+++ b/net/core/rtnetlink.c
@@ -1208,6 +1208,8 @@  static const struct nla_policy ifla_vf_policy[IFLA_VF_MAX+1] = {
 				    .len = sizeof(struct ifla_vf_tx_rate) },
 	[IFLA_VF_SPOOFCHK]	= { .type = NLA_BINARY,
 				    .len = sizeof(struct ifla_vf_spoofchk) },
+	[IFLA_VF_LINK_STATE]	= { .type = NLA_BINARY,
+				    .len = sizeof(struct ifla_vf_link_state) },
 };
 
 static const struct nla_policy ifla_port_policy[IFLA_PORT_MAX+1] = {