Message ID | 20200925124729.753332467@linuxfoundation.org |
---|---|
State | New |
Headers | show
Return-Path: <SRS0=ikAt=DC=vger.kernel.org=stable-owner@kernel.org> X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-10.9 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 39EEFC4727D for <stable@archiver.kernel.org>; Fri, 25 Sep 2020 12:56:21 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 012532075E for <stable@archiver.kernel.org>; Fri, 25 Sep 2020 12:56:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1601038581; bh=AARW/FMObga2MFzQOYoRu5y307OcG+8Ctw0mataRX80=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=1OemH2fab5Yr1zuYRsUBBvQa3bdK6NXRiwhAy+JgqNQccJAEZwhAf/UDoyFhzCnDb AWj1oZXfgdn8bH8unh7AtVaolkRFrRW+rbzqTGZCaL/0vDfjhqNFhyCSEyPpVSB0Zd 0qdITkMUejv0X65qeLkwuSsy6TkRGJ4kJeptKaIc= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729358AbgIYM4U (ORCPT <rfc822;stable@archiver.kernel.org>); Fri, 25 Sep 2020 08:56:20 -0400 Received: from mail.kernel.org ([198.145.29.99]:58848 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729415AbgIYMxY (ORCPT <rfc822;stable@vger.kernel.org>); Fri, 25 Sep 2020 08:53:24 -0400 Received: from localhost (83-86-74-64.cable.dynamic.v4.ziggo.nl [83.86.74.64]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 505542072E; Fri, 25 Sep 2020 12:53:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1601038403; bh=AARW/FMObga2MFzQOYoRu5y307OcG+8Ctw0mataRX80=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=V4sCKlXITJTs4fUskw7YYO5pjW0SeSOxpYjOtlNEpaobu8TP4vFYVxRTQp++Zl2si K76kOEJh8DD5KDW63LJXVLR16An7FIvKYx4j3Hnf31dWhGSwxT3ufeKp0N6fHetABY 9N6feYam3A2fw0Tkh0S1tSC2RTz0d7qtG0SHOrlk= From: Greg Kroah-Hartman <gregkh@linuxfoundation.org> To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>, stable@vger.kernel.org, Eric Dumazet <edumazet@google.com>, "David S. Miller" <davem@davemloft.net> Subject: [PATCH 5.4 41/43] net: add __must_check to skb_put_padto() Date: Fri, 25 Sep 2020 14:48:53 +0200 Message-Id: <20200925124729.753332467@linuxfoundation.org> X-Mailer: git-send-email 2.28.0 In-Reply-To: <20200925124723.575329814@linuxfoundation.org> References: <20200925124723.575329814@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: <stable.vger.kernel.org> X-Mailing-List: stable@vger.kernel.org |
Series |
None
|
expand
|
--- a/include/linux/skbuff.h +++ b/include/linux/skbuff.h @@ -3185,8 +3185,9 @@ static inline int skb_padto(struct sk_bu * is untouched. Otherwise it is extended. Returns zero on * success. The skb is freed on error if @free_on_error is true. */ -static inline int __skb_put_padto(struct sk_buff *skb, unsigned int len, - bool free_on_error) +static inline int __must_check __skb_put_padto(struct sk_buff *skb, + unsigned int len, + bool free_on_error) { unsigned int size = skb->len; @@ -3209,7 +3210,7 @@ static inline int __skb_put_padto(struct * is untouched. Otherwise it is extended. Returns zero on * success. The skb is freed on error. */ -static inline int skb_put_padto(struct sk_buff *skb, unsigned int len) +static inline int __must_check skb_put_padto(struct sk_buff *skb, unsigned int len) { return __skb_put_padto(skb, len, true); }