Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 6235
b: refs/heads/master
c: 0742fd5
h: refs/heads/master
i:
  6233: ee22800
  6231: 1c82ead
v: v3
  • Loading branch information
Adrian Bunk authored and David S. Miller committed Aug 29, 2005
1 parent 24c36cd commit 1ae6c1f
Show file tree
Hide file tree
Showing 12 changed files with 8 additions and 23 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f2ccd8fa06c8e302116e71df372f5c1f83432e03
refs/heads/master: 0742fd53a3774781255bd1e471e7aa2e4a82d5f7
2 changes: 0 additions & 2 deletions trunk/include/net/ip.h
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,6 @@ struct ip_reply_arg {
void ip_send_reply(struct sock *sk, struct sk_buff *skb, struct ip_reply_arg *arg,
unsigned int len);

extern int ip_finish_output(struct sk_buff *skb);

struct ipv4_config
{
int log_martians;
Expand Down
4 changes: 0 additions & 4 deletions trunk/include/net/route.h
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,6 @@ struct rt_cache_stat
unsigned int out_hlist_search;
};

extern struct rt_cache_stat *rt_cache_stat;
#define RT_CACHE_STAT_INC(field) \
(per_cpu_ptr(rt_cache_stat, raw_smp_processor_id())->field++)

extern struct ip_rt_acct *ip_rt_acct;

struct in_device;
Expand Down
1 change: 0 additions & 1 deletion trunk/include/net/xfrm.h
Original file line number Diff line number Diff line change
Expand Up @@ -818,7 +818,6 @@ extern void xfrm6_init(void);
extern void xfrm6_fini(void);
extern void xfrm_state_init(void);
extern void xfrm4_state_init(void);
extern void xfrm4_state_fini(void);
extern void xfrm6_state_init(void);
extern void xfrm6_state_fini(void);

Expand Down
1 change: 0 additions & 1 deletion trunk/net/core/request_sock.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
* Further increasing requires to change hash table size.
*/
int sysctl_max_syn_backlog = 256;
EXPORT_SYMBOL(sysctl_max_syn_backlog);

int reqsk_queue_alloc(struct request_sock_queue *queue,
const int nr_table_entries)
Expand Down
1 change: 0 additions & 1 deletion trunk/net/ipv4/fib_frontend.c
Original file line number Diff line number Diff line change
Expand Up @@ -662,5 +662,4 @@ void __init ip_fib_init(void)
}

EXPORT_SYMBOL(inet_addr_type);
EXPORT_SYMBOL(ip_dev_find);
EXPORT_SYMBOL(ip_rt_ioctl);
2 changes: 0 additions & 2 deletions trunk/net/ipv4/inetpeer.c
Original file line number Diff line number Diff line change
Expand Up @@ -459,5 +459,3 @@ static void peer_check_expire(unsigned long dummy)
peer_total / inet_peer_threshold * HZ;
add_timer(&peer_periodic_timer);
}

EXPORT_SYMBOL(inet_peer_idlock);
3 changes: 0 additions & 3 deletions trunk/net/ipv4/ip_options.c
Original file line number Diff line number Diff line change
Expand Up @@ -620,6 +620,3 @@ int ip_options_rcv_srr(struct sk_buff *skb)
}
return 0;
}

EXPORT_SYMBOL(ip_options_compile);
EXPORT_SYMBOL(ip_options_undo);
7 changes: 1 addition & 6 deletions trunk/net/ipv4/ip_output.c
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ static inline int ip_finish_output2(struct sk_buff *skb)
return -EINVAL;
}

int ip_finish_output(struct sk_buff *skb)
static int ip_finish_output(struct sk_buff *skb)
{
struct net_device *dev = skb->dst->dev;

Expand Down Expand Up @@ -1328,12 +1328,7 @@ void __init ip_init(void)
#endif
}

EXPORT_SYMBOL(ip_finish_output);
EXPORT_SYMBOL(ip_fragment);
EXPORT_SYMBOL(ip_generic_getfrag);
EXPORT_SYMBOL(ip_queue_xmit);
EXPORT_SYMBOL(ip_send_check);

#ifdef CONFIG_SYSCTL
EXPORT_SYMBOL(sysctl_ip_default_ttl);
#endif
2 changes: 1 addition & 1 deletion trunk/net/ipv4/multipath_drr.c
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ static int drr_dev_event(struct notifier_block *this,
return NOTIFY_DONE;
}

struct notifier_block drr_dev_notifier = {
static struct notifier_block drr_dev_notifier = {
.notifier_call = drr_dev_event,
};

Expand Down
4 changes: 3 additions & 1 deletion trunk/net/ipv4/route.c
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,9 @@ static unsigned rt_hash_mask;
static int rt_hash_log;
static unsigned int rt_hash_rnd;

struct rt_cache_stat *rt_cache_stat;
static struct rt_cache_stat *rt_cache_stat;
#define RT_CACHE_STAT_INC(field) \
(per_cpu_ptr(rt_cache_stat, raw_smp_processor_id())->field++)

static int rt_intern_hash(unsigned hash, struct rtable *rth,
struct rtable **res);
Expand Down
2 changes: 2 additions & 0 deletions trunk/net/ipv4/xfrm4_state.c
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,10 @@ void __init xfrm4_state_init(void)
xfrm_state_register_afinfo(&xfrm4_state_afinfo);
}

#if 0
void __exit xfrm4_state_fini(void)
{
xfrm_state_unregister_afinfo(&xfrm4_state_afinfo);
}
#endif /* 0 */

0 comments on commit 1ae6c1f

Please sign in to comment.