netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next 2/3] openvswitch: fix struct geneve_port member name
@ 2016-01-09 23:07 Jεan Sacren
  2016-01-10 10:21 ` Thomas Graf
  0 siblings, 1 reply; 2+ messages in thread
From: Jεan Sacren @ 2016-01-09 23:07 UTC (permalink / raw)
  To: netdev; +Cc: Pravin Shelar, dev

From: Jean Sacren <sakiwit@gmail.com>

commit 6b001e682e90 ("openvswitch: Use Geneve device.")

The commit above introduced 'port_no' as the name for the member of
struct geneve_port. The correct name should be 'dst_port' as described
in the kernel doc. Let's fix that member name and all the pertinent
instances so that both doc and code would be consistent.

Signed-off-by: Jean Sacren <sakiwit@gmail.com>
---
 net/openvswitch/vport-geneve.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/net/openvswitch/vport-geneve.c b/net/openvswitch/vport-geneve.c
index e41cd12d9b2d..30ab8e127288 100644
--- a/net/openvswitch/vport-geneve.c
+++ b/net/openvswitch/vport-geneve.c
@@ -34,7 +34,7 @@ static struct vport_ops ovs_geneve_vport_ops;
  * @dst_port: destination port.
  */
 struct geneve_port {
-	u16 port_no;
+	u16 dst_port;
 };
 
 static inline struct geneve_port *geneve_vport(const struct vport *vport)
@@ -47,7 +47,7 @@ static int geneve_get_options(const struct vport *vport,
 {
 	struct geneve_port *geneve_port = geneve_vport(vport);
 
-	if (nla_put_u16(skb, OVS_TUNNEL_ATTR_DST_PORT, geneve_port->port_no))
+	if (nla_put_u16(skb, OVS_TUNNEL_ATTR_DST_PORT, geneve_port->dst_port))
 		return -EMSGSIZE;
 	return 0;
 }
@@ -83,7 +83,7 @@ static struct vport *geneve_tnl_create(const struct vport_parms *parms)
 		return vport;
 
 	geneve_port = geneve_vport(vport);
-	geneve_port->port_no = dst_port;
+	geneve_port->dst_port = dst_port;
 
 	rtnl_lock();
 	dev = geneve_dev_create_fb(net, parms->name, NET_NAME_USER, dst_port);

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH net-next 2/3] openvswitch: fix struct geneve_port member name
  2016-01-09 23:07 [PATCH net-next 2/3] openvswitch: fix struct geneve_port member name Jεan Sacren
@ 2016-01-10 10:21 ` Thomas Graf
  0 siblings, 0 replies; 2+ messages in thread
From: Thomas Graf @ 2016-01-10 10:21 UTC (permalink / raw)
  To: J??an Sacren; +Cc: netdev, Pravin Shelar, dev

On 01/09/16 at 04:07pm, J??an Sacren wrote:
> From: Jean Sacren <sakiwit@gmail.com>
> 
> commit 6b001e682e90 ("openvswitch: Use Geneve device.")
> 
> The commit above introduced 'port_no' as the name for the member of
> struct geneve_port. The correct name should be 'dst_port' as described
> in the kernel doc. Let's fix that member name and all the pertinent
> instances so that both doc and code would be consistent.
> 
> Signed-off-by: Jean Sacren <sakiwit@gmail.com>

LGTM, also in line with VXLAN.

Acked-by: Thomas Graf <tgraf@suug.ch>

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-01-10 10:21 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-09 23:07 [PATCH net-next 2/3] openvswitch: fix struct geneve_port member name Jεan Sacren
2016-01-10 10:21 ` Thomas Graf

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).