OSDN Git Service

net/ipv4: cleanup error condition testing
authorPavel Machek <pavel@ucw.cz>
Wed, 24 Jul 2019 20:56:37 +0000 (13:56 -0700)
committerDavid S. Miller <davem@davemloft.net>
Wed, 24 Jul 2019 20:56:37 +0000 (13:56 -0700)
Cleanup testing for error condition.

Signed-off-by: Pavel Machek <pavel@denx.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/inet_fragment.c

index d666756..a999451 100644 (file)
@@ -331,7 +331,7 @@ struct inet_frag_queue *inet_frag_find(struct fqdir *fqdir, void *key)
        prev = rhashtable_lookup(&fqdir->rhashtable, key, fqdir->f->rhash_params);
        if (!prev)
                fq = inet_frag_create(fqdir, key, &prev);
-       if (prev && !IS_ERR(prev)) {
+       if (!IS_ERR_OR_NULL(prev)) {
                fq = prev;
                if (!refcount_inc_not_zero(&fq->refcnt))
                        fq = NULL;