aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/sock.h
diff options
context:
space:
mode:
authorPavel Emelyanov <xemul@openvz.org>2008-03-28 19:39:33 -0400
committerDavid S. Miller <davem@davemloft.net>2008-03-28 19:39:33 -0400
commitbdcde3d71a67e97f25e851f3ca97c9bb5ef03e7f (patch)
treeeab4a66777582718ffe2eff9038324331106ec18 /include/net/sock.h
parent60e7663d462af3994f292cb3691ea4f7371a9220 (diff)
[SOCK]: Drop inuse pcounter from struct proto (v2).
An uppercut - do not use the pcounter on struct proto. Signed-off-by: Pavel Emelyanov <xemul@openvz.org> Acked-by: Eric Dumazet <dada1@cosmosbay.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/sock.h')
-rw-r--r--include/net/sock.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/include/net/sock.h b/include/net/sock.h
index 1f4294252dd7..2a3344f666aa 100644
--- a/include/net/sock.h
+++ b/include/net/sock.h
@@ -47,7 +47,6 @@
47#include <linux/module.h> 47#include <linux/module.h>
48#include <linux/lockdep.h> 48#include <linux/lockdep.h>
49#include <linux/netdevice.h> 49#include <linux/netdevice.h>
50#include <linux/pcounter.h>
51#include <linux/skbuff.h> /* struct sk_buff */ 50#include <linux/skbuff.h> /* struct sk_buff */
52#include <linux/mm.h> 51#include <linux/mm.h>
53#include <linux/security.h> 52#include <linux/security.h>
@@ -563,7 +562,6 @@ struct proto {
563 /* Keeping track of sockets in use */ 562 /* Keeping track of sockets in use */
564#ifdef CONFIG_PROC_FS 563#ifdef CONFIG_PROC_FS
565 unsigned int inuse_idx; 564 unsigned int inuse_idx;
566 struct pcounter inuse;
567#endif 565#endif
568 566
569 /* Memory pressure */ 567 /* Memory pressure */
@@ -636,14 +634,10 @@ static inline void sk_refcnt_debug_release(const struct sock *sk)
636 634
637 635
638#ifdef CONFIG_PROC_FS 636#ifdef CONFIG_PROC_FS
639# define DEFINE_PROTO_INUSE(NAME) DEFINE_PCOUNTER(NAME)
640# define REF_PROTO_INUSE(NAME) PCOUNTER_MEMBER_INITIALIZER(NAME, .inuse)
641/* Called with local bh disabled */ 637/* Called with local bh disabled */
642extern void sock_prot_inuse_add(struct proto *prot, int inc); 638extern void sock_prot_inuse_add(struct proto *prot, int inc);
643extern int sock_prot_inuse_get(struct proto *proto); 639extern int sock_prot_inuse_get(struct proto *proto);
644#else 640#else
645# define DEFINE_PROTO_INUSE(NAME)
646# define REF_PROTO_INUSE(NAME)
647static void inline sock_prot_inuse_add(struct proto *prot, int inc) 641static void inline sock_prot_inuse_add(struct proto *prot, int inc)
648{ 642{
649} 643}