]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
net: caif: Drop unnecessary NULL check after container_of
authorGuenter Roeck <linux@roeck-us.net>
Thu, 13 May 2021 16:58:40 +0000 (09:58 -0700)
committerDavid S. Miller <davem@davemloft.net>
Thu, 13 May 2021 22:55:50 +0000 (15:55 -0700)
The first parameter passed to chnl_recv_cb() can never be NULL since all
callers dereferenced it. Consequently, container_of() on it is also never
NULL, even though the reference into the structure points to the first
element of the structure. The NULL check is therefore unnecessary.
On top of that, it is misleading to perform a NULL check on the result of
container_of() because the position of the contained element could change,
which would make the test invalid. Remove the unnecessary NULL check.

This change was made automatically with the following Coccinelle script.

@@
type t;
identifier v;
statement s;
@@

<+...
(
  t v = container_of(...);
|
  v = container_of(...);
)
  ...
  when != v
- if (\( !v \| v == NULL \) ) s
...+>

Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/caif/chnl_net.c

index fadc7c8a3107f445e1a450672c5faf6d741149d0..37b67194c0dfe412d51b92d9b5f8513e5b2db34a 100644 (file)
@@ -76,8 +76,6 @@ static int chnl_recv_cb(struct cflayer *layr, struct cfpkt *pkt)
        u8 buf;
 
        priv = container_of(layr, struct chnl_net, chnl);
-       if (!priv)
-               return -EINVAL;
 
        skb = (struct sk_buff *) cfpkt_tonative(pkt);