Tony Battersby wrote: > net/netfilter/nf_conntrack_expect.c: > > struct nf_conntrack_expect * > nf_ct_expect_find_get(struct net *net, const struct nf_conntrack_tuple *tuple) > { > struct nf_conntrack_expect *i; > > rcu_read_lock(); > i = __nf_ct_expect_find(net, tuple); > if (i && !atomic_inc_not_zero(&i->use)) > i = NULL; > rcu_read_unlock(); > > return i; > } > > void nf_ct_expect_put(struct nf_conntrack_expect *exp) > { > if (atomic_dec_and_test(&exp->use)) > call_rcu(&exp->rcu, nf_ct_expect_free_rcu); > } > > > fs/nfs/nfs4state.c: > > static struct nfs4_state * > __nfs4_find_state_byowner(struct inode *inode, struct nfs4_state_owner *owner) > { > struct nfs_inode *nfsi = NFS_I(inode); > struct nfs4_state *state; > > list_for_each_entry(state, &nfsi->open_states, inode_states) { > if (state->owner != owner) > continue; > if (atomic_inc_not_zero(&state->count)) > return state; > } > return NULL; > } > > struct nfs4_state * > nfs4_get_open_state(struct inode *inode, struct nfs4_state_owner *owner) > { > struct nfs4_state *state, *new; > struct nfs_inode *nfsi = NFS_I(inode); > > spin_lock(&inode->i_lock); > state = __nfs4_find_state_byowner(inode, owner); > spin_unlock(&inode->i_lock); > ... > } > > void nfs4_put_open_state(struct nfs4_state *state) > { > struct inode *inode = state->inode; > struct nfs4_state_owner *owner = state->owner; > > if (!atomic_dec_and_lock(&state->count, &owner->so_lock)) > return; > spin_lock(&inode->i_lock); > list_del(&state->inode_states); > list_del(&state->open_states); > spin_unlock(&inode->i_lock); > spin_unlock(&owner->so_lock); > iput(inode); > nfs4_free_open_state(state); > nfs4_put_state_owner(owner); > } > > > ... etc. But I'm sure all those silly network and RCU developers didn't > understand what they were doing. Is it obvious from these excerpts what the lifetime rules of the objects are? Not really immediately. Do we know merely from looking at the code why its developers chose to do it this way? No. Is there a necessity to do similarly complicated things in sg? No, definitely not. -- Stefan Richter -=====-==--= ---= =---- http://arcgraph.de/sr/ -- To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html