From patchwork Thu Jul 28 16:54:36 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Randy.Dunlap" X-Patchwork-Id: 107289 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 96BE9B6F62 for ; Fri, 29 Jul 2011 02:54:46 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755657Ab1G1Qyk (ORCPT ); Thu, 28 Jul 2011 12:54:40 -0400 Received: from oproxy4-pub.bluehost.com ([69.89.21.11]:42579 "HELO oproxy4-pub.bluehost.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1755300Ab1G1Qyj (ORCPT ); Thu, 28 Jul 2011 12:54:39 -0400 Received: (qmail 15883 invoked by uid 0); 28 Jul 2011 16:54:38 -0000 Received: from unknown (HELO box742.bluehost.com) (66.147.244.242) by cpoproxy1.bluehost.com with SMTP; 28 Jul 2011 16:54:38 -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:Mime-Version:Message-Id:Subject:Cc:To:From:Date; bh=Y6Mi5dIPVx37WrFULsaM6FW+5CoKLTmySfg1qFHzKwM=; b=iIbkWxN2KBMEc7VdjY03Q4zOxYZ3m70a3W7SsRFe19PsoG5ddRrn7LVPRM5zJhaxNrqNIib1woJIL3ECvCOYcPaAVDTrWY+EkNt/sW5zgyQPK2/NvLaXmkiOCjkL0xh9; Received: from static-50-53-38-135.bvtn.or.frontiernet.net ([50.53.38.135] helo=chimera.site) by box742.bluehost.com with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.69) (envelope-from ) id 1QmTr4-0005m4-57; Thu, 28 Jul 2011 10:54:38 -0600 Date: Thu, 28 Jul 2011 09:54:36 -0700 From: Randy Dunlap To: netdev Cc: davem@davemloft.net Subject: [PATCH] net: fix new sunrpc kernel-doc warning Message-Id: <20110728095436.6fdb3eb4.rdunlap@xenotime.net> Organization: YPO4 X-Mailer: Sylpheed 2.7.1 (GTK+ 2.16.6; x86_64-unknown-linux-gnu) Mime-Version: 1.0 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 new kernel-doc warning in sunrpc: Warning(net/sunrpc/xprt.c:196): No description found for parameter 'xprt' Signed-off-by: Randy Dunlap --- net/sunrpc/xprt.c | 1 + 1 file changed, 1 insertion(+) -- 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 --- linux-3.0-git10.orig/net/sunrpc/xprt.c +++ linux-3.0-git10/net/sunrpc/xprt.c @@ -187,6 +187,7 @@ EXPORT_SYMBOL_GPL(xprt_load_transport); /** * xprt_reserve_xprt - serialize write access to transports * @task: task that is requesting access to the transport + * @xprt: pointer to the target transport * * This prevents mixing the payload of separate requests, and prevents * transport connects from colliding with writes. No congestion control