From: Ryan Mallon <rmallon@gmail.com>
To: Jesper Juhl <jj@chaosbits.net>
Cc: netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
"David S. Miller" <davem@davemloft.net>,
Eric Dumazet <eric.dumazet@gmail.com>,
Changli Gao <xiaosuo@gmail.com>,
Ben Greear <greearb@candelatech.com>,
Chetan Loke <loke.chetan@gmail.com>,
waltje@uWalt.NL.Mugnet.ORG, gw4pts@gw4pts.ampr.org,
waltje@linux.com, ross.biro@gmail.com, alan@linux.intel.com
Subject: Re: [PATCH] net/packet: remove dead code and unneeded variable from prb_setup_retire_blk_timer()
Date: Mon, 14 Nov 2011 16:42:09 +1100 [thread overview]
Message-ID: <4EC0AA31.9040403@gmail.com> (raw)
In-Reply-To: <alpine.LNX.2.00.1111132247440.3368@swampdragon.chaosbits.net>
On 14/11/11 08:55, Jesper Juhl wrote:
> We test for 'tx_ring' being != zero and BUG() if that's the case. So after
> that check there is no way that 'tx_ring' could be anything _but_ zero, so
> testing it again is just dead code. Once that dead code is removed, the
> 'pkc' local variable becomes entirely redundant, so remove that as well.
What if CONFIG_BUG=n?
~Ryan
> Signed-off-by: Jesper Juhl <jj@chaosbits.net>
> ---
> net/packet/af_packet.c | 6 ++----
> 1 files changed, 2 insertions(+), 4 deletions(-)
>
> only compile tested.
>
> diff --git a/net/packet/af_packet.c b/net/packet/af_packet.c
> index 82a6f34..ab10e84 100644
> --- a/net/packet/af_packet.c
> +++ b/net/packet/af_packet.c
> @@ -516,13 +516,11 @@ static void prb_init_blk_timer(struct packet_sock *po,
>
> static void prb_setup_retire_blk_timer(struct packet_sock *po, int tx_ring)
> {
> - struct tpacket_kbdq_core *pkc;
> -
> if (tx_ring)
> BUG();
>
> - pkc = tx_ring ? &po->tx_ring.prb_bdqc : &po->rx_ring.prb_bdqc;
> - prb_init_blk_timer(po, pkc, prb_retire_rx_blk_timer_expired);
> + prb_init_blk_timer(po, &po->rx_ring.prb_bdqc,
> + prb_retire_rx_blk_timer_expired);
> }
>
> static int prb_calc_retire_blk_tmo(struct packet_sock *po,
next prev parent reply other threads:[~2011-11-14 5:42 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-11-13 21:55 [PATCH] net/packet: remove dead code and unneeded variable from prb_setup_retire_blk_timer() Jesper Juhl
2011-11-14 5:09 ` David Miller
2011-11-14 5:42 ` Ryan Mallon [this message]
2011-11-14 23:37 ` Jesper Juhl
2011-11-14 23:38 ` Ryan Mallon
2011-11-14 23:48 ` Jesper Juhl
2011-11-15 0:00 ` Ryan Mallon
2011-11-14 23:43 ` David Miller
2011-11-14 23:51 ` Jesper Juhl
2011-11-14 23:47 ` David Miller
2011-11-15 0:08 ` Jesper Juhl
2011-11-14 15:54 ` chetan loke
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4EC0AA31.9040403@gmail.com \
--to=rmallon@gmail.com \
--cc=alan@linux.intel.com \
--cc=davem@davemloft.net \
--cc=eric.dumazet@gmail.com \
--cc=greearb@candelatech.com \
--cc=gw4pts@gw4pts.ampr.org \
--cc=jj@chaosbits.net \
--cc=linux-kernel@vger.kernel.org \
--cc=loke.chetan@gmail.com \
--cc=netdev@vger.kernel.org \
--cc=ross.biro@gmail.com \
--cc=waltje@linux.com \
--cc=waltje@uWalt.NL.Mugnet.ORG \
--cc=xiaosuo@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.