From patchwork Sat Jun 9 00:01:44 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Randy.Dunlap" X-Patchwork-Id: 163873 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id CF50FB6FC8 for ; Sat, 9 Jun 2012 10:02:34 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1761802Ab2FIAB5 (ORCPT ); Fri, 8 Jun 2012 20:01:57 -0400 Received: from oproxy6-pub.bluehost.com ([67.222.54.6]:38749 "HELO oproxy6-pub.bluehost.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1752774Ab2FIAB4 (ORCPT ); Fri, 8 Jun 2012 20:01:56 -0400 Received: (qmail 14137 invoked by uid 0); 9 Jun 2012 00:01:55 -0000 Received: from unknown (HELO box742.bluehost.com) (66.147.244.242) by cpoproxy3.bluehost.com with SMTP; 9 Jun 2012 00:01:55 -0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=xenotime.net; s=default; h=Content-Transfer-Encoding:Content-Type:Subject:To:MIME-Version:From:Date:Message-ID; bh=+nRAqe2yapLxdQ0JLNlIyC+ohJc/z+93q/KGOGFsPY8=; b=KQ1PAuW5dMkzLfzng5RuuIhhOtGj9Auc/VK+90D+rhUf9bLCEHA57UJDaMbpn3r4qNxbIdB3fg12pl0L9uTAJHdWPbKwO/OYvSJk059RtTWOXR8zdTcFtWxbEHRZKDg7; Received: from [50.53.38.135] (port=57819 helo=[192.168.1.2]) by box742.bluehost.com with esmtpsa (TLSv1:CAMELLIA256-SHA:256) (Exim 4.76) (envelope-from ) id 1Sd97r-0006h9-0C; Fri, 08 Jun 2012 18:01:55 -0600 Message-ID: <4FD29268.1010604@xenotime.net> Date: Fri, 08 Jun 2012 17:01:44 -0700 From: Randy Dunlap User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.15) Gecko/20110323 Thunderbird/3.1.9 MIME-Version: 1.0 To: netdev@vger.kernel.org, David Miller Subject: [PATCH] net/core: fix kernel-doc warnings X-Identified-User: {1807:box742.bluehost.com:xenotime:xenotime.net} {sentby:smtp auth 50.53.38.135 authed with rdunlap@xenotime.net} Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org From: Randy Dunlap Fix kernel-doc warnings in net/core: Warning(net/core/skbuff.c:3368): No description found for parameter 'delta_truesize' Warning(net/core/filter.c:628): No description found for parameter 'pfp' Warning(net/core/filter.c:628): Excess function parameter 'sk' description in 'sk_unattached_filter_create' Signed-off-by: Randy Dunlap --- net/core/filter.c | 4 ++-- net/core/skbuff.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html --- lnx-35-rc1.orig/net/core/filter.c +++ lnx-35-rc1/net/core/filter.c @@ -616,9 +616,9 @@ static int __sk_prepare_filter(struct sk /** * sk_unattached_filter_create - create an unattached filter * @fprog: the filter program - * @sk: the socket to use + * @pfp: the unattached filter that is created * - * Create a filter independent ofr any socket. We first run some + * Create a filter independent of any socket. We first run some * sanity checks on it to make sure it does not explode on us later. * If an error occurs or there is insufficient memory for the filter * a negative errno code is returned. On success the return is zero. --- lnx-35-rc1.orig/net/core/skbuff.c +++ lnx-35-rc1/net/core/skbuff.c @@ -3361,7 +3361,7 @@ EXPORT_SYMBOL(kfree_skb_partial); * @to: prior buffer * @from: buffer to add * @fragstolen: pointer to boolean - * + * @delta_truesize: how much more was allocated than was requested */ bool skb_try_coalesce(struct sk_buff *to, struct sk_buff *from, bool *fragstolen, int *delta_truesize)