![]() |
lvs-devel
|
| To: | Simon Horman <horms@xxxxxxxxxxxx> |
|---|---|
| Subject: | Re: [rfc 10/13] [RFC 10/13] IPVS: management of persistence engine modules |
| Cc: | lvs-devel@xxxxxxxxxxxxxxx, netdev@xxxxxxxxxxxxxxx, netfilter@xxxxxxxxxxxxxxx, netfilter-devel@xxxxxxxxxxxxxxx, Wensong Zhang <wensong@xxxxxxxxxxxx>, Julian Anastasov <ja@xxxxxx>, Patrick McHardy <kaber@xxxxxxxxx> |
| From: | Stephen Hemminger <shemminger@xxxxxxxxxx> |
| Date: | Thu, 5 Aug 2010 09:29:20 -0700 |
On Thu, 05 Aug 2010 20:48:05 +0900
Simon Horman <horms@xxxxxxxxxxxx> wrote:
> +/* lock for service table */
> +static DEFINE_RWLOCK(__ip_vs_pe_lock);
It is already static so why the __?
Reader/writer locks are slower than spinlocks. Either use
a spinlock, or RCU (if possible)
> +/* Bind a service with a pe */
> +void ip_vs_bind_pe(struct ip_vs_service *svc, struct ip_vs_pe *pe)
> +{
> + svc->pe = pe;
> +}
> +
> +/* Unbind a service from its pe */
> +void ip_vs_unbind_pe(struct ip_vs_service *svc)
> +{
> + svc->pe = NULL;
> +}
What does having these wrappers buy?
--
To unsubscribe from this list: send the line "unsubscribe lvs-devel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
|
| Previous by Date: | Re: [rfc 13/13] [RFC 13/13] IPVS: sip persistence engine, Jan Engelhardt |
|---|---|
| Next by Date: | Re: [rfc 09/13] [RFC 09/13] IPVS: Add persistence engine data to /proc/net/ip_vs_conn, Simon Horman |
| Previous by Thread: | [rfc 10/13] [RFC 10/13] IPVS: management of persistence engine modules, Simon Horman |
| Next by Thread: | Re: [rfc 10/13] [RFC 10/13] IPVS: management of persistence engine modules, Simon Horman |
| Indexes: | [Date] [Thread] [Top] [All Lists] |