1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2 * vim:expandtab:shiftwidth=8:tabstop=8:
6 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
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.
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).
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
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
29 * Copyright 2008 Sun Microsystems, Inc. All rights reserved
30 * Use is subject to license terms.
33 * This file is part of Lustre, http://www.lustre.org/
34 * Lustre is a trademark of Sun Microsystems, Inc.
38 # define EXPORT_SYMTAB
40 #define DEBUG_SUBSYSTEM S_LOV
43 #include <libcfs/libcfs.h>
45 #include <liblustre.h>
48 #include <obd_class.h>
51 #include "lov_internal.h"
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.
58 int lov_merge_lvb_kms(struct lov_stripe_md *lsm,
59 struct ost_lvb *lvb, __u64 *kms_place)
64 __u64 current_mtime = lvb->lvb_mtime;
65 __u64 current_atime = lvb->lvb_atime;
66 __u64 current_ctime = lvb->lvb_ctime;
70 LASSERT_SPIN_LOCKED(&lsm->lsm_lock);
72 LASSERT(lsm->lsm_lock_owner == cfs_curproc_pid());
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;
79 if (OST_LVB_IS_ERR(loi->loi_lvb.lvb_blocks)) {
80 rc = OST_LVB_GET_ERR(loi->loi_lvb.lvb_blocks);
84 tmpsize = loi->loi_kms;
85 lov_size = lov_stripe_size(lsm, tmpsize, i);
89 if (loi->loi_lvb.lvb_size > tmpsize)
90 tmpsize = loi->loi_lvb.lvb_size;
92 lov_size = lov_stripe_size(lsm, tmpsize, i);
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;
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;
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;
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
124 * If \a 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)
135 rc = lov_merge_lvb_kms(lsm, lvb, &kms);
138 CDEBUG(D_INODE, "merged: "LPU64" "LPU64" "LPU64" "LPU64" "LPU64"\n",
139 lvb->lvb_size, lvb->lvb_mtime, lvb->lvb_atime,
140 lvb->lvb_ctime, lvb->lvb_blocks);
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)
148 struct lov_oinfo *loi;
153 LASSERT_SPIN_LOCKED(&lsm->lsm_lock);
155 LASSERT(lsm->lsm_lock_owner == cfs_curproc_pid());
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);
163 "stripe %d KMS %sing "LPU64"->"LPU64"\n",
164 stripe, kms > loi->loi_kms ? "increas":"shrink",
166 loi_kms_set(loi, loi->loi_lvb.lvb_size = kms);
172 stripe = lov_stripe_number(lsm, size - 1);
173 kms = lov_size_to_stripe(lsm, size, stripe);
174 loi = lsm->lsm_oinfo[stripe];
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);
184 void lov_merge_attrs(struct obdo *tgt, struct obdo *src, obd_flag valid,
185 struct lov_stripe_md *lsm, int stripeno, int *set)
187 valid &= src->o_valid;
190 if (valid & OBD_MD_FLSIZE) {
191 /* this handles sparse files properly */
194 lov_size = lov_stripe_size(lsm, src->o_size, stripeno);
195 if (lov_size > tgt->o_size)
196 tgt->o_size = lov_size;
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;
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);