Whamcloud - gitweb
branch: HEAD
[fs/lustre-release.git] / lustre / lov / lov_merge.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  2008 Sun Microsystems, Inc. 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
37 #ifndef EXPORT_SYMTAB
38 # define EXPORT_SYMTAB
39 #endif
40 #define DEBUG_SUBSYSTEM S_LOV
41
42 #ifdef __KERNEL__
43 #include <libcfs/libcfs.h>
44 #else
45 #include <liblustre.h>
46 #endif
47
48 #include <obd_class.h>
49 #include <obd_lov.h>
50
51 #include "lov_internal.h"
52
53 /** Merge the lock value block(&lvb) attributes and KMS from each of the
54  * stripes in a file into a single lvb. It is expected that the caller
55  * initializes the current atime, mtime, ctime to avoid regressing a more
56  * uptodate time on the local client.
57  */
58 int lov_merge_lvb_kms(struct lov_stripe_md *lsm,
59                       struct ost_lvb *lvb, __u64 *kms_place)
60 {
61         __u64 size = 0;
62         __u64 kms = 0;
63         __u64 blocks = 0;
64         __u64 current_mtime = lvb->lvb_mtime;
65         __u64 current_atime = lvb->lvb_atime;
66         __u64 current_ctime = lvb->lvb_ctime;
67         int i;
68         int rc = 0;
69
70         LASSERT_SPIN_LOCKED(&lsm->lsm_lock);
71 #ifdef __KERNEL__
72         LASSERT(lsm->lsm_lock_owner == cfs_curproc_pid());
73 #endif
74
75         for (i = 0; i < lsm->lsm_stripe_count; i++) {
76                 struct lov_oinfo *loi = lsm->lsm_oinfo[i];
77                 obd_size lov_size, tmpsize;
78
79                 if (OST_LVB_IS_ERR(loi->loi_lvb.lvb_blocks)) {
80                         rc = OST_LVB_GET_ERR(loi->loi_lvb.lvb_blocks);
81                         continue;
82                 }
83
84                 tmpsize = loi->loi_kms;
85                 lov_size = lov_stripe_size(lsm, tmpsize, i);
86                 if (lov_size > kms)
87                         kms = lov_size;
88
89                 if (loi->loi_lvb.lvb_size > tmpsize)
90                         tmpsize = loi->loi_lvb.lvb_size;
91
92                 lov_size = lov_stripe_size(lsm, tmpsize, i);
93                 if (lov_size > size)
94                         size = lov_size;
95                 /* merge blocks, mtime, atime */
96                 blocks += loi->loi_lvb.lvb_blocks;
97                 if (loi->loi_lvb.lvb_atime > current_atime)
98                         current_atime = loi->loi_lvb.lvb_atime;
99
100                 /* mtime is always updated with ctime, but can be set in past.
101                    As write and utime(2) may happen within 1 second, and utime's
102                    mtime has a priority over write's one, leave mtime from mds
103                    for the same ctimes. */
104                 if (loi->loi_lvb.lvb_ctime > current_ctime) {
105                         current_ctime = loi->loi_lvb.lvb_ctime;
106                         current_mtime = loi->loi_lvb.lvb_mtime;
107                 }
108         }
109
110         *kms_place = kms;
111         lvb->lvb_size = size;
112         lvb->lvb_blocks = blocks;
113         lvb->lvb_mtime = current_mtime;
114         lvb->lvb_atime = current_atime;
115         lvb->lvb_ctime = current_ctime;
116         RETURN(rc);
117 }
118
119 /** Merge the lock value block(&lvb) attributes from each of the stripes in a
120  * file into a single lvb. It is expected that the caller initializes the
121  * current atime, mtime, ctime to avoid regressing a more uptodate time on
122  * the local client.
123  *
124  * If @kms_only is set then we do not consider the recently seen size (rss)
125  * when updating the known minimum size (kms).  Even when merging RSS, we will
126  * take the KMS value if it's larger.  This prevents getattr from stomping on
127  * dirty cached pages which extend the file size. */
128 int lov_merge_lvb(struct obd_export *exp,
129                   struct lov_stripe_md *lsm, struct ost_lvb *lvb, int kms_only)
130 {
131         int   rc;
132         __u64 kms;
133
134         ENTRY;
135         rc = lov_merge_lvb_kms(lsm, lvb, &kms);
136         if (kms_only)
137                 lvb->lvb_size = kms;
138         CDEBUG(D_INODE, "merged: %llu %llu %llu %llu %llu\n",
139                lvb->lvb_size, lvb->lvb_mtime, lvb->lvb_atime,
140                lvb->lvb_ctime, lvb->lvb_blocks);
141         RETURN(rc);
142 }
143
144 /* Must be called under the lov_stripe_lock() */
145 int lov_adjust_kms(struct obd_export *exp, struct lov_stripe_md *lsm,
146                    obd_off size, int shrink)
147 {
148         struct lov_oinfo *loi;
149         int stripe = 0;
150         __u64 kms;
151         ENTRY;
152
153         LASSERT_SPIN_LOCKED(&lsm->lsm_lock);
154 #ifdef __KERNEL__
155         LASSERT(lsm->lsm_lock_owner == cfs_curproc_pid());
156 #endif
157
158         if (shrink) {
159                 for (; stripe < lsm->lsm_stripe_count; stripe++) {
160                         struct lov_oinfo *loi = lsm->lsm_oinfo[stripe];
161                         kms = lov_size_to_stripe(lsm, size, stripe);
162                         CDEBUG(D_INODE,
163                                "stripe %d KMS %sing "LPU64"->"LPU64"\n",
164                                stripe, kms > loi->loi_kms ? "increas":"shrink",
165                                loi->loi_kms, kms);
166                         loi_kms_set(loi, loi->loi_lvb.lvb_size = kms);
167                 }
168                 RETURN(0);
169         }
170
171         if (size > 0)
172                 stripe = lov_stripe_number(lsm, size - 1);
173         kms = lov_size_to_stripe(lsm, size, stripe);
174         loi = lsm->lsm_oinfo[stripe];
175
176         CDEBUG(D_INODE, "stripe %d KMS %sincreasing "LPU64"->"LPU64"\n",
177                stripe, kms > loi->loi_kms ? "" : "not ", loi->loi_kms, kms);
178         if (kms > loi->loi_kms)
179                 loi_kms_set(loi, kms);
180
181         RETURN(0);
182 }
183
184 void lov_merge_attrs(struct obdo *tgt, struct obdo *src, obd_flag valid,
185                      struct lov_stripe_md *lsm, int stripeno, int *set)
186 {
187         valid &= src->o_valid;
188
189         if (*set) {
190                 if (valid & OBD_MD_FLSIZE) {
191                         /* this handles sparse files properly */
192                         obd_size lov_size;
193
194                         lov_size = lov_stripe_size(lsm, src->o_size, stripeno);
195                         if (lov_size > tgt->o_size)
196                                 tgt->o_size = lov_size;
197                 }
198                 if (valid & OBD_MD_FLBLOCKS)
199                         tgt->o_blocks += src->o_blocks;
200                 if (valid & OBD_MD_FLBLKSZ)
201                         tgt->o_blksize += src->o_blksize;
202                 if (valid & OBD_MD_FLCTIME && tgt->o_ctime < src->o_ctime)
203                         tgt->o_ctime = src->o_ctime;
204                 /* Only mtime from OSTs are merged here, as they cannot be set
205                    in past (only MDS's mtime can) do not look at ctime. */
206                 if (valid & OBD_MD_FLMTIME && tgt->o_mtime < src->o_mtime)
207                         tgt->o_mtime = src->o_mtime;
208         } else {
209                 memcpy(tgt, src, sizeof(*tgt));
210                 tgt->o_id = lsm->lsm_object_id;
211                 if (valid & OBD_MD_FLSIZE)
212                         tgt->o_size = lov_stripe_size(lsm,src->o_size,stripeno);
213                 *set = 1;
214         }
215 }