diff mbox

ipv4 : igmp : optimize timer modify logic in igmp_mod_timer()

Message ID 1322062004-9742-1-git-send-email-mypopydev@gmail.com
State Superseded, archived
Delegated to: David Miller
Headers show

Commit Message

Jun Zhao Nov. 23, 2011, 3:26 p.m. UTC
When timer is pending and expires less-than-or-equal-to new delay,
we need not used del_timer()/add_timer().

Signed-off-by: Jun Zhao <mypopydev@gmail.com>
---
 net/ipv4/igmp.c |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

Comments

Eric Dumazet Nov. 23, 2011, 3:42 p.m. UTC | #1
Le mercredi 23 novembre 2011 à 23:26 +0800, Jun Zhao a écrit :
> When timer is pending and expires less-than-or-equal-to new delay,
> we need not used del_timer()/add_timer().
> 
> Signed-off-by: Jun Zhao <mypopydev@gmail.com>
> ---
>  net/ipv4/igmp.c |   12 ++++++------
>  1 files changed, 6 insertions(+), 6 deletions(-)
> 
> diff --git a/net/ipv4/igmp.c b/net/ipv4/igmp.c
> index c7472ef..50d06c5 100644
> --- a/net/ipv4/igmp.c
> +++ b/net/ipv4/igmp.c
> @@ -215,14 +215,14 @@ static void igmp_mod_timer(struct ip_mc_list *im, int max_delay)
>  {
>  	spin_lock_bh(&im->lock);
>  	im->unsolicit_count = 0;
> -	if (del_timer(&im->timer)) {
> -		if ((long)(im->timer.expires-jiffies) < max_delay) {
> -			add_timer(&im->timer);
> -			im->tm_running = 1;
> -			spin_unlock_bh(&im->lock);
> +	if (timer_pending(&im->timer)) {
> +		if (time_before_eq(im->timer.expires, (jiffies + max_delay))) {
> +			spin_lock_bh(&im->lock);

And you actually tested this patch ?

>  			return;
> +		} else {
> +			del_timer(&im->timer);
> +			atomic_dec(&im->refcnt);
>  		}
> -		atomic_dec(&im->refcnt);
>  	}
>  	igmp_start_timer(im, max_delay);
>  	spin_unlock_bh(&im->lock);


Not sure why you want to optimize this very rare function call, risking
adding bugs in it.



--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Jun Zhao Nov. 23, 2011, 3:44 p.m. UTC | #2
On Wed, 2011-11-23 at 16:42 +0100, Eric Dumazet wrote:
> Le mercredi 23 novembre 2011 à 23:26 +0800, Jun Zhao a écrit :
> > When timer is pending and expires less-than-or-equal-to new delay,
> > we need not used del_timer()/add_timer().
> > 
> > Signed-off-by: Jun Zhao <mypopydev@gmail.com>
> > ---
> >  net/ipv4/igmp.c |   12 ++++++------
> >  1 files changed, 6 insertions(+), 6 deletions(-)
> > 
> > diff --git a/net/ipv4/igmp.c b/net/ipv4/igmp.c
> > index c7472ef..50d06c5 100644
> > --- a/net/ipv4/igmp.c
> > +++ b/net/ipv4/igmp.c
> > @@ -215,14 +215,14 @@ static void igmp_mod_timer(struct ip_mc_list *im, int max_delay)
> >  {
> >  	spin_lock_bh(&im->lock);
> >  	im->unsolicit_count = 0;
> > -	if (del_timer(&im->timer)) {
> > -		if ((long)(im->timer.expires-jiffies) < max_delay) {
> > -			add_timer(&im->timer);
> > -			im->tm_running = 1;
> > -			spin_unlock_bh(&im->lock);
> > +	if (timer_pending(&im->timer)) {
> > +		if (time_before_eq(im->timer.expires, (jiffies + max_delay))) {
> > +			spin_lock_bh(&im->lock);
> 
> And you actually tested this patch ?

Sorry for this mistake. :(.  spin_lock_bh -> spin_unlock_bh

> 
> >  			return;
> > +		} else {
> > +			del_timer(&im->timer);
> > +			atomic_dec(&im->refcnt);
> >  		}
> > -		atomic_dec(&im->refcnt);
> >  	}
> >  	igmp_start_timer(im, max_delay);
> >  	spin_unlock_bh(&im->lock);
> 
> 
> Not sure why you want to optimize this very rare function call, risking
> adding bugs in it.
> 
> 
> 


--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/net/ipv4/igmp.c b/net/ipv4/igmp.c
index c7472ef..50d06c5 100644
--- a/net/ipv4/igmp.c
+++ b/net/ipv4/igmp.c
@@ -215,14 +215,14 @@  static void igmp_mod_timer(struct ip_mc_list *im, int max_delay)
 {
 	spin_lock_bh(&im->lock);
 	im->unsolicit_count = 0;
-	if (del_timer(&im->timer)) {
-		if ((long)(im->timer.expires-jiffies) < max_delay) {
-			add_timer(&im->timer);
-			im->tm_running = 1;
-			spin_unlock_bh(&im->lock);
+	if (timer_pending(&im->timer)) {
+		if (time_before_eq(im->timer.expires, (jiffies + max_delay))) {
+			spin_lock_bh(&im->lock);
 			return;
+		} else {
+			del_timer(&im->timer);
+			atomic_dec(&im->refcnt);
 		}
-		atomic_dec(&im->refcnt);
 	}
 	igmp_start_timer(im, max_delay);
 	spin_unlock_bh(&im->lock);