| To: | "David S. Miller" <davem@xxxxxxxxxxxxx> |
|---|---|
| Subject: | [2.6 patch] net/ipv4/inetpeer.c: make a struct static |
| From: | Adrian Bunk <bunk@xxxxxxxxx> |
| Date: | Tue, 15 Mar 2005 15:44:08 +0100 |
| Cc: | netdev@xxxxxxxxxxx, linux-kernel@xxxxxxxxxxxxxxx |
| Sender: | netdev-bounce@xxxxxxxxxxx |
| User-agent: | Mutt/1.5.6+20040907i |
This patch makes a needlessly global struct static. Signed-off-by: Adrian Bunk <bunk@xxxxxxxxx> --- linux-2.6.11-mm3-full/net/ipv4/inetpeer.c.old 2005-03-15 13:29:32.000000000 +0100 +++ linux-2.6.11-mm3-full/net/ipv4/inetpeer.c 2005-03-15 13:30:13.000000000 +0100 @@ -92,9 +92,9 @@ int inet_peer_minttl = 120 * HZ; /* TTL under high load: 120 sec */ int inet_peer_maxttl = 10 * 60 * HZ; /* usual time to live: 10 min */ +static struct inet_peer *inet_peer_unused_head; /* Exported for inet_putpeer inline function. */ -struct inet_peer *inet_peer_unused_head, - **inet_peer_unused_tailp = &inet_peer_unused_head; +struct inet_peer **inet_peer_unused_tailp = &inet_peer_unused_head; DEFINE_SPINLOCK(inet_peer_unused_lock); #define PEER_MAX_CLEANUP_WORK 30 |
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | [2.6 patch] net/bluetooth/rfcomm/core.: make a variable static, Adrian Bunk |
|---|---|
| Next by Date: | [2.6 patch] net/ipv6/ndisc.c: make a function static, Adrian Bunk |
| Previous by Thread: | [2.6 patch] net/bluetooth/rfcomm/core.: make a variable static, Adrian Bunk |
| Next by Thread: | Re: [2.6 patch] net/ipv4/inetpeer.c: make a struct static, David S. Miller |
| Indexes: | [Date] [Thread] [Top] [All Lists] |