* [PATCH net-next 1/5] 6lowpan: remove unnecessary ret variable
[not found] ` <1382647904-11311-1-git-send-email-alex.aring-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
@ 2013-10-24 20:51 ` Alexander Aring
2013-10-24 20:51 ` [PATCH net-next 3/5] 6lowpan: use netdev_alloc_skb instead dev_alloc_skb Alexander Aring
` (2 subsequent siblings)
3 siblings, 0 replies; 14+ messages in thread
From: Alexander Aring @ 2013-10-24 20:51 UTC (permalink / raw)
To: alex.bluesman.smirnov-Re5JQEeQqe8AvxtiuMwx3w
Cc: netdev-u79uwXL29TY76Z2rM5mHXA,
linux-zigbee-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
Signed-off-by: Alexander Aring <alex.aring-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Reviewed-by: Werner Almesberger <werner-SEdMjqphH88wryQfseakQg@public.gmane.org>
---
net/ieee802154/6lowpan.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/net/ieee802154/6lowpan.c b/net/ieee802154/6lowpan.c
index ff41b4d..d288035 100644
--- a/net/ieee802154/6lowpan.c
+++ b/net/ieee802154/6lowpan.c
@@ -1120,7 +1120,7 @@ lowpan_fragment_xmit(struct sk_buff *skb, u8 *head,
int mlen, int plen, int offset, int type)
{
struct sk_buff *frag;
- int hlen, ret;
+ int hlen;
hlen = (type == LOWPAN_DISPATCH_FRAG1) ?
LOWPAN_FRAG1_HEAD_SIZE : LOWPAN_FRAGN_HEAD_SIZE;
@@ -1145,9 +1145,7 @@ lowpan_fragment_xmit(struct sk_buff *skb, u8 *head,
lowpan_raw_dump_table(__func__, " raw fragment dump", frag->data,
frag->len);
- ret = dev_queue_xmit(frag);
-
- return ret;
+ return dev_queue_xmit(frag);
}
static int
--
1.8.4.1
------------------------------------------------------------------------------
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from
the latest Intel processors and coprocessors. See abstracts and register >
http://pubads.g.doubleclick.net/gampad/clk?id=60135991&iu=/4140/ostg.clktrk
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH net-next 3/5] 6lowpan: use netdev_alloc_skb instead dev_alloc_skb
[not found] ` <1382647904-11311-1-git-send-email-alex.aring-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2013-10-24 20:51 ` [PATCH net-next 1/5] 6lowpan: remove unnecessary ret variable Alexander Aring
@ 2013-10-24 20:51 ` Alexander Aring
2013-10-26 5:42 ` David Miller
2013-10-24 20:51 ` [PATCH net-next 4/5] 6lowpan: remove skb->dev assignment Alexander Aring
2013-10-24 20:51 ` [PATCH net-next 5/5] 6lowpan: remove unecessary break Alexander Aring
3 siblings, 1 reply; 14+ messages in thread
From: Alexander Aring @ 2013-10-24 20:51 UTC (permalink / raw)
To: alex.bluesman.smirnov-Re5JQEeQqe8AvxtiuMwx3w
Cc: netdev-u79uwXL29TY76Z2rM5mHXA,
linux-zigbee-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
This patch uses the netdev_alloc_skb instead dev_alloc_skb function and
drops the seperate assignment to skb->dev.
Signed-off-by: Alexander Aring <alex.aring-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Reviewed-by: Werner Almesberger <werner-SEdMjqphH88wryQfseakQg@public.gmane.org>
---
net/ieee802154/6lowpan.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net/ieee802154/6lowpan.c b/net/ieee802154/6lowpan.c
index 9057f83..7510278 100644
--- a/net/ieee802154/6lowpan.c
+++ b/net/ieee802154/6lowpan.c
@@ -1127,12 +1127,12 @@ lowpan_fragment_xmit(struct sk_buff *skb, u8 *head,
lowpan_raw_dump_inline(__func__, "6lowpan fragment header", head, hlen);
- frag = dev_alloc_skb(hlen + mlen + plen + IEEE802154_MFR_SIZE);
+ frag = netdev_alloc_skb(skb->dev, hlen + mlen +
+ plen + IEEE802154_MFR_SIZE);
if (!frag)
return -ENOMEM;
frag->priority = skb->priority;
- frag->dev = skb->dev;
/* copy header, MFR and payload */
memcpy(skb_put(frag, mlen), skb->data, mlen);
--
1.8.4.1
------------------------------------------------------------------------------
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from
the latest Intel processors and coprocessors. See abstracts and register >
http://pubads.g.doubleclick.net/gampad/clk?id=60135991&iu=/4140/ostg.clktrk
^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [PATCH net-next 3/5] 6lowpan: use netdev_alloc_skb instead dev_alloc_skb
2013-10-24 20:51 ` [PATCH net-next 3/5] 6lowpan: use netdev_alloc_skb instead dev_alloc_skb Alexander Aring
@ 2013-10-26 5:42 ` David Miller
[not found] ` <20131026.014214.1636999222808937267.davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org>
0 siblings, 1 reply; 14+ messages in thread
From: David Miller @ 2013-10-26 5:42 UTC (permalink / raw)
To: alex.aring
Cc: alex.bluesman.smirnov, linux-zigbee-devel, werner, dbaryshkov,
netdev
From: Alexander Aring <alex.aring@gmail.com>
Date: Thu, 24 Oct 2013 22:51:42 +0200
> @@ -1127,12 +1127,12 @@ lowpan_fragment_xmit(struct sk_buff *skb, u8 *head,
>
> lowpan_raw_dump_inline(__func__, "6lowpan fragment header", head, hlen);
>
> - frag = dev_alloc_skb(hlen + mlen + plen + IEEE802154_MFR_SIZE);
> + frag = netdev_alloc_skb(skb->dev, hlen + mlen +
> + plen + IEEE802154_MFR_SIZE);
Please indent this properly.
It should be something like:
frag = netdev_alloc_skb(skb->dev, hlen + mlen +
plen + IEEE802154_MFR_SIZE);
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH net-next 4/5] 6lowpan: remove skb->dev assignment
[not found] ` <1382647904-11311-1-git-send-email-alex.aring-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2013-10-24 20:51 ` [PATCH net-next 1/5] 6lowpan: remove unnecessary ret variable Alexander Aring
2013-10-24 20:51 ` [PATCH net-next 3/5] 6lowpan: use netdev_alloc_skb instead dev_alloc_skb Alexander Aring
@ 2013-10-24 20:51 ` Alexander Aring
2013-10-24 20:51 ` [PATCH net-next 5/5] 6lowpan: remove unecessary break Alexander Aring
3 siblings, 0 replies; 14+ messages in thread
From: Alexander Aring @ 2013-10-24 20:51 UTC (permalink / raw)
To: alex.bluesman.smirnov-Re5JQEeQqe8AvxtiuMwx3w
Cc: netdev-u79uwXL29TY76Z2rM5mHXA,
linux-zigbee-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
This patch removes the assignment of skb->dev. We don't need it here because
we use the netdev_alloc_skb_ip_align function which already sets the
skb->dev.
Signed-off-by: Alexander Aring <alex.aring-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Reviewed-by: Werner Almesberger <werner-SEdMjqphH88wryQfseakQg@public.gmane.org>
---
net/ieee802154/6lowpan.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/net/ieee802154/6lowpan.c b/net/ieee802154/6lowpan.c
index 7510278..e15b101 100644
--- a/net/ieee802154/6lowpan.c
+++ b/net/ieee802154/6lowpan.c
@@ -785,7 +785,6 @@ lowpan_alloc_new_frame(struct sk_buff *skb, u16 len, u16 tag)
goto skb_err;
frame->skb->priority = skb->priority;
- frame->skb->dev = skb->dev;
/* reserve headroom for uncompressed ipv6 header */
skb_reserve(frame->skb, sizeof(struct ipv6hdr));
--
1.8.4.1
------------------------------------------------------------------------------
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from
the latest Intel processors and coprocessors. See abstracts and register >
http://pubads.g.doubleclick.net/gampad/clk?id=60135991&iu=/4140/ostg.clktrk
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH net-next 5/5] 6lowpan: remove unecessary break
[not found] ` <1382647904-11311-1-git-send-email-alex.aring-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
` (2 preceding siblings ...)
2013-10-24 20:51 ` [PATCH net-next 4/5] 6lowpan: remove skb->dev assignment Alexander Aring
@ 2013-10-24 20:51 ` Alexander Aring
2013-10-25 3:28 ` Alexander Smirnov
3 siblings, 1 reply; 14+ messages in thread
From: Alexander Aring @ 2013-10-24 20:51 UTC (permalink / raw)
To: alex.bluesman.smirnov-Re5JQEeQqe8AvxtiuMwx3w
Cc: netdev-u79uwXL29TY76Z2rM5mHXA,
linux-zigbee-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
Signed-off-by: Alexander Aring <alex.aring-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Reviewed-by: Werner Almesberger <werner-SEdMjqphH88wryQfseakQg@public.gmane.org>
---
net/ieee802154/6lowpan.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/net/ieee802154/6lowpan.c b/net/ieee802154/6lowpan.c
index e15b101..09350f1 100644
--- a/net/ieee802154/6lowpan.c
+++ b/net/ieee802154/6lowpan.c
@@ -440,7 +440,6 @@ lowpan_uncompress_udp_header(struct sk_buff *skb, struct udphdr *uh)
default:
pr_debug("ERROR: unknown UDP format\n");
goto err;
- break;
}
pr_debug("uncompressed UDP ports: src = %d, dst = %d\n",
--
1.8.4.1
------------------------------------------------------------------------------
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from
the latest Intel processors and coprocessors. See abstracts and register >
http://pubads.g.doubleclick.net/gampad/clk?id=60135991&iu=/4140/ostg.clktrk
^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [PATCH net-next 5/5] 6lowpan: remove unecessary break
2013-10-24 20:51 ` [PATCH net-next 5/5] 6lowpan: remove unecessary break Alexander Aring
@ 2013-10-25 3:28 ` Alexander Smirnov
2013-10-25 3:40 ` Joe Perches
2013-10-25 13:05 ` Sergei Shtylyov
0 siblings, 2 replies; 14+ messages in thread
From: Alexander Smirnov @ 2013-10-25 3:28 UTC (permalink / raw)
To: Alexander Aring
Cc: linux-zigbee-devel@lists.sourceforge.net, werner@almesberger.net,
dbaryshkov@gmail.com, netdev@vger.kernel.org, Alexander Aring
> 25 окт. 2013 г., в 0:51, Alexander Aring <alex.aring@gmail.com> написал(а):
>
> Signed-off-by: Alexander Aring <alex.aring@gmail.com>
> Reviewed-by: Werner Almesberger <werner@almesberger.net>
> ---
> net/ieee802154/6lowpan.c | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/net/ieee802154/6lowpan.c b/net/ieee802154/6lowpan.c
> index e15b101..09350f1 100644
> --- a/net/ieee802154/6lowpan.c
> +++ b/net/ieee802154/6lowpan.c
> @@ -440,7 +440,6 @@ lowpan_uncompress_udp_header(struct sk_buff *skb, struct udphdr *uh)
> default:
> pr_debug("ERROR: unknown UDP format\n");
> goto err;
> - break;
> }
>
It's not an unnecessary, it's let say a "good coding practice" to have a break for every case including default.
> pr_debug("uncompressed UDP ports: src = %d, dst = %d\n",
> --
> 1.8.4.1
>
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH net-next 5/5] 6lowpan: remove unecessary break
2013-10-25 3:28 ` Alexander Smirnov
@ 2013-10-25 3:40 ` Joe Perches
2013-10-25 3:42 ` David Miller
2013-10-25 13:05 ` Sergei Shtylyov
1 sibling, 1 reply; 14+ messages in thread
From: Joe Perches @ 2013-10-25 3:40 UTC (permalink / raw)
To: Alexander Smirnov
Cc: Alexander Aring, linux-zigbee-devel@lists.sourceforge.net,
werner@almesberger.net, dbaryshkov@gmail.com,
netdev@vger.kernel.org
On Fri, 2013-10-25 at 07:28 +0400, Alexander Smirnov wrote:
> > 25 окт. 2013 г., в 0:51, Alexander Aring <alex.aring@gmail.com> написал(а):
[]
> > diff --git a/net/ieee802154/6lowpan.c b/net/ieee802154/6lowpan.c
[]
> > @@ -440,7 +440,6 @@ lowpan_uncompress_udp_header(struct sk_buff *skb, struct udphdr *uh)
> > default:
> > pr_debug("ERROR: unknown UDP format\n");
> > goto err;
> > - break;
> > }
> >
>
> It's not an unnecessary, it's let say a "good coding practice" to have a break for every case including default.
Hello Alexanders:
Some would otherwise say it's a poor practice.
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH net-next 5/5] 6lowpan: remove unecessary break
2013-10-25 3:40 ` Joe Perches
@ 2013-10-25 3:42 ` David Miller
0 siblings, 0 replies; 14+ messages in thread
From: David Miller @ 2013-10-25 3:42 UTC (permalink / raw)
To: joe
Cc: alex.bluesman.smirnov, alex.aring, linux-zigbee-devel, werner,
dbaryshkov, netdev
From: Joe Perches <joe@perches.com>
Date: Thu, 24 Oct 2013 20:40:51 -0700
> On Fri, 2013-10-25 at 07:28 +0400, Alexander Smirnov wrote:
>> > 25 окт. 2013 г., в 0:51, Alexander Aring <alex.aring@gmail.com> написал(а):
> []
>> > diff --git a/net/ieee802154/6lowpan.c b/net/ieee802154/6lowpan.c
> []
>> > @@ -440,7 +440,6 @@ lowpan_uncompress_udp_header(struct sk_buff *skb, struct udphdr *uh)
>> > default:
>> > pr_debug("ERROR: unknown UDP format\n");
>> > goto err;
>> > - break;
>> > }
>> >
>>
>> It's not an unnecessary, it's let say a "good coding practice" to have a break for every case including default.
>
> Hello Alexanders:
>
> Some would otherwise say it's a poor practice.
I think with a goto there at the end of the case statement, it's redundant
and stupid, and thus should be removed.
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH net-next 5/5] 6lowpan: remove unecessary break
2013-10-25 3:28 ` Alexander Smirnov
2013-10-25 3:40 ` Joe Perches
@ 2013-10-25 13:05 ` Sergei Shtylyov
[not found] ` <526A6CB2.1040007-M4DtvfQ/ZS1MRgGoP+s0PdBPR1lH4CV8@public.gmane.org>
1 sibling, 1 reply; 14+ messages in thread
From: Sergei Shtylyov @ 2013-10-25 13:05 UTC (permalink / raw)
To: Alexander Smirnov, Alexander Aring
Cc: linux-zigbee-devel@lists.sourceforge.net, werner@almesberger.net,
dbaryshkov@gmail.com, netdev@vger.kernel.org
Hello.
On 25-10-2013 7:28, Alexander Smirnov wrote:
>> Signed-off-by: Alexander Aring <alex.aring@gmail.com>
>> Reviewed-by: Werner Almesberger <werner@almesberger.net>
>> ---
>> net/ieee802154/6lowpan.c | 1 -
>> 1 file changed, 1 deletion(-)
>> diff --git a/net/ieee802154/6lowpan.c b/net/ieee802154/6lowpan.c
>> index e15b101..09350f1 100644
>> --- a/net/ieee802154/6lowpan.c
>> +++ b/net/ieee802154/6lowpan.c
>> @@ -440,7 +440,6 @@ lowpan_uncompress_udp_header(struct sk_buff *skb, struct udphdr *uh)
>> default:
>> pr_debug("ERROR: unknown UDP format\n");
>> goto err;
>> - break;
>> }
> It's not an unnecessary, it's let say a "good coding practice" to have a break for every case including default.
Even after *goto*? :-)
WBR, Sergei
^ permalink raw reply [flat|nested] 14+ messages in thread