mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 21:38:32 +08:00
ipvs: fix sparse warnings in lblc and lblcr
kbuild test robot reports for sparse warnings in commitsc2a4ffb70e
("ipvs: convert lblc scheduler to rcu") andc5549571f9
("ipvs: convert lblcr scheduler to rcu"). Fix it by removing extra __rcu annotation. Signed-off-by: Julian Anastasov <ja@ssi.bg> Signed-off-by: Simon Horman <horms@verge.net.au>
This commit is contained in:
parent
371990eeec
commit
f33c8b94fd
@ -104,7 +104,7 @@ struct ip_vs_lblc_entry {
|
||||
*/
|
||||
struct ip_vs_lblc_table {
|
||||
struct rcu_head rcu_head;
|
||||
struct hlist_head __rcu bucket[IP_VS_LBLC_TAB_SIZE]; /* hash bucket */
|
||||
struct hlist_head bucket[IP_VS_LBLC_TAB_SIZE]; /* hash bucket */
|
||||
struct timer_list periodic_timer; /* collect stale entries */
|
||||
atomic_t entries; /* number of entries */
|
||||
int max_size; /* maximum size of entries */
|
||||
|
@ -284,7 +284,7 @@ struct ip_vs_lblcr_entry {
|
||||
*/
|
||||
struct ip_vs_lblcr_table {
|
||||
struct rcu_head rcu_head;
|
||||
struct hlist_head __rcu bucket[IP_VS_LBLCR_TAB_SIZE]; /* hash bucket */
|
||||
struct hlist_head bucket[IP_VS_LBLCR_TAB_SIZE]; /* hash bucket */
|
||||
atomic_t entries; /* number of entries */
|
||||
int max_size; /* maximum size of entries */
|
||||
struct timer_list periodic_timer; /* collect stale entries */
|
||||
|
Loading…
Reference in New Issue
Block a user