Whamcloud - gitweb
LU-6158 mdt: always shrink_capsule in getxattr_all
[fs/lustre-release.git] / lustre / lov / lov_merge.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2012, 2014, Intel Corporation.
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 #define DEBUG_SUBSYSTEM S_LOV
38
39 #include <libcfs/libcfs.h>
40
41 #include <obd_class.h>
42 #include "lov_internal.h"
43
44 /** Merge the lock value block(&lvb) attributes and KMS from each of the
45  * stripes in a file into a single lvb. It is expected that the caller
46  * initializes the current atime, mtime, ctime to avoid regressing a more
47  * uptodate time on the local client.
48  */
49 int lov_merge_lvb_kms(struct lov_stripe_md *lsm,
50                       struct ost_lvb *lvb, __u64 *kms_place)
51 {
52         u64 size = 0;
53         u64 kms = 0;
54         u64 blocks = 0;
55         s64 current_mtime = lvb->lvb_mtime;
56         s64 current_atime = lvb->lvb_atime;
57         s64 current_ctime = lvb->lvb_ctime;
58         int i;
59         int rc = 0;
60
61         assert_spin_locked(&lsm->lsm_lock);
62         LASSERT(lsm->lsm_lock_owner == current_pid());
63
64         CDEBUG(D_INODE, "MDT ID "DOSTID" initial value: s="LPU64" m="LPU64
65                " a="LPU64" c="LPU64" b="LPU64"\n", POSTID(&lsm->lsm_oi),
66                lvb->lvb_size, lvb->lvb_mtime, lvb->lvb_atime, lvb->lvb_ctime,
67                lvb->lvb_blocks);
68         for (i = 0; i < lsm->lsm_stripe_count; i++) {
69                 struct lov_oinfo *loi = lsm->lsm_oinfo[i];
70                 u64 lov_size;
71                 u64 tmpsize;
72
73                 if (OST_LVB_IS_ERR(loi->loi_lvb.lvb_blocks)) {
74                         rc = OST_LVB_GET_ERR(loi->loi_lvb.lvb_blocks);
75                         continue;
76                 }
77
78                 tmpsize = loi->loi_kms;
79                 lov_size = lov_stripe_size(lsm, tmpsize, i);
80                 if (lov_size > kms)
81                         kms = lov_size;
82
83                 if (loi->loi_lvb.lvb_size > tmpsize)
84                         tmpsize = loi->loi_lvb.lvb_size;
85
86                 lov_size = lov_stripe_size(lsm, tmpsize, i);
87                 if (lov_size > size)
88                         size = lov_size;
89                 /* merge blocks, mtime, atime */
90                 blocks += loi->loi_lvb.lvb_blocks;
91                 if (loi->loi_lvb.lvb_mtime > current_mtime)
92                         current_mtime = loi->loi_lvb.lvb_mtime;
93                 if (loi->loi_lvb.lvb_atime > current_atime)
94                         current_atime = loi->loi_lvb.lvb_atime;
95                 if (loi->loi_lvb.lvb_ctime > current_ctime)
96                         current_ctime = loi->loi_lvb.lvb_ctime;
97
98                 CDEBUG(D_INODE, "MDT ID "DOSTID" on OST[%u]: s="LPU64" m="LPU64
99                        " a="LPU64" c="LPU64" b="LPU64"\n", POSTID(&lsm->lsm_oi),
100                        loi->loi_ost_idx, loi->loi_lvb.lvb_size,
101                        loi->loi_lvb.lvb_mtime, loi->loi_lvb.lvb_atime,
102                        loi->loi_lvb.lvb_ctime, loi->loi_lvb.lvb_blocks);
103         }
104
105         *kms_place = kms;
106         lvb->lvb_size = size;
107         lvb->lvb_blocks = blocks;
108         lvb->lvb_mtime = current_mtime;
109         lvb->lvb_atime = current_atime;
110         lvb->lvb_ctime = current_ctime;
111         RETURN(rc);
112 }