blob: 816696621ec9ea1be2d5b351ac4fc17d0e8f41aa [file] [log] [blame]
Suresh Jayaraman488f1d2d2010-07-05 18:12:15 +05301/*
2 * fs/cifs/fscache.c - CIFS filesystem cache interface
3 *
4 * Copyright (c) 2010 Novell, Inc.
Suresh Jayaramanb81209d2010-11-24 17:49:06 +05305 * Author(s): Suresh Jayaraman <sjayaraman@suse.de>
Suresh Jayaraman488f1d2d2010-07-05 18:12:15 +05306 *
7 * This library is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU Lesser General Public License as published
9 * by the Free Software Foundation; either version 2.1 of the License, or
10 * (at your option) any later version.
11 *
12 * This library 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
15 * the GNU Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public License
18 * along with this library; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 */
21#include "fscache.h"
22#include "cifsglob.h"
23#include "cifs_debug.h"
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +053024#include "cifs_fs_sb.h"
Suresh Jayaraman488f1d2d2010-07-05 18:12:15 +053025
26void cifs_fscache_get_client_cookie(struct TCP_Server_Info *server)
27{
28 server->fscache =
29 fscache_acquire_cookie(cifs_fscache_netfs.primary_index,
30 &cifs_fscache_server_index_def, server);
Steve French040d15c2011-06-14 15:51:18 +000031 cFYI(1, "%s: (0x%p/0x%p)", __func__, server,
32 server->fscache);
Suresh Jayaraman488f1d2d2010-07-05 18:12:15 +053033}
34
35void cifs_fscache_release_client_cookie(struct TCP_Server_Info *server)
36{
Steve French040d15c2011-06-14 15:51:18 +000037 cFYI(1, "%s: (0x%p/0x%p)", __func__, server,
38 server->fscache);
Suresh Jayaraman488f1d2d2010-07-05 18:12:15 +053039 fscache_relinquish_cookie(server->fscache, 0);
40 server->fscache = NULL;
41}
42
Steve French96daf2b2011-05-27 04:34:02 +000043void cifs_fscache_get_super_cookie(struct cifs_tcon *tcon)
Suresh Jayaramand03382c2010-07-05 18:12:27 +053044{
45 struct TCP_Server_Info *server = tcon->ses->server;
46
47 tcon->fscache =
48 fscache_acquire_cookie(server->fscache,
49 &cifs_fscache_super_index_def, tcon);
Steve French040d15c2011-06-14 15:51:18 +000050 cFYI(1, "%s: (0x%p/0x%p)", __func__, server->fscache,
51 tcon->fscache);
Suresh Jayaramand03382c2010-07-05 18:12:27 +053052}
53
Steve French96daf2b2011-05-27 04:34:02 +000054void cifs_fscache_release_super_cookie(struct cifs_tcon *tcon)
Suresh Jayaramand03382c2010-07-05 18:12:27 +053055{
Steve French040d15c2011-06-14 15:51:18 +000056 cFYI(1, "%s: (0x%p)", __func__, tcon->fscache);
Suresh Jayaramand03382c2010-07-05 18:12:27 +053057 fscache_relinquish_cookie(tcon->fscache, 0);
58 tcon->fscache = NULL;
59}
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +053060
61static void cifs_fscache_enable_inode_cookie(struct inode *inode)
62{
63 struct cifsInodeInfo *cifsi = CIFS_I(inode);
64 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
Steve French96daf2b2011-05-27 04:34:02 +000065 struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb);
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +053066
67 if (cifsi->fscache)
68 return;
69
Suresh Jayaramanb81209d2010-11-24 17:49:06 +053070 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_FSCACHE) {
71 cifsi->fscache = fscache_acquire_cookie(tcon->fscache,
Jeff Layton0d424ad2010-09-20 16:01:35 -070072 &cifs_fscache_inode_object_def, cifsi);
Steve French040d15c2011-06-14 15:51:18 +000073 cFYI(1, "%s: got FH cookie (0x%p/0x%p)", __func__,
74 tcon->fscache, cifsi->fscache);
Suresh Jayaramanb81209d2010-11-24 17:49:06 +053075 }
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +053076}
77
78void cifs_fscache_release_inode_cookie(struct inode *inode)
79{
80 struct cifsInodeInfo *cifsi = CIFS_I(inode);
81
82 if (cifsi->fscache) {
Steve French040d15c2011-06-14 15:51:18 +000083 cFYI(1, "%s: (0x%p)", __func__, cifsi->fscache);
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +053084 fscache_relinquish_cookie(cifsi->fscache, 0);
85 cifsi->fscache = NULL;
86 }
87}
88
89static void cifs_fscache_disable_inode_cookie(struct inode *inode)
90{
91 struct cifsInodeInfo *cifsi = CIFS_I(inode);
92
93 if (cifsi->fscache) {
Steve French040d15c2011-06-14 15:51:18 +000094 cFYI(1, "%s: (0x%p)", __func__, cifsi->fscache);
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +053095 fscache_relinquish_cookie(cifsi->fscache, 1);
96 cifsi->fscache = NULL;
97 }
98}
99
100void cifs_fscache_set_inode_cookie(struct inode *inode, struct file *filp)
101{
102 if ((filp->f_flags & O_ACCMODE) != O_RDONLY)
103 cifs_fscache_disable_inode_cookie(inode);
Suresh Jayaramanb81209d2010-11-24 17:49:06 +0530104 else
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +0530105 cifs_fscache_enable_inode_cookie(inode);
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +0530106}
107
108void cifs_fscache_reset_inode_cookie(struct inode *inode)
109{
110 struct cifsInodeInfo *cifsi = CIFS_I(inode);
111 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
112 struct fscache_cookie *old = cifsi->fscache;
113
114 if (cifsi->fscache) {
115 /* retire the current fscache cache and get a new one */
116 fscache_relinquish_cookie(cifsi->fscache, 1);
117
Jeff Laytona6e8a842010-09-20 16:01:33 -0700118 cifsi->fscache = fscache_acquire_cookie(
Jeff Layton0d424ad2010-09-20 16:01:35 -0700119 cifs_sb_master_tcon(cifs_sb)->fscache,
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +0530120 &cifs_fscache_inode_object_def,
121 cifsi);
Steve French040d15c2011-06-14 15:51:18 +0000122 cFYI(1, "%s: new cookie 0x%p oldcookie 0x%p",
123 __func__, cifsi->fscache, old);
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +0530124 }
125}
Suresh Jayaraman85f2d6b2010-07-05 18:13:00 +0530126
127int cifs_fscache_release_page(struct page *page, gfp_t gfp)
128{
129 if (PageFsCache(page)) {
130 struct inode *inode = page->mapping->host;
131 struct cifsInodeInfo *cifsi = CIFS_I(inode);
132
Steve French040d15c2011-06-14 15:51:18 +0000133 cFYI(1, "%s: (0x%p/0x%p)", __func__, page,
134 cifsi->fscache);
Suresh Jayaraman85f2d6b2010-07-05 18:13:00 +0530135 if (!fscache_maybe_release_page(cifsi->fscache, page, gfp))
136 return 0;
137 }
138
139 return 1;
140}
141
Suresh Jayaraman56698232010-07-05 18:13:25 +0530142static void cifs_readpage_from_fscache_complete(struct page *page, void *ctx,
143 int error)
144{
Steve French040d15c2011-06-14 15:51:18 +0000145 cFYI(1, "%s: (0x%p/%d)", __func__, page, error);
Suresh Jayaraman56698232010-07-05 18:13:25 +0530146 if (!error)
147 SetPageUptodate(page);
148 unlock_page(page);
149}
150
151/*
152 * Retrieve a page from FS-Cache
153 */
154int __cifs_readpage_from_fscache(struct inode *inode, struct page *page)
155{
156 int ret;
157
Steve French040d15c2011-06-14 15:51:18 +0000158 cFYI(1, "%s: (fsc:%p, p:%p, i:0x%p", __func__,
Suresh Jayaraman56698232010-07-05 18:13:25 +0530159 CIFS_I(inode)->fscache, page, inode);
160 ret = fscache_read_or_alloc_page(CIFS_I(inode)->fscache, page,
161 cifs_readpage_from_fscache_complete,
162 NULL,
163 GFP_KERNEL);
164 switch (ret) {
165
166 case 0: /* page found in fscache, read submitted */
Steve French040d15c2011-06-14 15:51:18 +0000167 cFYI(1, "%s: submitted", __func__);
Suresh Jayaraman56698232010-07-05 18:13:25 +0530168 return ret;
169 case -ENOBUFS: /* page won't be cached */
170 case -ENODATA: /* page not in cache */
Steve French040d15c2011-06-14 15:51:18 +0000171 cFYI(1, "%s: %d", __func__, ret);
Suresh Jayaraman56698232010-07-05 18:13:25 +0530172 return 1;
173
174 default:
175 cERROR(1, "unknown error ret = %d", ret);
176 }
177 return ret;
178}
179
180/*
181 * Retrieve a set of pages from FS-Cache
182 */
183int __cifs_readpages_from_fscache(struct inode *inode,
184 struct address_space *mapping,
185 struct list_head *pages,
186 unsigned *nr_pages)
187{
188 int ret;
189
Steve French040d15c2011-06-14 15:51:18 +0000190 cFYI(1, "%s: (0x%p/%u/0x%p)", __func__,
Suresh Jayaraman56698232010-07-05 18:13:25 +0530191 CIFS_I(inode)->fscache, *nr_pages, inode);
192 ret = fscache_read_or_alloc_pages(CIFS_I(inode)->fscache, mapping,
193 pages, nr_pages,
194 cifs_readpage_from_fscache_complete,
195 NULL,
196 mapping_gfp_mask(mapping));
197 switch (ret) {
198 case 0: /* read submitted to the cache for all pages */
Steve French040d15c2011-06-14 15:51:18 +0000199 cFYI(1, "%s: submitted", __func__);
Suresh Jayaraman56698232010-07-05 18:13:25 +0530200 return ret;
201
202 case -ENOBUFS: /* some pages are not cached and can't be */
203 case -ENODATA: /* some pages are not cached */
Steve French040d15c2011-06-14 15:51:18 +0000204 cFYI(1, "%s: no page", __func__);
Suresh Jayaraman56698232010-07-05 18:13:25 +0530205 return 1;
206
207 default:
208 cFYI(1, "unknown error ret = %d", ret);
209 }
210
211 return ret;
212}
213
Suresh Jayaraman9dc06552010-07-05 18:13:11 +0530214void __cifs_readpage_to_fscache(struct inode *inode, struct page *page)
215{
216 int ret;
217
Steve French040d15c2011-06-14 15:51:18 +0000218 cFYI(1, "%s: (fsc: %p, p: %p, i: %p)", __func__,
Suresh Jayaraman9dc06552010-07-05 18:13:11 +0530219 CIFS_I(inode)->fscache, page, inode);
220 ret = fscache_write_page(CIFS_I(inode)->fscache, page, GFP_KERNEL);
221 if (ret != 0)
222 fscache_uncache_page(CIFS_I(inode)->fscache, page);
223}
224
Suresh Jayaraman85f2d6b2010-07-05 18:13:00 +0530225void __cifs_fscache_invalidate_page(struct page *page, struct inode *inode)
226{
227 struct cifsInodeInfo *cifsi = CIFS_I(inode);
228 struct fscache_cookie *cookie = cifsi->fscache;
229
Steve French040d15c2011-06-14 15:51:18 +0000230 cFYI(1, "%s: (0x%p/0x%p)", __func__, page, cookie);
Suresh Jayaraman85f2d6b2010-07-05 18:13:00 +0530231 fscache_wait_on_page_write(cookie, page);
232 fscache_uncache_page(cookie, page);
233}
234