Message ID | 20220317075642.GD25237@kili (mailing list archive) |
---|---|
State | Accepted |
Commit | 02f393381d14df948918f5021486e1197c05a21f |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [net-next] gtp: Remove a bogus tab | expand |
Hello: This patch was applied to netdev/net-next.git (master) by Tony Nguyen <anthony.l.nguyen@intel.com>: On Thu, 17 Mar 2022 10:56:42 +0300 you wrote: > The "kfree_skb(skb_to_send);" is not supposed to be indented that far. > > Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> > --- > drivers/net/gtp.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Here is the summary with links: - [net-next] gtp: Remove a bogus tab https://git.kernel.org/netdev/net-next/c/02f393381d14 You are awesome, thank you!
On Thu, 17 Mar 2022 23:50:12 +0000 patchwork-bot+netdevbpf@kernel.org wrote: > Hello: > > This patch was applied to netdev/net-next.git (master) > by Tony Nguyen <anthony.l.nguyen@intel.com>: > > On Thu, 17 Mar 2022 10:56:42 +0300 you wrote: > > The "kfree_skb(skb_to_send);" is not supposed to be indented that far. > > > > Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> > > --- > > drivers/net/gtp.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > Here is the summary with links: > - [net-next] gtp: Remove a bogus tab > https://git.kernel.org/netdev/net-next/c/02f393381d14 Not really, the patch that got applied was the version from Wojciech.
diff --git a/drivers/net/gtp.c b/drivers/net/gtp.c index 756714d4ad92..a208e2b1a9af 100644 --- a/drivers/net/gtp.c +++ b/drivers/net/gtp.c @@ -1793,7 +1793,7 @@ static int gtp_genl_send_echo_req(struct sk_buff *skb, struct genl_info *info) if (IS_ERR(rt)) { netdev_dbg(gtp->dev, "no route for echo request to %pI4\n", &dst_ip); - kfree_skb(skb_to_send); + kfree_skb(skb_to_send); return -ENODEV; }
The "kfree_skb(skb_to_send);" is not supposed to be indented that far. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> --- drivers/net/gtp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)