From patchwork Fri Jul 4 18:28:44 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fabian Frederick X-Patchwork-Id: 4482941 X-Patchwork-Delegate: ericvh@gmail.com Return-Path: X-Original-To: patchwork-v9fs-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 3CF43BEEAA for ; Fri, 4 Jul 2014 18:29:12 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 3B1A120381 for ; Fri, 4 Jul 2014 18:29:11 +0000 (UTC) Received: from lists.sourceforge.net (lists.sourceforge.net [216.34.181.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 3400F20357 for ; Fri, 4 Jul 2014 18:29:10 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=sfs-ml-4.v29.ch3.sourceforge.com) by sfs-ml-4.v29.ch3.sourceforge.com with esmtp (Exim 4.76) (envelope-from ) id 1X38EE-0006EV-91; Fri, 04 Jul 2014 18:28:58 +0000 Received: from sog-mx-1.v43.ch3.sourceforge.com ([172.29.43.191] helo=mx.sourceforge.net) by sfs-ml-4.v29.ch3.sourceforge.com with esmtp (Exim 4.76) (envelope-from ) id 1X38EC-0006EL-Nm for v9fs-developer@lists.sourceforge.net; Fri, 04 Jul 2014 18:28:56 +0000 Received-SPF: pass (sog-mx-1.v43.ch3.sourceforge.com: domain of skynet.be designates 195.238.6.175 as permitted sender) client-ip=195.238.6.175; envelope-from=fabf@skynet.be; helo=mailrelay002.isp.belgacom.be; Received: from mailrelay002.isp.belgacom.be ([195.238.6.175]) by sog-mx-1.v43.ch3.sourceforge.com with esmtp (Exim 4.76) id 1X38EA-0008Pi-I6 for v9fs-developer@lists.sourceforge.net; Fri, 04 Jul 2014 18:28:56 +0000 X-Belgacom-Dynamic: yes X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AmMPAFPxtlNbsGwr/2dsb2JhbABagw6scAUBAQEBAQEFAW4BkiiHP4ELF3WECwIkLyNJOQcRN4guAxUBtUmOLA2GUheFcIcKgigZBAmEJAWOG4lvbIIAiBGFZ4YUg0U7gTo Received: from 43.108-176-91.adsl-dyn.isp.belgacom.be (HELO localhost.localdomain) ([91.176.108.43]) by relay.skynet.be with ESMTP; 04 Jul 2014 20:28:47 +0200 From: Fabian Frederick To: linux-kernel@vger.kernel.org Date: Fri, 4 Jul 2014 20:28:44 +0200 Message-Id: <1404498524-12123-1-git-send-email-fabf@skynet.be> X-Mailer: git-send-email 1.9.1 X-Spam-Score: -1.5 (-) X-Headers-End: 1X38EA-0008Pi-I6 Cc: Fabian Frederick , Eric Van Hensbergen , v9fs-developer@lists.sourceforge.net, Latchesar Ionkov , Ron Minnich Subject: [V9fs-developer] [PATCH 1/1] 9p: kerneldoc warning fixes X-BeenThere: v9fs-developer@lists.sourceforge.net X-Mailman-Version: 2.1.9 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: v9fs-developer-bounces@lists.sourceforge.net X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP options argument was removed from v9fs_session_info in commit 4b53e4b50077 ("9p: remove unnecessary v9fses->options which duplicates the mount string") iov and nr_segs were removed from v9fs_direct_IO in commit d8d3d94b80aa ("pass iov_iter to ->direct_IO()") Cc: Eric Van Hensbergen Cc: Ron Minnich Cc: Latchesar Ionkov Cc: v9fs-developer@lists.sourceforge.net Signed-off-by: Fabian Frederick --- fs/9p/v9fs.h | 1 - fs/9p/vfs_addr.c | 2 -- 2 files changed, 3 deletions(-) diff --git a/fs/9p/v9fs.h b/fs/9p/v9fs.h index 099c771..fb9ffcb 100644 --- a/fs/9p/v9fs.h +++ b/fs/9p/v9fs.h @@ -78,7 +78,6 @@ enum p9_cache_modes { * @cache: cache mode of type &p9_cache_modes * @cachetag: the tag of the cache associated with this session * @fscache: session cookie associated with FS-Cache - * @options: copy of options string given by user * @uname: string user name to mount hierarchy as * @aname: mount specifier for remote hierarchy * @maxdata: maximum data to be sent/recvd per protocol message diff --git a/fs/9p/vfs_addr.c b/fs/9p/vfs_addr.c index cc1cfae..076d3ef 100644 --- a/fs/9p/vfs_addr.c +++ b/fs/9p/vfs_addr.c @@ -243,9 +243,7 @@ static int v9fs_launder_page(struct page *page) * v9fs_direct_IO - 9P address space operation for direct I/O * @rw: direction (read or write) * @iocb: target I/O control block - * @iov: array of vectors that define I/O buffer * @pos: offset in file to begin the operation - * @nr_segs: size of iovec array * * The presence of v9fs_direct_IO() in the address space ops vector * allowes open() O_DIRECT flags which would have failed otherwise.