diff options
author | Thomas Graf <tgraf@suug.ch> | 2013-04-02 18:30:43 -0400 |
---|---|---|
committer | Jesse Gross <jesse@nicira.com> | 2013-04-02 19:31:58 -0400 |
commit | 5d9633523f27dfcaac2d6052c7b3278311f77949 (patch) | |
tree | c9ee48774d76ed0a183018696a6a9c08be33ecbc /net/openvswitch | |
parent | 22e3880a76bb9a0c4fa5c8fefdc8697a36a4dae1 (diff) |
openvswitch: Don't insert empty OVS_VPORT_ATTR_OPTIONS attribute
The port specific options are currently unused resulting in an
empty OVS_VPORT_ATTR_OPTIONS nested attribute being inserted
into every OVS_VPORT_CMD_GET message.
Don't insert OVS_VPORT_ATTR_OPTIONS if no options are present.
Signed-off-by: Thomas Graf <tgraf@suug.ch>
Signed-off-by: Jesse Gross <jesse@nicira.com>
Diffstat (limited to 'net/openvswitch')
-rw-r--r-- | net/openvswitch/vport.c | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/net/openvswitch/vport.c b/net/openvswitch/vport.c index f6b8132ce4cb..71a2de8726cb 100644 --- a/net/openvswitch/vport.c +++ b/net/openvswitch/vport.c | |||
@@ -301,17 +301,19 @@ void ovs_vport_get_stats(struct vport *vport, struct ovs_vport_stats *stats) | |||
301 | int ovs_vport_get_options(const struct vport *vport, struct sk_buff *skb) | 301 | int ovs_vport_get_options(const struct vport *vport, struct sk_buff *skb) |
302 | { | 302 | { |
303 | struct nlattr *nla; | 303 | struct nlattr *nla; |
304 | int err; | ||
305 | |||
306 | if (!vport->ops->get_options) | ||
307 | return 0; | ||
304 | 308 | ||
305 | nla = nla_nest_start(skb, OVS_VPORT_ATTR_OPTIONS); | 309 | nla = nla_nest_start(skb, OVS_VPORT_ATTR_OPTIONS); |
306 | if (!nla) | 310 | if (!nla) |
307 | return -EMSGSIZE; | 311 | return -EMSGSIZE; |
308 | 312 | ||
309 | if (vport->ops->get_options) { | 313 | err = vport->ops->get_options(vport, skb); |
310 | int err = vport->ops->get_options(vport, skb); | 314 | if (err) { |
311 | if (err) { | 315 | nla_nest_cancel(skb, nla); |
312 | nla_nest_cancel(skb, nla); | 316 | return err; |
313 | return err; | ||
314 | } | ||
315 | } | 317 | } |
316 | 318 | ||
317 | nla_nest_end(skb, nla); | 319 | nla_nest_end(skb, nla); |