This patch uses alloc_percpu to allocate per-CPU memory for the proto->inuse
field.  The inuse field is currently per-CPU as in NR_CPUS * cacheline size -- 
a big bloat on arches with large cachelines.  Also marks some frequently
used protos read mostly.

Signed-off-by: Pravin B. Shelar <[EMAIL PROTECTED]>
Signed-off-by: Ravikiran Thirumalai <[EMAIL PROTECTED]>
Signed-off-by: Shai Fultheim <[EMAIL PROTECTED]>

Index: linux-2.6.16-rc1/include/net/sock.h
===================================================================
--- linux-2.6.16-rc1.orig/include/net/sock.h    2006-01-25 11:55:46.000000000 
-0800
+++ linux-2.6.16-rc1/include/net/sock.h 2006-01-25 11:55:48.000000000 -0800
@@ -573,10 +573,7 @@ struct proto {
 #ifdef SOCK_REFCNT_DEBUG
        atomic_t                socks;
 #endif
-       struct {
-               int inuse;
-               u8  __pad[SMP_CACHE_BYTES - sizeof(int)];
-       } stats[NR_CPUS];
+       int *inuse;
 };
 
 static inline int read_sockets_allocated(struct proto *prot)
@@ -628,12 +625,12 @@ static inline void sk_refcnt_debug_relea
 /* Called with local bh disabled */
 static __inline__ void sock_prot_inc_use(struct proto *prot)
 {
-       prot->stats[smp_processor_id()].inuse++;
+       (*per_cpu_ptr(prot->inuse, smp_processor_id())) += 1;
 }
 
 static __inline__ void sock_prot_dec_use(struct proto *prot)
 {
-       prot->stats[smp_processor_id()].inuse--;
+       (*per_cpu_ptr(prot->inuse, smp_processor_id())) -= 1;
 }
 
 /* With per-bucket locks this operation is not-atomic, so that
Index: linux-2.6.16-rc1/net/core/sock.c
===================================================================
--- linux-2.6.16-rc1.orig/net/core/sock.c       2006-01-25 11:55:46.000000000 
-0800
+++ linux-2.6.16-rc1/net/core/sock.c    2006-01-25 11:57:29.000000000 -0800
@@ -1508,12 +1508,21 @@ int proto_register(struct proto *prot, i
                }
        }
 
+       prot->inuse = alloc_percpu(int);
+       if (prot->inuse == NULL) {
+               if (alloc_slab)
+                       goto out_free_timewait_sock_slab_name_cache;
+               else
+                       goto out;
+       }
        write_lock(&proto_list_lock);
        list_add(&prot->node, &proto_list);
        write_unlock(&proto_list_lock);
        rc = 0;
 out:
        return rc;
+out_free_timewait_sock_slab_name_cache:
+       kmem_cache_destroy(prot->twsk_prot->twsk_slab);
 out_free_timewait_sock_slab_name:
        kfree(timewait_sock_slab_name);
 out_free_request_sock_slab:
@@ -1537,6 +1546,11 @@ void proto_unregister(struct proto *prot
        list_del(&prot->node);
        write_unlock(&proto_list_lock);
 
+       if (prot->inuse != NULL) {
+               free_percpu(prot->inuse);
+               prot->inuse = NULL;
+       }
+
        if (prot->slab != NULL) {
                kmem_cache_destroy(prot->slab);
                prot->slab = NULL;
Index: linux-2.6.16-rc1/net/ipv4/proc.c
===================================================================
--- linux-2.6.16-rc1.orig/net/ipv4/proc.c       2006-01-25 11:55:46.000000000 
-0800
+++ linux-2.6.16-rc1/net/ipv4/proc.c    2006-01-25 11:55:48.000000000 -0800
@@ -50,7 +50,7 @@ static int fold_prot_inuse(struct proto 
        int cpu;
 
        for_each_cpu(cpu)
-               res += proto->stats[cpu].inuse;
+               res += (*per_cpu_ptr(proto->inuse, cpu));
 
        return res;
 }
Index: linux-2.6.16-rc1/net/ipv4/raw.c
===================================================================
--- linux-2.6.16-rc1.orig/net/ipv4/raw.c        2006-01-25 11:43:42.000000000 
-0800
+++ linux-2.6.16-rc1/net/ipv4/raw.c     2006-01-25 11:55:48.000000000 -0800
@@ -718,7 +718,7 @@ static int raw_ioctl(struct sock *sk, in
        }
 }
 
-struct proto raw_prot = {
+struct proto raw_prot __read_mostly = {
        .name =         "RAW",
        .owner =        THIS_MODULE,
        .close =        raw_close,
Index: linux-2.6.16-rc1/net/ipv4/tcp_ipv4.c
===================================================================
--- linux-2.6.16-rc1.orig/net/ipv4/tcp_ipv4.c   2006-01-25 11:55:46.000000000 
-0800
+++ linux-2.6.16-rc1/net/ipv4/tcp_ipv4.c        2006-01-25 11:55:48.000000000 
-0800
@@ -1794,7 +1794,7 @@ void tcp4_proc_exit(void)
 }
 #endif /* CONFIG_PROC_FS */
 
-struct proto tcp_prot = {
+struct proto tcp_prot __read_mostly = {
        .name                   = "TCP",
        .owner                  = THIS_MODULE,
        .close                  = tcp_close,
Index: linux-2.6.16-rc1/net/ipv4/udp.c
===================================================================
--- linux-2.6.16-rc1.orig/net/ipv4/udp.c        2006-01-25 11:43:42.000000000 
-0800
+++ linux-2.6.16-rc1/net/ipv4/udp.c     2006-01-25 11:55:48.000000000 -0800
@@ -1340,7 +1340,7 @@ unsigned int udp_poll(struct file *file,
        
 }
 
-struct proto udp_prot = {
+struct proto udp_prot __read_mostly = {
        .name =         "UDP",
        .owner =        THIS_MODULE,
        .close =        udp_close,
Index: linux-2.6.16-rc1/net/ipv6/proc.c
===================================================================
--- linux-2.6.16-rc1.orig/net/ipv6/proc.c       2006-01-25 11:43:42.000000000 
-0800
+++ linux-2.6.16-rc1/net/ipv6/proc.c    2006-01-25 11:55:48.000000000 -0800
@@ -39,7 +39,7 @@ static int fold_prot_inuse(struct proto 
        int cpu;
 
        for_each_cpu(cpu)
-               res += proto->stats[cpu].inuse;
+               res += (*per_cpu_ptr(proto->inuse, cpu));
 
        return res;
 }
-
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to