Whamcloud - gitweb
Land b1_8_gate onto b1_8 (20081218_1708)
[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 from each of the stripes in a
54  * file into a single lvb. It is expected that the caller initializes the
55  * current atime, mtime, ctime to avoid regressing a more uptodate time on
56  * the local client.
57  *
58  * If @kms_only is set then we do not consider the recently seen size (rss)
59  * when updating the known minimum size (kms).  Even when merging RSS, we will
60  * take the KMS value if it's larger.  This prevents getattr from stomping on
61  * dirty cached pages which extend the file size. */
62 int lov_merge_lvb(struct obd_export *exp, struct lov_stripe_md *lsm,
63                   struct ost_lvb *lvb, int kms_only)
64 {
65         struct lov_oinfo *loi;
66         __u64 size = 0;
67         __u64 blocks = 0;
68         __u64 current_mtime = lvb->lvb_mtime;
69         __u64 current_atime = lvb->lvb_atime;
70         __u64 current_ctime = lvb->lvb_ctime;
71         int i;
72         int rc = 0;
73
74         LASSERT_SPIN_LOCKED(&lsm->lsm_lock);
75 #ifdef __KERNEL__
76         LASSERT(lsm->lsm_lock_owner == cfs_current());
77 #endif
78
79         for (i = 0; i < lsm->lsm_stripe_count; i++) {
80                 obd_size lov_size, tmpsize;
81
82                 loi = lsm->lsm_oinfo[i];
83                 if (OST_LVB_IS_ERR(loi->loi_lvb.lvb_blocks)) {
84                         rc = OST_LVB_GET_ERR(loi->loi_lvb.lvb_blocks);
85                         continue;
86                 }
87
88                 tmpsize = loi->loi_kms;
89                 if (kms_only == 0 && 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, ctime */
96                 blocks += loi->loi_lvb.lvb_blocks;
97                 if (loi->loi_lvb.lvb_mtime > current_mtime)
98                         current_mtime = loi->loi_lvb.lvb_mtime;
99                 if (loi->loi_lvb.lvb_atime > current_atime)
100                         current_atime = loi->loi_lvb.lvb_atime;
101                 if (loi->loi_lvb.lvb_ctime > current_ctime)
102                         current_ctime = loi->loi_lvb.lvb_ctime;
103         }
104
105         lvb->lvb_size = size;
106         lvb->lvb_blocks = blocks;
107         lvb->lvb_mtime = current_mtime;
108         lvb->lvb_atime = current_atime;
109         lvb->lvb_ctime = current_ctime;
110         RETURN(rc);
111 }
112
113 /* Must be called under the lov_stripe_lock() */
114 int lov_adjust_kms(struct obd_export *exp, struct lov_stripe_md *lsm,
115                    obd_off size, int shrink)
116 {
117         struct lov_oinfo *loi;
118         int stripe = 0;
119         __u64 kms;
120         ENTRY;
121
122         LASSERT_SPIN_LOCKED(&lsm->lsm_lock);
123 #ifdef __KERNEL__
124         LASSERT(lsm->lsm_lock_owner == cfs_current());
125 #endif
126
127         if (shrink) {
128                 struct lov_oinfo *loi;
129                 for (; stripe < lsm->lsm_stripe_count; stripe++) {
130                         loi = lsm->lsm_oinfo[stripe];
131                         kms = lov_size_to_stripe(lsm, size, stripe);
132                         CDEBUG(D_INODE,
133                                "stripe %d KMS %sing "LPU64"->"LPU64"\n",
134                                stripe, kms > loi->loi_kms ? "increas" :
135                                kms < loi->loi_kms ? "shrink" : "leav",
136                                loi->loi_kms, kms);
137                         loi->loi_kms = loi->loi_lvb.lvb_size = kms;
138                 }
139                 RETURN(0);
140         }
141
142         if (size > 0)
143                 stripe = lov_stripe_number(lsm, size - 1);
144         kms = lov_size_to_stripe(lsm, size, stripe);
145         loi = lsm->lsm_oinfo[stripe];
146
147         CDEBUG(D_INODE, "stripe %d KMS %sincreasing "LPU64"->"LPU64"\n",
148                stripe, kms > loi->loi_kms ? "" : "not ", loi->loi_kms, kms);
149         if (kms > loi->loi_kms)
150                 loi->loi_kms = kms;
151
152         RETURN(0);
153 }
154
155 void lov_merge_attrs(struct obdo *tgt, struct obdo *src, obd_flag valid,
156                      struct lov_stripe_md *lsm, int stripeno, int *set)
157 {
158         valid &= src->o_valid;
159
160         if (*set) {
161                 if (valid & OBD_MD_FLSIZE) {
162                         /* this handles sparse files properly */
163                         obd_size lov_size;
164
165                         lov_size = lov_stripe_size(lsm, src->o_size, stripeno);
166                         if (lov_size > tgt->o_size)
167                                 tgt->o_size = lov_size;
168                 }
169                 if (valid & OBD_MD_FLBLOCKS)
170                         tgt->o_blocks += src->o_blocks;
171                 if (valid & OBD_MD_FLBLKSZ)
172                         tgt->o_blksize += src->o_blksize;
173                 if (valid & OBD_MD_FLCTIME && tgt->o_ctime < src->o_ctime)
174                         tgt->o_ctime = src->o_ctime;
175                 if (valid & OBD_MD_FLMTIME && tgt->o_mtime < src->o_mtime)
176                         tgt->o_mtime = src->o_mtime;
177         } else {
178                 memcpy(tgt, src, sizeof(*tgt));
179                 tgt->o_id = lsm->lsm_object_id;
180                 if (valid & OBD_MD_FLSIZE)
181                         tgt->o_size = lov_stripe_size(lsm,src->o_size,stripeno);
182                 *set = 1;
183         }
184 }
185
186 int lov_update_lvb(struct obd_export *exp, struct lov_stripe_md *lsm,
187                    struct ost_lvb *lvb, obd_flag valid)
188 {
189         int i;
190         struct lov_oinfo *loi;
191
192         LASSERT_SPIN_LOCKED(&lsm->lsm_lock);
193         LASSERT(lsm->lsm_lock_owner == cfs_current());
194
195         for (i = 0; i < lsm->lsm_stripe_count; i++) {
196                 loi = lsm->lsm_oinfo[i];
197                 if (valid & OBD_MD_FLATIME)
198                         loi->loi_lvb.lvb_atime = lvb->lvb_atime;
199                 if (valid & OBD_MD_FLMTIME)
200                         loi->loi_lvb.lvb_mtime = lvb->lvb_mtime;
201                 if (valid & OBD_MD_FLCTIME)
202                         loi->loi_lvb.lvb_ctime = lvb->lvb_ctime;
203         }
204         return 0;
205 }