Whamcloud - gitweb
- Added DEBUG_SUBSYSTEMs
[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/lustre_lib.h>
47 #include <linux/lustre_idl.h>
48 #include <linux/lustre_mds.h>
49 #include <linux/lustre_light.h>
50
51 /*
52  * Remove page from dirty list
53  */
54 static void __set_page_clean(struct page *page)
55 {
56         struct address_space *mapping = page->mapping;
57         struct inode *inode;
58         
59         if (!mapping)
60                 return;
61
62         spin_lock(&pagecache_lock);
63         list_del(&page->list);
64         list_add(&page->list, &mapping->clean_pages);
65
66         inode = mapping->host;
67         if (list_empty(&mapping->dirty_pages)) { 
68                 CDEBUG(D_INODE, "inode clean\n");
69                 inode->i_state &= ~I_DIRTY_PAGES;
70         }
71         spin_unlock(&pagecache_lock);
72         EXIT;
73 }
74
75 inline void set_page_clean(struct page *page)
76 {
77         if (PageDirty(page)) { 
78                 ClearPageDirty(page);
79                 __set_page_clean(page);
80         }
81 }
82
83 inline void lustre_put_page(struct page *page)
84 {
85         kunmap(page);
86         page_cache_release(page);
87 }
88
89 struct page * lustre_get_page(struct inode *dir, unsigned long n)
90 {
91         struct address_space *mapping = dir->i_mapping;
92         struct page *page = read_cache_page(mapping, n,
93                                 (filler_t*)mapping->a_ops->readpage, NULL);
94         if (!IS_ERR(page)) {
95                 wait_on_page(page);
96                 kmap(page);
97                 if (!Page_Uptodate(page))
98                         goto fail;
99                 if (PageError(page))
100                         goto fail;
101         }
102         return page;
103
104 fail:
105         lustre_put_page(page);
106         return ERR_PTR(-EIO);
107 }
108
109 void lustre_prepare_page(unsigned from, unsigned to, struct page *page)
110 {
111         int err;
112
113         lock_page(page);
114         err = page->mapping->a_ops->prepare_write(NULL, page, from, to);
115         if (err)
116                 BUG();
117
118 }
119
120 int lustre_commit_page(struct page *page, unsigned from, unsigned to)
121 {
122         struct inode *dir = page->mapping->host;
123         int err = 0;
124
125         SetPageUptodate(page);
126         set_page_clean(page);
127
128         page->mapping->a_ops->commit_write(NULL, page, from, to);
129         if (IS_SYNC(dir))
130                 err = waitfor_one_page(page);
131         UnlockPage(page);
132         lustre_put_page(page);
133         return err;
134 }