Whamcloud - gitweb
Merged branch 'peter' with the tip. Pre-merge tag is 't_20020302_networking'.
[fs/lustre-release.git] / lustre / lib / page.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * Copyright (C) 2001, 2002 Cluster File Systems, Inc.
5  *
6  *   This file is part of Lustre, http://www.sf.net/projects/lustre/
7  *
8  *   Lustre is free software; you can redistribute it and/or
9  *   modify it under the terms of version 2 of the GNU General Public
10  *   License as published by the Free Software Foundation.
11  *
12  *   Lustre is distributed in the hope that it will be useful,
13  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *   GNU General Public License for more details.
16  *
17  *   You should have received a copy of the GNU General Public License
18  *   along with Lustre; if not, write to the Free Software
19  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  *
21  */
22
23 #include <linux/config.h>
24 #include <linux/kernel.h>
25 #include <linux/mm.h>
26 #include <linux/string.h>
27 #include <linux/stat.h>
28 #include <linux/errno.h>
29 #include <linux/locks.h>
30 #include <linux/unistd.h>
31
32 #include <asm/system.h>
33 #include <asm/uaccess.h>
34
35 #include <linux/fs.h>
36 #include <linux/stat.h>
37 #include <asm/uaccess.h>
38 #include <asm/segment.h>
39 #include <linux/mm.h>
40 #include <linux/pagemap.h>
41 #include <linux/smp_lock.h>
42
43 #define DEBUG_SUBSYSTEM S_OST
44
45 #include <linux/obd_support.h>
46 #include <linux/obd_class.h>
47 #include <linux/lustre_lib.h>
48 #include <linux/lustre_idl.h>
49 #include <linux/lustre_mds.h>
50 #include <linux/lustre_light.h>
51
52 /*
53  * Remove page from dirty list
54  */
55 static void __set_page_clean(struct page *page)
56 {
57         struct address_space *mapping = page->mapping;
58         struct inode *inode;
59         
60         if (!mapping)
61                 return;
62
63         spin_lock(&pagecache_lock);
64         list_del(&page->list);
65         list_add(&page->list, &mapping->clean_pages);
66
67         inode = mapping->host;
68         if (list_empty(&mapping->dirty_pages)) { 
69                 CDEBUG(D_INODE, "inode clean\n");
70                 inode->i_state &= ~I_DIRTY_PAGES;
71         }
72         spin_unlock(&pagecache_lock);
73         EXIT;
74 }
75
76 inline void set_page_clean(struct page *page)
77 {
78         if (PageDirty(page)) { 
79                 ClearPageDirty(page);
80                 __set_page_clean(page);
81         }
82 }
83
84 inline void lustre_put_page(struct page *page)
85 {
86         kunmap(page);
87         page_cache_release(page);
88 }
89
90 struct page * lustre_get_page(struct inode *dir, unsigned long n)
91 {
92         struct address_space *mapping = dir->i_mapping;
93         struct page *page = read_cache_page(mapping, n,
94                                 (filler_t*)mapping->a_ops->readpage, NULL);
95         if (!IS_ERR(page)) {
96                 wait_on_page(page);
97                 kmap(page);
98                 if (!Page_Uptodate(page))
99                         goto fail;
100                 if (PageError(page))
101                         goto fail;
102         }
103         return page;
104
105 fail:
106         lustre_put_page(page);
107         return ERR_PTR(-EIO);
108 }
109
110 int lustre_prepare_page(unsigned from, unsigned to, struct page *page)
111 {
112         int err;
113
114         lock_page(page);
115         err = page->mapping->a_ops->prepare_write(NULL, page, from, to);
116         if (err) { 
117                 CERROR("page index %ld from %d to %d err %d\n", 
118                                 page->index, from, to, err); 
119         }
120         return err;
121 }
122
123 int lustre_commit_page(struct page *page, unsigned from, unsigned to)
124 {
125         struct inode *dir = page->mapping->host;
126         int err = 0;
127
128         SetPageUptodate(page);
129         set_page_clean(page);
130
131         page->mapping->a_ops->commit_write(NULL, page, from, to);
132         if (IS_SYNC(dir))
133                 err = waitfor_one_page(page);
134         UnlockPage(page);
135         lustre_put_page(page);
136         return err;
137 }