Whamcloud - gitweb
LU-8998 clio: Client side implementation for PFL
[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.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2012, 2015, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  */
32
33 #define DEBUG_SUBSYSTEM S_LOV
34
35 #include <libcfs/libcfs.h>
36
37 #include <obd_class.h>
38 #include "lov_internal.h"
39
40 /** Merge the lock value block(&lvb) attributes and KMS from each of the
41  * stripes in a file into a single lvb. It is expected that the caller
42  * initializes the current atime, mtime, ctime to avoid regressing a more
43  * uptodate time on the local client.
44  */
45 int lov_merge_lvb_kms(struct lov_stripe_md *lsm, int index,
46                       struct ost_lvb *lvb, __u64 *kms_place)
47 {
48         struct lov_stripe_md_entry *lse = lsm->lsm_entries[index];
49         u64 size = 0;
50         u64 kms = 0;
51         u64 blocks = 0;
52         s64 current_mtime = lvb->lvb_mtime;
53         s64 current_atime = lvb->lvb_atime;
54         s64 current_ctime = lvb->lvb_ctime;
55         int i;
56         int rc = 0;
57
58         assert_spin_locked(&lsm->lsm_lock);
59         LASSERT(lsm->lsm_lock_owner == current_pid());
60
61         CDEBUG(D_INODE, "MDT ID "DOSTID" initial value: s=%llu m=%llu"
62                " a=%llu c=%llu b=%llu\n", POSTID(&lsm->lsm_oi),
63                lvb->lvb_size, lvb->lvb_mtime, lvb->lvb_atime, lvb->lvb_ctime,
64                lvb->lvb_blocks);
65         for (i = 0; i < lse->lsme_stripe_count; i++) {
66                 struct lov_oinfo *loi = lse->lsme_oinfo[i];
67                 u64 lov_size;
68                 u64 tmpsize;
69
70                 if (OST_LVB_IS_ERR(loi->loi_lvb.lvb_blocks)) {
71                         rc = OST_LVB_GET_ERR(loi->loi_lvb.lvb_blocks);
72                         continue;
73                 }
74
75                 tmpsize = loi->loi_kms;
76                 lov_size = lov_stripe_size(lsm, index, tmpsize, i);
77                 if (lov_size > kms)
78                         kms = lov_size;
79
80                 if (loi->loi_lvb.lvb_size > tmpsize)
81                         tmpsize = loi->loi_lvb.lvb_size;
82
83                 lov_size = lov_stripe_size(lsm, index, tmpsize, i);
84                 if (lov_size > size)
85                         size = lov_size;
86                 /* merge blocks, mtime, atime */
87                 blocks += loi->loi_lvb.lvb_blocks;
88                 if (loi->loi_lvb.lvb_mtime > current_mtime)
89                         current_mtime = loi->loi_lvb.lvb_mtime;
90                 if (loi->loi_lvb.lvb_atime > current_atime)
91                         current_atime = loi->loi_lvb.lvb_atime;
92                 if (loi->loi_lvb.lvb_ctime > current_ctime)
93                         current_ctime = loi->loi_lvb.lvb_ctime;
94
95                 CDEBUG(D_INODE, "MDT ID "DOSTID" on OST[%u]: s=%llu m=%llu"
96                        " a=%llu c=%llu b=%llu\n", POSTID(&lsm->lsm_oi),
97                        loi->loi_ost_idx, loi->loi_lvb.lvb_size,
98                        loi->loi_lvb.lvb_mtime, loi->loi_lvb.lvb_atime,
99                        loi->loi_lvb.lvb_ctime, loi->loi_lvb.lvb_blocks);
100         }
101
102         *kms_place = kms;
103         lvb->lvb_size = size;
104         lvb->lvb_blocks = blocks;
105         lvb->lvb_mtime = current_mtime;
106         lvb->lvb_atime = current_atime;
107         lvb->lvb_ctime = current_ctime;
108         RETURN(rc);
109 }