mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Jan Kara <jack@suse.cz>
To: Rickard Strandqvist <rickard_strandqvist@spectrumdigital.se>
Cc: Tejun Heo <tj@kernel.org>, Jan Kara <jack@suse.cz>,
	"David S. Miller" <davem@davemloft.net>,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH] lib: flex_proportions.c:  Remove some unused functions
Date: Mon, 5 Jan 2015 09:45:34 +0100	[thread overview]
Message-ID: <20150105084534.GA7056@quack.suse.cz> (raw)
In-Reply-To: <1419086431-3474-1-git-send-email-rickard_strandqvist@spectrumdigital.se>

On Sat 20-12-14 15:40:31, Rickard Strandqvist wrote:
> Removes some functions that are not used anywhere:
> prop_fraction_single() prop_local_destroy_single() prop_local_init_single() fprop_global_destroy()
> 
> This was partially found by using a static code analysis program called cppcheck.
  This is the same situation as with lib/proportions.c. The functions are
there for API completeness. As far as I'm looking the whole 'single'
section is unused so ifdeffing it out might make sense (and also ifdeffing
out fprop_inc_single() from include/linux/flex_proportions.h). Removing
fprop_global_destroy() is IMO pointless churn.

								Honza

> Signed-off-by: Rickard Strandqvist <rickard_strandqvist@spectrumdigital.se>
> ---
>  include/linux/flex_proportions.h |    6 -----
>  lib/flex_proportions.c           |   46 --------------------------------------
>  2 files changed, 52 deletions(-)
> 
> diff --git a/include/linux/flex_proportions.h b/include/linux/flex_proportions.h
> index 0d348e0..27ea6a1 100644
> --- a/include/linux/flex_proportions.h
> +++ b/include/linux/flex_proportions.h
> @@ -34,7 +34,6 @@ struct fprop_global {
>  };
>  
>  int fprop_global_init(struct fprop_global *p, gfp_t gfp);
> -void fprop_global_destroy(struct fprop_global *p);
>  bool fprop_new_period(struct fprop_global *p, int periods);
>  
>  /*
> @@ -52,12 +51,7 @@ struct fprop_local_single {
>  {	.lock = __RAW_SPIN_LOCK_UNLOCKED(name.lock),	\
>  }
>  
> -int fprop_local_init_single(struct fprop_local_single *pl);
> -void fprop_local_destroy_single(struct fprop_local_single *pl);
>  void __fprop_inc_single(struct fprop_global *p, struct fprop_local_single *pl);
> -void fprop_fraction_single(struct fprop_global *p,
> -	struct fprop_local_single *pl, unsigned long *numerator,
> -	unsigned long *denominator);
>  
>  static inline
>  void fprop_inc_single(struct fprop_global *p, struct fprop_local_single *pl)
> diff --git a/lib/flex_proportions.c b/lib/flex_proportions.c
> index 8f25652..575f9e1 100644
> --- a/lib/flex_proportions.c
> +++ b/lib/flex_proportions.c
> @@ -47,11 +47,6 @@ int fprop_global_init(struct fprop_global *p, gfp_t gfp)
>  	return 0;
>  }
>  
> -void fprop_global_destroy(struct fprop_global *p)
> -{
> -	percpu_counter_destroy(&p->events);
> -}
> -
>  /*
>   * Declare @periods new periods. It is upto the caller to make sure period
>   * transitions cannot happen in parallel.
> @@ -90,18 +85,6 @@ bool fprop_new_period(struct fprop_global *p, int periods)
>   * ---- SINGLE ----
>   */
>  
> -int fprop_local_init_single(struct fprop_local_single *pl)
> -{
> -	pl->events = 0;
> -	pl->period = 0;
> -	raw_spin_lock_init(&pl->lock);
> -	return 0;
> -}
> -
> -void fprop_local_destroy_single(struct fprop_local_single *pl)
> -{
> -}
> -
>  static void fprop_reflect_period_single(struct fprop_global *p,
>  					struct fprop_local_single *pl)
>  {
> @@ -134,35 +117,6 @@ void __fprop_inc_single(struct fprop_global *p, struct fprop_local_single *pl)
>  	percpu_counter_add(&p->events, 1);
>  }
>  
> -/* Return fraction of events of type pl */
> -void fprop_fraction_single(struct fprop_global *p,
> -			   struct fprop_local_single *pl,
> -			   unsigned long *numerator, unsigned long *denominator)
> -{
> -	unsigned int seq;
> -	s64 num, den;
> -
> -	do {
> -		seq = read_seqcount_begin(&p->sequence);
> -		fprop_reflect_period_single(p, pl);
> -		num = pl->events;
> -		den = percpu_counter_read_positive(&p->events);
> -	} while (read_seqcount_retry(&p->sequence, seq));
> -
> -	/*
> -	 * Make fraction <= 1 and denominator > 0 even in presence of percpu
> -	 * counter errors
> -	 */
> -	if (den <= num) {
> -		if (num)
> -			den = num;
> -		else
> -			den = 1;
> -	}
> -	*denominator = den;
> -	*numerator = num;
> -}
> -
>  /*
>   * ---- PERCPU ----
>   */
> -- 
> 1.7.10.4
> 
-- 
Jan Kara <jack@suse.cz>
SUSE Labs, CR

  reply	other threads:[~2015-01-05  8:45 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-12-20 14:40 Rickard Strandqvist
2015-01-05  8:45 ` Jan Kara [this message]
2015-01-05 13:23   ` Tejun Heo

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=20150105084534.GA7056@quack.suse.cz \
    --to=jack@suse.cz \
    --cc=davem@davemloft.net \
    --cc=linux-kernel@vger.kernel.org \
    --cc=rickard_strandqvist@spectrumdigital.se \
    --cc=tj@kernel.org \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®