Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

sched/fair: fix lots of kernel-doc warnings

Fix lots of new kernel-doc warnings in kernel/sched/fair.c:

Warning(kernel/sched/fair.c:3625): No description found for parameter 'env'
Warning(kernel/sched/fair.c:3625): Excess function parameter 'sd' description in 'update_sg_lb_stats'
Warning(kernel/sched/fair.c:3735): No description found for parameter 'env'
Warning(kernel/sched/fair.c:3735): Excess function parameter 'sd' description in 'update_sd_pick_busiest'
Warning(kernel/sched/fair.c:3735): Excess function parameter 'this_cpu' description in 'update_sd_pick_busiest'
.. more warnings

Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Randy Dunlap and committed by
Linus Torvalds
cd96891d 8f53369b

+6 -16
+6 -16
kernel/sched/fair.c
··· 3632 3632 3633 3633 /** 3634 3634 * update_sg_lb_stats - Update sched_group's statistics for load balancing. 3635 - * @sd: The sched_domain whose statistics are to be updated. 3635 + * @env: The load balancing environment. 3636 3636 * @group: sched_group whose statistics are to be updated. 3637 3637 * @load_idx: Load index of sched_domain of this_cpu for load calc. 3638 3638 * @local_group: Does group contain this_cpu. ··· 3741 3741 3742 3742 /** 3743 3743 * update_sd_pick_busiest - return 1 on busiest group 3744 - * @sd: sched_domain whose statistics are to be checked 3744 + * @env: The load balancing environment. 3745 3745 * @sds: sched_domain statistics 3746 3746 * @sg: sched_group candidate to be checked for being the busiest 3747 3747 * @sgs: sched_group statistics 3748 - * @this_cpu: the current cpu 3749 3748 * 3750 3749 * Determine if @sg is a busier group than the previously selected 3751 3750 * busiest group. ··· 3782 3783 3783 3784 /** 3784 3785 * update_sd_lb_stats - Update sched_domain's statistics for load balancing. 3785 - * @sd: sched_domain whose statistics are to be updated. 3786 - * @this_cpu: Cpu for which load balance is currently performed. 3787 - * @idle: Idle status of this_cpu 3786 + * @env: The load balancing environment. 3788 3787 * @cpus: Set of cpus considered for load balancing. 3789 3788 * @balance: Should we balance. 3790 3789 * @sds: variable to hold the statistics for this sched_domain. ··· 3871 3874 * Returns 1 when packing is required and a task should be moved to 3872 3875 * this CPU. The amount of the imbalance is returned in *imbalance. 3873 3876 * 3874 - * @sd: The sched_domain whose packing is to be checked. 3877 + * @env: The load balancing environment. 3875 3878 * @sds: Statistics of the sched_domain which is to be packed 3876 - * @this_cpu: The cpu at whose sched_domain we're performing load-balance. 3877 - * @imbalance: returns amount of imbalanced due to packing. 3878 3879 */ 3879 3880 static int check_asym_packing(struct lb_env *env, struct sd_lb_stats *sds) 3880 3881 { ··· 3898 3903 * fix_small_imbalance - Calculate the minor imbalance that exists 3899 3904 * amongst the groups of a sched_domain, during 3900 3905 * load balancing. 3906 + * @env: The load balancing environment. 3901 3907 * @sds: Statistics of the sched_domain whose imbalance is to be calculated. 3902 - * @this_cpu: The cpu at whose sched_domain we're performing load-balance. 3903 - * @imbalance: Variable to store the imbalance. 3904 3908 */ 3905 3909 static inline 3906 3910 void fix_small_imbalance(struct lb_env *env, struct sd_lb_stats *sds) ··· 4042 4048 * Also calculates the amount of weighted load which should be moved 4043 4049 * to restore balance. 4044 4050 * 4045 - * @sd: The sched_domain whose busiest group is to be returned. 4046 - * @this_cpu: The cpu for which load balancing is currently being performed. 4047 - * @imbalance: Variable which stores amount of weighted load which should 4048 - * be moved to restore balance/put a group to idle. 4049 - * @idle: The idle status of this_cpu. 4051 + * @env: The load balancing environment. 4050 4052 * @cpus: The set of CPUs under consideration for load-balancing. 4051 4053 * @balance: Pointer to a variable indicating if this_cpu 4052 4054 * is the appropriate cpu to perform load balancing at this_level.