diff options
| author | Pavel Emelyanov <xemul@openvz.org> | 2007-10-17 19:47:56 -0700 | 
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2007-10-17 19:47:56 -0700 | 
| commit | 48d60056387c37a17a46feda48613587a90535e5 (patch) | |
| tree | 8e7e481c6cf8b28c124c1e5902092d2bd53dbf7b /net/ipv4/inet_fragment.c | |
| parent | abd6523d15f40bfee14652619a31a7f65f77f581 (diff) | |
| download | olio-linux-3.10-48d60056387c37a17a46feda48613587a90535e5.tar.xz olio-linux-3.10-48d60056387c37a17a46feda48613587a90535e5.zip  | |
[INET]: Remove no longer needed ->equal callback
Since this callback is used to check for conflicts in
hashtable when inserting a newly created frag queue, we can
do the same by checking for matching the queue with the 
argument, used to create one.
Signed-off-by: Pavel Emelyanov <xemul@openvz.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/inet_fragment.c')
| -rw-r--r-- | net/ipv4/inet_fragment.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/net/ipv4/inet_fragment.c b/net/ipv4/inet_fragment.c index 6ba98ebbed9..3ed09dd9344 100644 --- a/net/ipv4/inet_fragment.c +++ b/net/ipv4/inet_fragment.c @@ -174,7 +174,7 @@ int inet_frag_evictor(struct inet_frags *f)  EXPORT_SYMBOL(inet_frag_evictor);  static struct inet_frag_queue *inet_frag_intern(struct inet_frag_queue *qp_in, -		struct inet_frags *f, unsigned int hash) +		struct inet_frags *f, unsigned int hash, void *arg)  {  	struct inet_frag_queue *qp;  #ifdef CONFIG_SMP @@ -188,7 +188,7 @@ static struct inet_frag_queue *inet_frag_intern(struct inet_frag_queue *qp_in,  	 * promoted read lock to write lock.  	 */  	hlist_for_each_entry(qp, n, &f->hash[hash], list) { -		if (f->equal(qp, qp_in)) { +		if (f->match(qp, arg)) {  			atomic_inc(&qp->refcnt);  			write_unlock(&f->lock);  			qp_in->last_in |= COMPLETE; @@ -235,7 +235,7 @@ static struct inet_frag_queue *inet_frag_create(struct inet_frags *f,  	if (q == NULL)  		return NULL; -	return inet_frag_intern(q, f, hash); +	return inet_frag_intern(q, f, hash, arg);  }  struct inet_frag_queue *inet_frag_find(struct inet_frags *f, void *key,  |