Lines Matching defs:ip_vs_service
653 struct ip_vs_service { struct
654 struct hlist_node s_list; /* for normal service table */
655 struct hlist_node f_list; /* for fwmark-based service table */
656 atomic_t refcnt; /* reference counter */
658 u16 af; /* address family */
659 __u16 protocol; /* which protocol (TCP/UDP) */
660 union nf_inet_addr addr; /* IP address for virtual service */
661 __be16 port; /* port number for the service */
662 __u32 fwmark; /* firewall mark of the service */
663 unsigned int flags; /* service status flags */
664 unsigned int timeout; /* persistent timeout in ticks */
665 __be32 netmask; /* grouping granularity, mask/plen */
666 struct net *net;
668 struct list_head destinations; /* real server d-linked list */
669 __u32 num_dests; /* number of servers */
670 struct ip_vs_stats stats; /* statistics for the service */
673 struct ip_vs_scheduler __rcu *scheduler; /* bound scheduler object */
674 spinlock_t sched_lock; /* lock sched_data */
675 void *sched_data; /* scheduler application data */
678 struct ip_vs_pe __rcu *pe;
680 struct rcu_head rcu_head;