Whamcloud - gitweb
- added comment in mds_open() and GNS mount points.
[fs/lustre-release.git] / lustre / llite / rw26.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * Lustre Lite I/O page cache routines for the 2.5/2.6 kernel version
5  *
6  *  Copyright (c) 2001-2003 Cluster File Systems, Inc.
7  *
8  *   This file is part of Lustre, http://www.lustre.org.
9  *
10  *   Lustre is free software; you can redistribute it and/or
11  *   modify it under the terms of version 2 of the GNU General Public
12  *   License as published by the Free Software Foundation.
13  *
14  *   Lustre is distributed in the hope that it will be useful,
15  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  *   GNU General Public License for more details.
18  *
19  *   You should have received a copy of the GNU General Public License
20  *   along with Lustre; if not, write to the Free Software
21  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22  */
23
24 #include <linux/config.h>
25 #include <linux/kernel.h>
26 #include <linux/mm.h>
27 #include <linux/string.h>
28 #include <linux/stat.h>
29 #include <linux/errno.h>
30 #include <linux/smp_lock.h>
31 #include <linux/unistd.h>
32 #include <linux/version.h>
33 #include <asm/system.h>
34 #include <asm/uaccess.h>
35
36 #include <linux/fs.h>
37 #include <linux/buffer_head.h>
38 #include <linux/mpage.h>
39 #include <linux/writeback.h>
40 #include <linux/stat.h>
41 #include <asm/uaccess.h>
42 #include <asm/segment.h>
43 #include <linux/mm.h>
44 #include <linux/pagemap.h>
45 #include <linux/smp_lock.h>
46
47 #define DEBUG_SUBSYSTEM S_LLITE
48
49 #include <linux/lustre_mds.h>
50 #include <linux/lustre_lite.h>
51 #include "llite_internal.h"
52 #include <linux/lustre_compat25.h>
53
54 static int ll_writepage_26(struct page *page, struct writeback_control *wbc)
55 {
56         return ll_writepage(page);
57 }
58
59 /* It is safe to not check anything in invalidatepage/releasepage below
60    because they are run with page locked and all our io is happening with
61    locked page too */
62 static int ll_invalidatepage(struct page *page, unsigned long offset)
63 {
64         if (offset)
65                 return 0;
66         if (PagePrivate(page))
67                 ll_removepage(page);
68         return 1;
69 }
70
71 static int ll_releasepage(struct page *page, int gfp_mask)
72 {
73         if (PagePrivate(page))
74                 ll_removepage(page);
75         return 1;
76 }
77
78 struct address_space_operations ll_aops = {
79         .readpage       = ll_readpage,
80 //        .readpages      = ll_readpages,
81 //        .direct_IO      = ll_direct_IO_26,
82         .writepage      = ll_writepage_26,
83         .writepages     = generic_writepages,
84         .set_page_dirty = __set_page_dirty_nobuffers,
85         .sync_page      = NULL,
86         .prepare_write  = ll_prepare_write,
87         .commit_write   = ll_commit_write,
88         .invalidatepage = ll_invalidatepage,
89         .releasepage    = ll_releasepage,
90         .bmap           = NULL
91 };