net: core: change return type of pskb_may_pull to bool
authorHeiner Kallweit <hkallweit1@gmail.com>
Sun, 6 Oct 2019 16:19:54 +0000 (18:19 +0200)
committerDavid S. Miller <davem@davemloft.net>
Mon, 7 Oct 2019 13:36:26 +0000 (09:36 -0400)
This function de-facto returns a bool, so let's change the return type
accordingly.

Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/linux/skbuff.h

index 4351577b14d704fbdb429084b792fe298782147e..0a58402a166e3835e84b0f2662aed6771878eae7 100644 (file)
@@ -2261,12 +2261,12 @@ static inline void *pskb_pull(struct sk_buff *skb, unsigned int len)
        return unlikely(len > skb->len) ? NULL : __pskb_pull(skb, len);
 }
 
-static inline int pskb_may_pull(struct sk_buff *skb, unsigned int len)
+static inline bool pskb_may_pull(struct sk_buff *skb, unsigned int len)
 {
        if (likely(len <= skb_headlen(skb)))
-               return 1;
+               return true;
        if (unlikely(len > skb->len))
-               return 0;
+               return false;
        return __pskb_pull_tail(skb, len - skb_headlen(skb)) != NULL;
 }