Whamcloud - gitweb
LU-82 Remove useless clio locks
[fs/lustre-release.git] / lustre / obdfilter / filter_lvb.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/obdfilter/filter_lvb.c
37  *
38  * Author: Peter Braam <braam@clusterfs.com>
39  * Author: Andreas Dilger <adilger@clusterfs.com>
40  * Author: Phil Schwan <phil@clusterfs.com>
41  */
42
43 #define DEBUG_SUBSYSTEM S_FILTER
44
45 #ifndef AUTOCONF_INCLUDED
46 #include <linux/config.h>
47 #endif
48 #include <linux/module.h>
49 #include <linux/version.h>
50
51 #include <libcfs/list.h>
52 #include <obd_class.h>
53 #include <lustre_dlm.h>
54
55 #include "filter_internal.h"
56
57 static int filter_lvbo_free(struct ldlm_resource *res) {
58         if (res->lr_lvb_inode) {
59                 iput(res->lr_lvb_inode);
60                 res->lr_lvb_inode = NULL;
61         }
62
63         if (res->lr_lvb_data)
64                 OBD_FREE(res->lr_lvb_data, res->lr_lvb_len);
65
66         return 0;
67 }
68
69 /* Called with res->lr_lvb_sem held */
70 static int filter_lvbo_init(struct ldlm_resource *res)
71 {
72         struct ost_lvb *lvb = NULL;
73         struct obd_device *obd;
74         struct dentry *dentry;
75         int rc = 0;
76         ENTRY;
77
78         LASSERT(res);
79         LASSERT_SEM_LOCKED(&res->lr_lvb_sem);
80
81         if (res->lr_lvb_data)
82                 RETURN(0);
83
84         OBD_ALLOC(lvb, sizeof(*lvb));
85         if (lvb == NULL)
86                 RETURN(-ENOMEM);
87
88         res->lr_lvb_data = lvb;
89         res->lr_lvb_len = sizeof(*lvb);
90
91         obd = ldlm_res_to_ns(res)->ns_lvbp;
92         LASSERT(obd != NULL);
93
94         CDEBUG(D_INODE, "%s: filter_lvbo_init(o_seq="LPU64", o_id="
95                LPU64")\n", obd->obd_name, res->lr_name.name[1],
96                res->lr_name.name[0]);
97
98         dentry = filter_fid2dentry(obd, NULL, res->lr_name.name[1], 
99                                               res->lr_name.name[0]);
100         if (IS_ERR(dentry)) {
101                 rc = PTR_ERR(dentry);
102                 CERROR("%s: bad object "LPU64"/"LPU64": rc %d\n", obd->obd_name,
103                        res->lr_name.name[0], res->lr_name.name[1], rc);
104                 RETURN(rc);
105         }
106
107         if (dentry->d_inode == NULL)
108                 /* This is always true for test_brw */
109                 GOTO(out_dentry, rc = -ENOENT);
110
111         inode_init_lvb(dentry->d_inode, lvb);
112
113         CDEBUG(D_DLMTRACE, "res: "LPX64" initial lvb size: "LPX64", "
114                "mtime: "LPX64", blocks: "LPX64"\n",
115                res->lr_name.name[0], lvb->lvb_size,
116                lvb->lvb_mtime, lvb->lvb_blocks);
117
118         res->lr_lvb_inode = igrab(dentry->d_inode);
119
120         EXIT;
121 out_dentry:
122         f_dput(dentry);
123
124         if (rc)
125                 OST_LVB_SET_ERR(lvb->lvb_blocks, rc);
126         /* Don't free lvb data on lookup error */
127         return rc;
128 }
129
130 /* This will be called in two ways:
131  *
132  *   m != NULL : called by the DLM itself after a glimpse callback
133  *   m == NULL : called by the filter after a disk write
134  *
135  *   If 'increase_only' is true, don't allow values to move backwards.
136  */
137 static int filter_lvbo_update(struct ldlm_resource *res,
138                               struct ptlrpc_request *r, int increase_only)
139 {
140         int rc = 0;
141         struct ost_lvb *lvb;
142         struct obd_device *obd;
143         struct inode *inode;
144         ENTRY;
145
146         LASSERT(res);
147
148         cfs_down(&res->lr_lvb_sem);
149         lvb = res->lr_lvb_data;
150         if (lvb == NULL) {
151                 CERROR("No lvb when running lvbo_update!\n");
152                 GOTO(out, rc = 0);
153         }
154
155         /* Update the LVB from the network message */
156         if (r != NULL) {
157                 struct ost_lvb *new;
158
159                 /* XXX update always from reply buffer */
160                 new = req_capsule_server_get(&r->rq_pill, &RMF_DLM_LVB);
161
162                 if (new == NULL) {
163                         CERROR("lustre_swab_buf failed\n");
164                         goto disk_update;
165                 }
166                 if (new->lvb_size > lvb->lvb_size || !increase_only) {
167                         CDEBUG(D_DLMTRACE, "res: "LPU64" updating lvb size: "
168                                LPU64" -> "LPU64"\n", res->lr_name.name[0],
169                                lvb->lvb_size, new->lvb_size);
170                         lvb->lvb_size = new->lvb_size;
171                 }
172                 if (new->lvb_mtime > lvb->lvb_mtime || !increase_only) {
173                         CDEBUG(D_DLMTRACE, "res: "LPU64" updating lvb mtime: "
174                                LPU64" -> "LPU64"\n", res->lr_name.name[0],
175                                lvb->lvb_mtime, new->lvb_mtime);
176                         lvb->lvb_mtime = new->lvb_mtime;
177                 }
178                 if (new->lvb_atime > lvb->lvb_atime || !increase_only) {
179                         CDEBUG(D_DLMTRACE, "res: "LPU64" updating lvb atime: "
180                                LPU64" -> "LPU64"\n", res->lr_name.name[0],
181                                lvb->lvb_atime, new->lvb_atime);
182                         lvb->lvb_atime = new->lvb_atime;
183                 }
184                 if (new->lvb_ctime > lvb->lvb_ctime || !increase_only) {
185                         CDEBUG(D_DLMTRACE, "res: "LPU64" updating lvb ctime: "
186                                LPU64" -> "LPU64"\n", res->lr_name.name[0],
187                                lvb->lvb_ctime, new->lvb_ctime);
188                         lvb->lvb_ctime = new->lvb_ctime;
189                 }
190         }
191
192  disk_update:
193         /* Update the LVB from the disk inode */
194         obd = ldlm_res_to_ns(res)->ns_lvbp;
195         LASSERT(obd);
196
197         inode = res->lr_lvb_inode;
198         /* filter_fid2dentry could fail */
199         if (unlikely(!inode)) {
200                 struct dentry *dentry;
201
202                 dentry = filter_fid2dentry(obd, NULL, res->lr_name.name[1], 
203                                            res->lr_name.name[0]);
204                 if (IS_ERR(dentry))
205                         GOTO(out, rc = PTR_ERR(dentry));
206
207                 if (dentry->d_inode)
208                         inode = res->lr_lvb_inode = igrab(dentry->d_inode);
209                 f_dput(dentry);
210         }
211
212         if (!inode || !inode->i_nlink)
213                 GOTO(out, rc = -ENOENT);
214
215         if (i_size_read(inode) > lvb->lvb_size || !increase_only) {
216                 CDEBUG(D_DLMTRACE, "res: "LPU64" updating lvb size from disk: "
217                        LPU64" -> %llu\n", res->lr_name.name[0],
218                        lvb->lvb_size, i_size_read(inode));
219                 lvb->lvb_size = i_size_read(inode);
220         }
221
222         if (LTIME_S(inode->i_mtime) >lvb->lvb_mtime|| !increase_only){
223                 CDEBUG(D_DLMTRACE, "res: "LPU64" updating lvb mtime from disk: "
224                        LPU64" -> %lu\n", res->lr_name.name[0],
225                        lvb->lvb_mtime, LTIME_S(inode->i_mtime));
226                 lvb->lvb_mtime = LTIME_S(inode->i_mtime);
227         }
228         if (LTIME_S(inode->i_atime) >lvb->lvb_atime|| !increase_only){
229                 CDEBUG(D_DLMTRACE, "res: "LPU64" updating lvb atime from disk: "
230                        LPU64" -> %lu\n", res->lr_name.name[0],
231                        lvb->lvb_atime, LTIME_S(inode->i_atime));
232                 lvb->lvb_atime = LTIME_S(inode->i_atime);
233         }
234         if (LTIME_S(inode->i_ctime) >lvb->lvb_ctime|| !increase_only){
235                 CDEBUG(D_DLMTRACE, "res: "LPU64" updating lvb ctime from disk: "
236                        LPU64" -> %lu\n", res->lr_name.name[0],
237                        lvb->lvb_ctime, LTIME_S(inode->i_ctime));
238                 lvb->lvb_ctime = LTIME_S(inode->i_ctime);
239         }
240         if (lvb->lvb_blocks != inode->i_blocks) {
241                 CDEBUG(D_DLMTRACE,"res: "LPU64" updating lvb blocks from disk: "
242                        LPU64" -> %llu\n", res->lr_name.name[0],
243                        lvb->lvb_blocks, (unsigned long long)inode->i_blocks);
244                 lvb->lvb_blocks = inode->i_blocks;
245         }
246
247 out:
248         cfs_up(&res->lr_lvb_sem);
249         return rc;
250 }
251
252 struct ldlm_valblock_ops filter_lvbo = {
253         lvbo_init: filter_lvbo_init,
254         lvbo_update: filter_lvbo_update,
255         lvbo_free: filter_lvbo_free
256 };