From mboxrd@z Thu Jan 1 00:00:00 1970 From: Simon Horman Subject: Re: [PATCH 40/84] netfilter: ipvs: use NFPROTO values for NF_HOOK invocation Date: Tue, 11 May 2010 12:07:06 +0900 Message-ID: <20100511030703.GA7112@verge.net.au> References: <1273522735-24672-1-git-send-email-kaber@trash.net> <1273522735-24672-41-git-send-email-kaber@trash.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: davem@davemloft.net, netfilter-devel@vger.kernel.org, netdev@vger.kernel.org To: kaber@trash.net Return-path: Content-Disposition: inline In-Reply-To: <1273522735-24672-41-git-send-email-kaber@trash.net> Sender: netdev-owner@vger.kernel.org List-Id: netfilter-devel.vger.kernel.org On Mon, May 10, 2010 at 10:18:11PM +0200, kaber@trash.net wrote: > From: Jan Engelhardt > > Semantic patch: > // > @@ > @@ > IP_VS_XMIT( > -PF_INET6, > +NFPROTO_IPV6, > ...) > > @@ > @@ > IP_VS_XMIT( > -PF_INET, > +NFPROTO_IPV4, > ...) > // > > Signed-off-by: Jan Engelhardt FWIW Acked-by: Simon Horman > --- > net/netfilter/ipvs/ip_vs_xmit.c | 16 ++++++++-------- > 1 files changed, 8 insertions(+), 8 deletions(-) > > diff --git a/net/netfilter/ipvs/ip_vs_xmit.c b/net/netfilter/ipvs/ip_vs_xmit.c > index 223b501..d0a7b7b 100644 > --- a/net/netfilter/ipvs/ip_vs_xmit.c > +++ b/net/netfilter/ipvs/ip_vs_xmit.c > @@ -269,7 +269,7 @@ ip_vs_bypass_xmit(struct sk_buff *skb, struct ip_vs_conn *cp, > /* Another hack: avoid icmp_send in ip_fragment */ > skb->local_df = 1; > > - IP_VS_XMIT(PF_INET, skb, rt); > + IP_VS_XMIT(NFPROTO_IPV4, skb, rt); > > LeaveFunction(10); > return NF_STOLEN; > @@ -333,7 +333,7 @@ ip_vs_bypass_xmit_v6(struct sk_buff *skb, struct ip_vs_conn *cp, > /* Another hack: avoid icmp_send in ip_fragment */ > skb->local_df = 1; > > - IP_VS_XMIT(PF_INET6, skb, rt); > + IP_VS_XMIT(NFPROTO_IPV6, skb, rt); > > LeaveFunction(10); > return NF_STOLEN; > @@ -409,7 +409,7 @@ ip_vs_nat_xmit(struct sk_buff *skb, struct ip_vs_conn *cp, > /* Another hack: avoid icmp_send in ip_fragment */ > skb->local_df = 1; > > - IP_VS_XMIT(PF_INET, skb, rt); > + IP_VS_XMIT(NFPROTO_IPV4, skb, rt); > > LeaveFunction(10); > return NF_STOLEN; > @@ -485,7 +485,7 @@ ip_vs_nat_xmit_v6(struct sk_buff *skb, struct ip_vs_conn *cp, > /* Another hack: avoid icmp_send in ip_fragment */ > skb->local_df = 1; > > - IP_VS_XMIT(PF_INET6, skb, rt); > + IP_VS_XMIT(NFPROTO_IPV6, skb, rt); > > LeaveFunction(10); > return NF_STOLEN; > @@ -784,7 +784,7 @@ ip_vs_dr_xmit(struct sk_buff *skb, struct ip_vs_conn *cp, > /* Another hack: avoid icmp_send in ip_fragment */ > skb->local_df = 1; > > - IP_VS_XMIT(PF_INET, skb, rt); > + IP_VS_XMIT(NFPROTO_IPV4, skb, rt); > > LeaveFunction(10); > return NF_STOLEN; > @@ -837,7 +837,7 @@ ip_vs_dr_xmit_v6(struct sk_buff *skb, struct ip_vs_conn *cp, > /* Another hack: avoid icmp_send in ip_fragment */ > skb->local_df = 1; > > - IP_VS_XMIT(PF_INET6, skb, rt); > + IP_VS_XMIT(NFPROTO_IPV6, skb, rt); > > LeaveFunction(10); > return NF_STOLEN; > @@ -911,7 +911,7 @@ ip_vs_icmp_xmit(struct sk_buff *skb, struct ip_vs_conn *cp, > /* Another hack: avoid icmp_send in ip_fragment */ > skb->local_df = 1; > > - IP_VS_XMIT(PF_INET, skb, rt); > + IP_VS_XMIT(NFPROTO_IPV4, skb, rt); > > rc = NF_STOLEN; > goto out; > @@ -986,7 +986,7 @@ ip_vs_icmp_xmit_v6(struct sk_buff *skb, struct ip_vs_conn *cp, > /* Another hack: avoid icmp_send in ip_fragment */ > skb->local_df = 1; > > - IP_VS_XMIT(PF_INET6, skb, rt); > + IP_VS_XMIT(NFPROTO_IPV6, skb, rt); > > rc = NF_STOLEN; > goto out; > -- > 1.7.0.4 > > -- > To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html