Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 15595
b: refs/heads/master
c: 181a46a
h: refs/heads/master
i:
  15593: c22ff43
  15591: bcb056d
v: v3
  • Loading branch information
YOSHIFUJI Hideaki authored and David S. Miller committed Jan 4, 2006
1 parent c3c0bfa commit 7aa0c46
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 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: 196433c5b788eb732fdcf92449274e302f089ce4
refs/heads/master: 181a46a56e9f852060c54247209e93740329b6eb
4 changes: 2 additions & 2 deletions trunk/net/ipv6/netfilter/nf_conntrack_reasm.c
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ struct nf_ct_frag6_queue
#define FRAG6Q_HASHSZ 64

static struct nf_ct_frag6_queue *nf_ct_frag6_hash[FRAG6Q_HASHSZ];
static rwlock_t nf_ct_frag6_lock = RW_LOCK_UNLOCKED;
static DEFINE_RWLOCK(nf_ct_frag6_lock);
static u32 nf_ct_frag6_hash_rnd;
static LIST_HEAD(nf_ct_frag6_lru_list);
int nf_ct_frag6_nqueues = 0;
Expand Down Expand Up @@ -371,7 +371,7 @@ nf_ct_frag6_create(unsigned int hash, u32 id, struct in6_addr *src, struct
init_timer(&fq->timer);
fq->timer.function = nf_ct_frag6_expire;
fq->timer.data = (long) fq;
fq->lock = SPIN_LOCK_UNLOCKED;
spin_lock_init(&fq->lock);
atomic_set(&fq->refcnt, 1);

return nf_ct_frag6_intern(hash, fq);
Expand Down
2 changes: 1 addition & 1 deletion trunk/net/netfilter/nfnetlink_log.c
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ instance_create(u_int16_t group_num, int pid)
goto out_unlock;

INIT_HLIST_NODE(&inst->hlist);
inst->lock = SPIN_LOCK_UNLOCKED;
spin_lock_init(&inst->lock);
/* needs to be two, since we _put() after creation */
atomic_set(&inst->use, 2);

Expand Down
2 changes: 1 addition & 1 deletion trunk/net/netfilter/nfnetlink_queue.c
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ instance_create(u_int16_t queue_num, int pid)
atomic_set(&inst->id_sequence, 0);
/* needs to be two, since we _put() after creation */
atomic_set(&inst->use, 2);
inst->lock = SPIN_LOCK_UNLOCKED;
spin_lock_init(&inst->lock);
INIT_LIST_HEAD(&inst->queue_list);

if (!try_module_get(THIS_MODULE))
Expand Down

0 comments on commit 7aa0c46

Please sign in to comment.