Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 121523
b: refs/heads/master
c: 645ca70
h: refs/heads/master
i:
  121521: 12c3935
  121519: 16d6ece
v: v3
  • Loading branch information
Eric Dumazet authored and David S. Miller committed Oct 29, 2008
1 parent 38e0917 commit 78c7a7c
Show file tree
Hide file tree
Showing 10 changed files with 215 additions and 164 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: b189db5d299c6824780af5590564ff608adb3dea
refs/heads/master: 645ca708f936b2fbeb79e52d7823e3eb2c0905f8
2 changes: 1 addition & 1 deletion trunk/include/net/sock.h
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,7 @@ struct proto {

union {
struct inet_hashinfo *hashinfo;
struct hlist_head *udp_hash;
struct udp_table *udp_table;
struct raw_hashinfo *raw_hash;
} h;

Expand Down
25 changes: 12 additions & 13 deletions trunk/include/net/udp.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,15 @@ struct udp_skb_cb {
};
#define UDP_SKB_CB(__skb) ((struct udp_skb_cb *)((__skb)->cb))

extern struct hlist_head udp_hash[UDP_HTABLE_SIZE];
extern rwlock_t udp_hash_lock;
struct udp_hslot {
struct hlist_head head;
spinlock_t lock;
} __attribute__((aligned(2 * sizeof(long))));
struct udp_table {
struct udp_hslot hash[UDP_HTABLE_SIZE];
};
extern struct udp_table udp_table;
extern void udp_table_init(struct udp_table *);


/* Note: this must match 'valbool' in sock_setsockopt */
Expand Down Expand Up @@ -110,15 +117,7 @@ static inline void udp_lib_hash(struct sock *sk)
BUG();
}

static inline void udp_lib_unhash(struct sock *sk)
{
write_lock_bh(&udp_hash_lock);
if (sk_del_node_init(sk)) {
inet_sk(sk)->num = 0;
sock_prot_inuse_add(sock_net(sk), sk->sk_prot, -1);
}
write_unlock_bh(&udp_hash_lock);
}
extern void udp_lib_unhash(struct sock *sk);

static inline void udp_lib_close(struct sock *sk, long timeout)
{
Expand Down Expand Up @@ -187,7 +186,7 @@ extern struct sock *udp4_lib_lookup(struct net *net, __be32 saddr, __be16 sport,
struct udp_seq_afinfo {
char *name;
sa_family_t family;
struct hlist_head *hashtable;
struct udp_table *udp_table;
struct file_operations seq_fops;
struct seq_operations seq_ops;
};
Expand All @@ -196,7 +195,7 @@ struct udp_iter_state {
struct seq_net_private p;
sa_family_t family;
int bucket;
struct hlist_head *hashtable;
struct udp_table *udp_table;
};

#ifdef CONFIG_PROC_FS
Expand Down
2 changes: 1 addition & 1 deletion trunk/include/net/udplite.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#define UDPLITE_RECV_CSCOV 11 /* receiver partial coverage (threshold ) */

extern struct proto udplite_prot;
extern struct hlist_head udplite_hash[UDP_HTABLE_SIZE];
extern struct udp_table udplite_table;

/*
* Checksum computation is all in software, hence simpler getfrag.
Expand Down
Loading

0 comments on commit 78c7a7c

Please sign in to comment.