Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753503AbZLAGoK (ORCPT ); Tue, 1 Dec 2009 01:44:10 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753353AbZLAGoH (ORCPT ); Tue, 1 Dec 2009 01:44:07 -0500 Received: from mx1.redhat.com ([209.132.183.28]:24078 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752764AbZLAGoG (ORCPT ); Tue, 1 Dec 2009 01:44:06 -0500 From: Xiaotian Feng To: dhowells@redhat.com, ericvh@gmail.com, rminnich@sandia.gov, lucho@ionkov.net, adkulkar@umail.iu.edu Cc: v9fs-developer@lists.sourceforge.net, linux-kernel@vger.kernel.org, Xiaotian Feng Subject: [PATCH] build fix for fs/9p/cache.c Date: Tue, 1 Dec 2009 14:44:02 +0800 Message-Id: <1259649842-7909-1-git-send-email-dfeng@redhat.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1036 Lines: 33 make allyesconfig, I got: fs/9p/cache.c: In function '__v9fs_fscache_release_page': fs/9p/cache.c:346: error: 'vnode' undeclared (first use in this function) which is introduced by commit 201a154, fix to use the right parameters. Signed-off-by: Xiaotian Feng --- fs/9p/cache.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/fs/9p/cache.c b/fs/9p/cache.c index bcc5357..e777961 100644 --- a/fs/9p/cache.c +++ b/fs/9p/cache.c @@ -343,7 +343,7 @@ int __v9fs_fscache_release_page(struct page *page, gfp_t gfp) BUG_ON(!vcookie->fscache); - return fscache_maybe_release_page(vnode->cache, page, gfp); + return fscache_maybe_release_page(vcookie->fscache, page, gfp); } void __v9fs_fscache_invalidate_page(struct page *page) -- 1.6.5.2 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/