Whamcloud - gitweb
b=3550
[fs/lustre-release.git] / lustre / lov / lov_log.c
1  /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * Copyright (C) 2002, 2003 Cluster File Systems, Inc.
5  * Author: Phil Schwan <phil@clusterfs.com>
6  *         Peter Braam <braam@clusterfs.com>
7  *         Mike Shaver <shaver@clusterfs.com>
8  *
9  *   This file is part of Lustre, http://www.lustre.org.
10  *
11  *   Lustre is free software; you can redistribute it and/or
12  *   modify it under the terms of version 2 of the GNU General Public
13  *   License as published by the Free Software Foundation.
14  *
15  *   Lustre is distributed in the hope that it will be useful,
16  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
17  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  *   GNU General Public License for more details.
19  *
20  *   You should have received a copy of the GNU General Public License
21  *   along with Lustre; if not, write to the Free Software
22  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23  */
24
25 #ifndef EXPORT_SYMTAB
26 # define EXPORT_SYMTAB
27 #endif
28 #define DEBUG_SUBSYSTEM S_LOV
29 #ifdef __KERNEL__
30 #include <linux/slab.h>
31 #include <linux/module.h>
32 #include <linux/init.h>
33 #include <linux/slab.h>
34 #include <linux/pagemap.h>
35 #include <asm/div64.h>
36 #include <linux/seq_file.h>
37 #else
38 #include <liblustre.h>
39 #endif
40
41 #include <linux/obd_support.h>
42 #include <linux/lustre_lib.h>
43 #include <linux/lustre_net.h>
44 #include <linux/lustre_idl.h>
45 #include <linux/lustre_dlm.h>
46 #include <linux/lustre_mds.h>
47 #include <linux/obd_class.h>
48 #include <linux/obd_lov.h>
49 #include <linux/obd_ost.h>
50 #include <linux/lprocfs_status.h>
51
52 #include "lov_internal.h"
53
54 /* Add log records for each OSC that this object is striped over, and return
55  * cookies for each one.  We _would_ have nice abstraction here, except that
56  * we need to keep cookies in stripe order, even if some are NULL, so that
57  * the right cookies are passed back to the right OSTs at the client side.
58  * Unset cookies should be all-zero (which will never occur naturally). */
59 static int lov_llog_origin_add(struct llog_ctxt *ctxt, struct llog_rec_hdr *rec,
60                                void *buf, struct llog_cookie *logcookies, 
61                                int numcookies, void *data,
62                                struct rw_semaphore **lock, int *lock_count)
63 {
64         struct obd_device *obd = ctxt->loc_obd;
65         struct lov_obd *lov = &obd->u.lov;
66         struct lov_oinfo *loi;
67         struct llog_unlink_rec *lur;
68         struct lov_stripe_md *lsm = (struct lov_stripe_md *)buf;
69         int i, rc = 0;
70         ENTRY;
71
72         OBD_ALLOC(lur, sizeof(*lur));
73         if (!lur)
74                 RETURN(-ENOMEM);
75         lur->lur_hdr.lrh_len = lur->lur_tail.lrt_len = sizeof(*lur);
76         lur->lur_hdr.lrh_type = MDS_UNLINK_REC;
77
78         LASSERT(logcookies && numcookies >= lsm->lsm_stripe_count);
79
80         for (i = 0,loi = lsm->lsm_oinfo; i < lsm->lsm_stripe_count; i++,loi++) {
81                 struct obd_device *child =
82                         lov->tgts[loi->loi_ost_idx].ltd_exp->exp_obd; 
83                 struct llog_ctxt *cctxt;
84                 cctxt = llog_get_context(&child->obd_llogs, ctxt->loc_idx);
85
86                 lur->lur_oid = loi->loi_id;
87                 lur->lur_ogen = loi->loi_gr;
88                 LASSERT(lsm->lsm_object_gr == loi->loi_gr);
89                 rc += llog_add(cctxt, &lur->lur_hdr, NULL, logcookies + rc,
90                                numcookies - rc, NULL,
91                                lock != NULL ? lock + rc : NULL, lock_count);
92         }
93         OBD_FREE(lur, sizeof(*lur));
94
95         RETURN(rc);
96 }
97
98 static int lov_llog_origin_connect(struct llog_ctxt *ctxt, int count,
99                                    struct llog_logid *logid,
100                                    struct llog_gen *gen, struct obd_uuid *uuid)
101 {
102         struct obd_device *obd = ctxt->loc_obd;
103         struct lov_obd *lov = &obd->u.lov;
104         struct lov_tgt_desc *tgt;
105         int i, rc = 0;
106         ENTRY;
107
108         LASSERT(lov->desc.ld_tgt_count  == count);
109         for (i = 0, tgt = lov->tgts; i < lov->desc.ld_tgt_count; i++, tgt++) {
110                 struct obd_device *child;
111                 struct llog_ctxt *cctxt;
112
113                 if (!tgt->active)
114                         continue;
115                 child = tgt->ltd_exp->exp_obd;
116
117                 cctxt = llog_get_context(&child->obd_llogs, ctxt->loc_idx);
118                 if (uuid && !obd_uuid_equals(uuid, &lov->tgts[i].uuid))
119                         continue;
120
121                 rc = llog_connect(cctxt, 1, logid, gen, uuid);
122                 if (rc) {
123                         CERROR("error osc_llog_connect %d\n", i);
124                         break;
125                 }
126         }
127
128         RETURN(rc);
129 }
130
131 /* the replicators commit callback */
132 static int lov_llog_repl_cancel(struct llog_ctxt *ctxt, int count, 
133                                 struct llog_cookie *cookies, int flags,
134                                 void *data)
135 {
136         struct lov_stripe_md *lsm = (struct lov_stripe_md *)data;
137         struct lov_obd *lov;
138         struct obd_device *obd = ctxt->loc_obd;
139         struct lov_oinfo *loi;
140         int rc = 0, i;
141         ENTRY;
142
143         LASSERT(lsm != NULL);
144         LASSERT(count == lsm->lsm_stripe_count);
145
146         loi = lsm->lsm_oinfo;
147         lov = &obd->u.lov;
148         for (i = 0; i < count; i++, cookies++, loi++) {
149                 struct obd_device *child =
150                         lov->tgts[loi->loi_ost_idx].ltd_exp->exp_obd; 
151                 struct llog_ctxt *cctxt;
152                 int err;
153
154                 cctxt = llog_get_context(&child->obd_llogs, ctxt->loc_idx);
155                 err = llog_cancel(cctxt, 1, cookies, flags, NULL);
156                 if (err && lov->tgts[loi->loi_ost_idx].active) {
157                         CERROR("error: objid "LPX64" subobj "LPX64
158                                " on OST idx %d: rc = %d\n", lsm->lsm_object_id,
159                                loi->loi_id, loi->loi_ost_idx, err);
160                         if (!rc)
161                                 rc = err;
162                 }
163         }
164         RETURN(rc);
165 }
166
167 static struct llog_operations lov_unlink_orig_logops = {
168         lop_add: lov_llog_origin_add,
169         lop_connect: lov_llog_origin_connect
170 };
171
172 static struct llog_operations lov_size_repl_logops = {
173         lop_cancel: lov_llog_repl_cancel
174 };
175
176 int lov_llog_init(struct obd_device *obd, struct obd_llogs *llogs,
177                   struct obd_device *tgt, int count, struct llog_catid *logid)
178 {
179         struct lov_obd *lov = &obd->u.lov;
180         struct lov_tgt_desc *ctgt;
181         int i, rc = 0;
182         ENTRY;
183         
184         rc = obd_llog_setup(obd, llogs, LLOG_UNLINK_ORIG_CTXT, tgt, 0, NULL,
185                             &lov_unlink_orig_logops);
186         if (rc)
187                 RETURN(rc);
188
189         rc = obd_llog_setup(obd, llogs, LLOG_SIZE_REPL_CTXT, tgt, 0, NULL, 
190                             &lov_size_repl_logops);
191         if (rc)
192                 RETURN(rc);
193
194         LASSERT(lov->desc.ld_tgt_count  == count);
195         for (i = 0, ctgt = lov->tgts; i < lov->desc.ld_tgt_count; i++, ctgt++) {
196                 struct obd_device *child;
197
198                 if (!ctgt->active)
199                         continue;
200                 child = ctgt->ltd_exp->exp_obd;
201                 rc = obd_llog_init(child, &child->obd_llogs, tgt, 1, logid + i);
202                 if (rc) {
203                         CERROR("error osc_llog_init %d\n", i);
204                         break;
205                 }
206         }
207         RETURN(rc);
208 }
209
210 int lov_llog_finish(struct obd_device *obd, struct obd_llogs *llogs, int count)
211 {
212         struct lov_obd *lov = &obd->u.lov;
213         struct lov_tgt_desc *tgt;
214         int i, rc = 0;
215         ENTRY;
216
217         rc = obd_llog_cleanup(llog_get_context(llogs, LLOG_UNLINK_ORIG_CTXT));
218         if (rc)
219                 RETURN(rc);
220
221         rc = obd_llog_cleanup(llog_get_context(llogs, LLOG_SIZE_REPL_CTXT));
222         if (rc)
223                 RETURN(rc);
224
225         if (lov->desc.ld_tgt_count != count) {
226                 CERROR("LOV tgt count != passed tgt count (%d != %d)\n",
227                        lov->desc.ld_tgt_count, count);
228                 count = MIN(lov->desc.ld_tgt_count, count);
229         }
230         for (i = 0, tgt = lov->tgts; i < count; i++, tgt++) {
231                 struct obd_device *child;
232
233                 if (!tgt->active)
234                         continue;
235                 child = tgt->ltd_exp->exp_obd;
236                 rc = obd_llog_finish(child, &child->obd_llogs, 1);
237                 if (rc) {
238                         CERROR("osc_llog_finish error; index=%d; rc=%d\n",
239                                i, rc);
240                         break;
241                 }
242         }
243         RETURN(rc);
244 }