diff mbox series

[ovs-dev] compat: Fix small naming issue

Message ID 1571257271-4240-1-git-send-email-gvrose8192@gmail.com
State Accepted
Commit 63c2321dbac146d1fa8087ff9656872a69ddf842
Headers show
Series [ovs-dev] compat: Fix small naming issue | expand

Commit Message

Gregory Rose Oct. 16, 2019, 8:21 p.m. UTC
In commit 057772cf2477 the function is missing the rpl_ prefix
and the define that replaces the original function should come
after the function definition.

Fixes: 057772cf2477 ("compat: Backport nf_ct_tmpl_alloc().")
Signed-off-by: Greg Rose <gvrose8192@gmail.com>
---
 datapath/linux/compat/include/net/netfilter/nf_conntrack_core.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Comments

Yifeng Sun Oct. 16, 2019, 8:26 p.m. UTC | #1
LGTM, thanks Greg.

Reviewed-by: Yifeng Sun <pkusunyifeng@gmail.com>

On Wed, Oct 16, 2019 at 1:21 PM Greg Rose <gvrose8192@gmail.com> wrote:
>
> In commit 057772cf2477 the function is missing the rpl_ prefix
> and the define that replaces the original function should come
> after the function definition.
>
> Fixes: 057772cf2477 ("compat: Backport nf_ct_tmpl_alloc().")
> Signed-off-by: Greg Rose <gvrose8192@gmail.com>
> ---
>  datapath/linux/compat/include/net/netfilter/nf_conntrack_core.h | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/datapath/linux/compat/include/net/netfilter/nf_conntrack_core.h b/datapath/linux/compat/include/net/netfilter/nf_conntrack_core.h
> index 1015801..84cb09e 100644
> --- a/datapath/linux/compat/include/net/netfilter/nf_conntrack_core.h
> +++ b/datapath/linux/compat/include/net/netfilter/nf_conntrack_core.h
> @@ -7,11 +7,10 @@
>
>  #include <net/netfilter/nf_conntrack_zones.h>
>
> -#define nf_ct_tmpl_alloc rpl_nf_ct_tmpl_alloc
>  /* Released via destroy_conntrack() */
>  static inline struct nf_conn *
> -nf_ct_tmpl_alloc(struct net *net, const struct nf_conntrack_zone *zone,
> -                gfp_t flags)
> +rpl_nf_ct_tmpl_alloc(struct net *net, const struct nf_conntrack_zone *zone,
> +                    gfp_t flags)
>  {
>         struct nf_conn *tmpl;
>
> @@ -32,6 +31,7 @@ out_free:
>         kfree(tmpl);
>         return NULL;
>  }
> +#define nf_ct_tmpl_alloc rpl_nf_ct_tmpl_alloc
>
>  static void rpl_nf_ct_tmpl_free(struct nf_conn *tmpl)
>  {
> --
> 1.8.3.1
>
> _______________________________________________
> dev mailing list
> dev@openvswitch.org
> https://mail.openvswitch.org/mailman/listinfo/ovs-dev
William Tu Oct. 17, 2019, 5:30 p.m. UTC | #2
On Wed, Oct 16, 2019 at 01:26:39PM -0700, Yifeng Sun wrote:
> LGTM, thanks Greg.
> 
> Reviewed-by: Yifeng Sun <pkusunyifeng@gmail.com>
> 

Thanks! Applied to master.

Sorry Yifeng, I forgot to add your Reviewed-by tag.

William

> On Wed, Oct 16, 2019 at 1:21 PM Greg Rose <gvrose8192@gmail.com> wrote:
> >
> > In commit 057772cf2477 the function is missing the rpl_ prefix
> > and the define that replaces the original function should come
> > after the function definition.
> >
> > Fixes: 057772cf2477 ("compat: Backport nf_ct_tmpl_alloc().")
> > Signed-off-by: Greg Rose <gvrose8192@gmail.com>
> > ---
Yifeng Sun Oct. 17, 2019, 5:51 p.m. UTC | #3
No problem, thanks!
Yifeng

On Thu, Oct 17, 2019 at 10:30 AM William Tu <u9012063@gmail.com> wrote:
>
> On Wed, Oct 16, 2019 at 01:26:39PM -0700, Yifeng Sun wrote:
> > LGTM, thanks Greg.
> >
> > Reviewed-by: Yifeng Sun <pkusunyifeng@gmail.com>
> >
>
> Thanks! Applied to master.
>
> Sorry Yifeng, I forgot to add your Reviewed-by tag.
>
> William
>
> > On Wed, Oct 16, 2019 at 1:21 PM Greg Rose <gvrose8192@gmail.com> wrote:
> > >
> > > In commit 057772cf2477 the function is missing the rpl_ prefix
> > > and the define that replaces the original function should come
> > > after the function definition.
> > >
> > > Fixes: 057772cf2477 ("compat: Backport nf_ct_tmpl_alloc().")
> > > Signed-off-by: Greg Rose <gvrose8192@gmail.com>
> > > ---
>
Gregory Rose Oct. 17, 2019, 8:30 p.m. UTC | #4
Thanks William!

On 10/17/2019 10:30 AM, William Tu wrote:
> On Wed, Oct 16, 2019 at 01:26:39PM -0700, Yifeng Sun wrote:
>> LGTM, thanks Greg.
>>
>> Reviewed-by: Yifeng Sun <pkusunyifeng@gmail.com>
>>
> Thanks! Applied to master.
>
> Sorry Yifeng, I forgot to add your Reviewed-by tag.
>
> William
>
>> On Wed, Oct 16, 2019 at 1:21 PM Greg Rose <gvrose8192@gmail.com> wrote:
>>> In commit 057772cf2477 the function is missing the rpl_ prefix
>>> and the define that replaces the original function should come
>>> after the function definition.
>>>
>>> Fixes: 057772cf2477 ("compat: Backport nf_ct_tmpl_alloc().")
>>> Signed-off-by: Greg Rose <gvrose8192@gmail.com>
>>> ---
diff mbox series

Patch

diff --git a/datapath/linux/compat/include/net/netfilter/nf_conntrack_core.h b/datapath/linux/compat/include/net/netfilter/nf_conntrack_core.h
index 1015801..84cb09e 100644
--- a/datapath/linux/compat/include/net/netfilter/nf_conntrack_core.h
+++ b/datapath/linux/compat/include/net/netfilter/nf_conntrack_core.h
@@ -7,11 +7,10 @@ 
 
 #include <net/netfilter/nf_conntrack_zones.h>
 
-#define nf_ct_tmpl_alloc rpl_nf_ct_tmpl_alloc
 /* Released via destroy_conntrack() */
 static inline struct nf_conn *
-nf_ct_tmpl_alloc(struct net *net, const struct nf_conntrack_zone *zone,
-		 gfp_t flags)
+rpl_nf_ct_tmpl_alloc(struct net *net, const struct nf_conntrack_zone *zone,
+		     gfp_t flags)
 {
 	struct nf_conn *tmpl;
 
@@ -32,6 +31,7 @@  out_free:
 	kfree(tmpl);
 	return NULL;
 }
+#define nf_ct_tmpl_alloc rpl_nf_ct_tmpl_alloc
 
 static void rpl_nf_ct_tmpl_free(struct nf_conn *tmpl)
 {