diff options
author | Jarek Poplawski <jarkao2@gmail.com> | 2008-01-21 05:36:02 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 18:08:43 -0500 |
commit | 96750162b5f7350ec7ba7cf747a6623858d65dd2 (patch) | |
tree | efa86815e5e3ff38b59f2c5e9ec3f6bc5dc1d3c0 /net | |
parent | 72348a424f989d6b748d9b816d46839b01fcd4cd (diff) |
[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 <jarkao2@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/core/gen_estimator.c | 13 |
1 files changed, 6 insertions, 7 deletions
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, | |||
241 | } | 241 | } |
242 | 242 | ||
243 | /** | 243 | /** |
244 | * gen_replace_estimator - replace rate estimator configruation | 244 | * gen_replace_estimator - replace rate estimator configuration |
245 | * @bstats: basic statistics | 245 | * @bstats: basic statistics |
246 | * @rate_est: rate estimator statistics | 246 | * @rate_est: rate estimator statistics |
247 | * @stats_lock: statistics lock | 247 | * @stats_lock: statistics lock |
@@ -252,13 +252,12 @@ void gen_kill_estimator(struct gnet_stats_basic *bstats, | |||
252 | * | 252 | * |
253 | * Returns 0 on success or a negative error code. | 253 | * Returns 0 on success or a negative error code. |
254 | */ | 254 | */ |
255 | int | 255 | int gen_replace_estimator(struct gnet_stats_basic *bstats, |
256 | gen_replace_estimator(struct gnet_stats_basic *bstats, | 256 | struct gnet_stats_rate_est *rate_est, |
257 | struct gnet_stats_rate_est *rate_est, spinlock_t *stats_lock, | 257 | spinlock_t *stats_lock, struct rtattr *opt) |
258 | struct rtattr *opt) | ||
259 | { | 258 | { |
260 | gen_kill_estimator(bstats, rate_est); | 259 | gen_kill_estimator(bstats, rate_est); |
261 | return gen_new_estimator(bstats, rate_est, stats_lock, opt); | 260 | return gen_new_estimator(bstats, rate_est, stats_lock, opt); |
262 | } | 261 | } |
263 | 262 | ||
264 | 263 | ||