Netdev Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH v2] net: ipv6: remove unused local variable
@ 2021-07-15 4:20 Rocco Yue
2021-07-15 14:16 ` David Ahern
0 siblings, 1 reply; 3+ messages in thread
From: Rocco Yue @ 2021-07-15 4:20 UTC (permalink / raw)
To: David S . Miller, Hideaki YOSHIFUJI, David Ahern, Jakub Kicinski,
Matthias Brugger
Cc: netdev, linux-kernel, linux-arm-kernel, linux-mediatek,
wsd_upstream, rocco.yue, Rocco Yue
The local variable "struct net *net" in the two functions of
inet6_rtm_getaddr() and inet6_dump_addr() are actually useless,
so remove them.
Signed-off-by: Rocco Yue <rocco.yue@mediatek.com>
---
net/ipv6/addrconf.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/net/ipv6/addrconf.c b/net/ipv6/addrconf.c
index 3bf685fe64b9..e2f625e39455 100644
--- a/net/ipv6/addrconf.c
+++ b/net/ipv6/addrconf.c
@@ -5211,8 +5211,7 @@ static int inet6_dump_addr(struct sk_buff *skb, struct netlink_callback *cb,
.netnsid = -1,
.type = type,
};
- struct net *net = sock_net(skb->sk);
- struct net *tgt_net = net;
+ struct net *tgt_net = sock_net(skb->sk);
int idx, s_idx, s_ip_idx;
int h, s_h;
struct net_device *dev;
@@ -5351,7 +5350,7 @@ static int inet6_rtm_valid_getaddr_req(struct sk_buff *skb,
static int inet6_rtm_getaddr(struct sk_buff *in_skb, struct nlmsghdr *nlh,
struct netlink_ext_ack *extack)
{
- struct net *net = sock_net(in_skb->sk);
+ struct net *tgt_net = sock_net(in_skb->sk);
struct inet6_fill_args fillargs = {
.portid = NETLINK_CB(in_skb).portid,
.seq = nlh->nlmsg_seq,
@@ -5359,7 +5358,6 @@ static int inet6_rtm_getaddr(struct sk_buff *in_skb, struct nlmsghdr *nlh,
.flags = 0,
.netnsid = -1,
};
- struct net *tgt_net = net;
struct ifaddrmsg *ifm;
struct nlattr *tb[IFA_MAX+1];
struct in6_addr *addr = NULL, *peer;
--
2.18.0
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v2] net: ipv6: remove unused local variable
2021-07-15 4:20 [PATCH v2] net: ipv6: remove unused local variable Rocco Yue
@ 2021-07-15 14:16 ` David Ahern
2021-07-15 14:19 ` Rocco Yue
0 siblings, 1 reply; 3+ messages in thread
From: David Ahern @ 2021-07-15 14:16 UTC (permalink / raw)
To: Rocco Yue, David S . Miller, Hideaki YOSHIFUJI, David Ahern,
Jakub Kicinski, Matthias Brugger
Cc: netdev, linux-kernel, linux-arm-kernel, rocco.yue
On 7/14/21 10:20 PM, Rocco Yue wrote:
> The local variable "struct net *net" in the two functions of
> inet6_rtm_getaddr() and inet6_dump_addr() are actually useless,
> so remove them.
>
> Signed-off-by: Rocco Yue <rocco.yue@mediatek.com>
> ---
> net/ipv6/addrconf.c | 6 ++----
> 1 file changed, 2 insertions(+), 4 deletions(-)
>
a v2 with no changelog. From what I can tell the only difference is
"net: " in the Subject line which is not what I said in the last email.
Let me try again: There are 2 trees - net for bug fixes and net-next for
development (anything that is not a bug fix). Each patch should specify
which tree the patch is for by putting 'net' or 'net-next' in the
brackets ([]). This is a cleanup not a bug fix, so this patch should be:
[PATCH net-next] ipv6: remove unused local variable
and really that should be
[PATCH net-next] ipv6: remove unnecessary local variable
If you send more versions of a patch always put a changelog - a summary
of what is different in the current patch versus the previous ones.
No need to send another version of this patch unless you get a comment
requesting change, or the maintainers ask for a re-send.
Reviewed-by: David Ahern <dsahern@kernel.org>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v2] net: ipv6: remove unused local variable
2021-07-15 14:16 ` David Ahern
@ 2021-07-15 14:19 ` Rocco Yue
0 siblings, 0 replies; 3+ messages in thread
From: Rocco Yue @ 2021-07-15 14:19 UTC (permalink / raw)
To: David Ahern
Cc: David S . Miller, Hideaki YOSHIFUJI, David Ahern, Jakub Kicinski,
Matthias Brugger, netdev, linux-kernel, linux-arm-kernel,
linux-mediatek, wsd_upstream, rocco.yue, Rocco Yue
On Thu, 2021-07-15 at 08:16 -0600, David Ahern wrote:
> On 7/14/21 10:20 PM, Rocco Yue wrote:
>> The local variable "struct net *net" in the two functions of
>> inet6_rtm_getaddr() and inet6_dump_addr() are actually useless,
>> so remove them.
>>
>> Signed-off-by: Rocco Yue <rocco.yue@mediatek.com>
>> ---
>> net/ipv6/addrconf.c | 6 ++----
>> 1 file changed, 2 insertions(+), 4 deletions(-)
>>
>
> a v2 with no changelog. From what I can tell the only difference is
> "net: " in the Subject line which is not what I said in the last email.
>
> Let me try again: There are 2 trees - net for bug fixes and net-next for
> development (anything that is not a bug fix). Each patch should specify
> which tree the patch is for by putting 'net' or 'net-next' in the
> brackets ([]). This is a cleanup not a bug fix, so this patch should be:
>
> [PATCH net-next] ipv6: remove unused local variable
>
> and really that should be
>
> [PATCH net-next] ipv6: remove unnecessary local variable
>
> If you send more versions of a patch always put a changelog - a summary
> of what is different in the current patch versus the previous ones.
>
> No need to send another version of this patch unless you get a comment
> requesting change, or the maintainers ask for a re-send.
>
> Reviewed-by: David Ahern <dsahern@kernel.org>
Hi David,
Thanks for your detailed explanation,
I am appreciated that you shared these valureable advices for me.
They are important for my furture upstream work.
I will re-send it :)
Sincerely,
Rocco
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2021-07-15 14:35 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-15 4:20 [PATCH v2] net: ipv6: remove unused local variable Rocco Yue
2021-07-15 14:16 ` David Ahern
2021-07-15 14:19 ` Rocco Yue
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).