From: Jarek Poplawski Date: Mon, 21 Jan 2008 10:36:02 +0000 (-0800) Subject: [NET] gen_estimator: gen_replace_estimator() cosmetic changes X-Git-Tag: firefly_0821_release~23655^2~222 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=96750162b5f7350ec7ba7cf747a6623858d65dd2;p=firefly-linux-kernel-4.4.55.git [NET] gen_estimator: gen_replace_estimator() cosmetic changes White spaces etc. are changed in gen_replace_estimator() to make it similar to others in a file. Signed-off-by: Jarek Poplawski Signed-off-by: David S. Miller --- diff --git a/net/core/gen_estimator.c b/net/core/gen_estimator.c index 86037d16f199..7ab9060bccd0 100644 --- a/net/core/gen_estimator.c +++ b/net/core/gen_estimator.c @@ -241,7 +241,7 @@ void gen_kill_estimator(struct gnet_stats_basic *bstats, } /** - * gen_replace_estimator - replace rate estimator configruation + * gen_replace_estimator - replace rate estimator configuration * @bstats: basic statistics * @rate_est: rate estimator statistics * @stats_lock: statistics lock @@ -252,13 +252,12 @@ void gen_kill_estimator(struct gnet_stats_basic *bstats, * * Returns 0 on success or a negative error code. */ -int -gen_replace_estimator(struct gnet_stats_basic *bstats, - struct gnet_stats_rate_est *rate_est, spinlock_t *stats_lock, - struct rtattr *opt) +int gen_replace_estimator(struct gnet_stats_basic *bstats, + struct gnet_stats_rate_est *rate_est, + spinlock_t *stats_lock, struct rtattr *opt) { - gen_kill_estimator(bstats, rate_est); - return gen_new_estimator(bstats, rate_est, stats_lock, opt); + gen_kill_estimator(bstats, rate_est); + return gen_new_estimator(bstats, rate_est, stats_lock, opt); }