Whamcloud - gitweb
6ac2f39df074e116083038408dc6ec9af1c16c3d
[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 {
63         struct obd_device *obd = ctxt->loc_obd;
64         struct lov_obd *lov = &obd->u.lov;
65         struct lov_oinfo *loi;
66         struct llog_unlink_rec *lur;
67         struct lov_stripe_md *lsm = (struct lov_stripe_md *)buf;
68         int i, rc = 0;
69         ENTRY;
70
71         OBD_ALLOC(lur, sizeof(*lur));
72         if (!lur)
73                 RETURN(-ENOMEM);
74         lur->lur_hdr.lrh_len = lur->lur_tail.lrt_len = sizeof(*lur);
75         lur->lur_hdr.lrh_type = MDS_UNLINK_REC;
76
77         LASSERT(logcookies && numcookies >= lsm->lsm_stripe_count);
78
79         for (i = 0,loi = lsm->lsm_oinfo; i < lsm->lsm_stripe_count; i++,loi++) {
80                 struct obd_device *child = lov->tgts[loi->loi_ost_idx].ltd_exp->exp_obd; 
81                 struct llog_ctxt *cctxt;
82                 cctxt = llog_get_context(&child->obd_llogs, ctxt->loc_idx);
83                 lur->lur_oid = loi->loi_id;
84                 lur->lur_ogen = loi->loi_gr;
85                 LASSERT(lsm->lsm_object_gr == loi->loi_gr);
86                 rc += llog_add(cctxt, &lur->lur_hdr, NULL, logcookies + rc,
87                                 numcookies - rc, NULL);
88
89         }
90         OBD_FREE(lur, sizeof(*lur));
91
92         RETURN(rc);
93 }
94
95 static int lov_llog_origin_connect(struct llog_ctxt *ctxt, int count,
96                                    struct llog_logid *logid, 
97                                    struct llog_gen *gen,
98                                    struct obd_uuid *uuid)
99 {
100         struct obd_device *obd = ctxt->loc_obd;
101         struct lov_obd *lov = &obd->u.lov;
102         int i, rc = 0;
103         ENTRY;
104
105         LASSERT(lov->desc.ld_tgt_count  == count);
106         for (i = 0; i < lov->desc.ld_tgt_count; i++) {
107                 struct obd_device *child = lov->tgts[i].ltd_exp->exp_obd;
108                 struct llog_ctxt *cctxt;
109
110                 cctxt = llog_get_context(&child->obd_llogs, ctxt->loc_idx);
111                 if (uuid && !obd_uuid_equals(uuid, &lov->tgts[i].uuid))
112                         continue;
113
114                 rc = llog_connect(cctxt, 1, logid, gen, uuid);
115                 if (rc) {
116                         CERROR("error osc_llog_connect %d\n", i);
117                         break;
118                 }
119         }
120
121         RETURN(rc);
122 }
123
124 /* the replicators commit callback */
125 static int lov_llog_repl_cancel(struct llog_ctxt *ctxt, int count, 
126                                 struct llog_cookie *cookies, int flags,
127                                 void *data)
128 {
129         struct lov_stripe_md *lsm = (struct lov_stripe_md *)data;
130         struct lov_obd *lov;
131         struct obd_device *obd = ctxt->loc_obd;
132         struct lov_oinfo *loi;
133         int rc = 0, i;
134         ENTRY;
135
136         LASSERT(lsm != NULL);
137         LASSERT(count == lsm->lsm_stripe_count);
138
139         loi = lsm->lsm_oinfo;
140         lov = &obd->u.lov;
141         for (i = 0; i < count; i++, cookies++, loi++) {
142                 struct obd_device *child = lov->tgts[loi->loi_ost_idx].ltd_exp->exp_obd; 
143                 struct llog_ctxt *cctxt;
144                 int err;
145
146                 cctxt = llog_get_context(&child->obd_llogs, ctxt->loc_idx);
147                 err = llog_cancel(cctxt, 1, cookies, flags, NULL);
148                 if (err && lov->tgts[loi->loi_ost_idx].active) {
149                         CERROR("error: objid "LPX64" subobj "LPX64
150                                " on OST idx %d: rc = %d\n", lsm->lsm_object_id,
151                                loi->loi_id, loi->loi_ost_idx, err);
152                         if (!rc)
153                                 rc = err;
154                 }
155         }
156         RETURN(rc);
157 }
158
159 static struct llog_operations lov_unlink_orig_logops = {
160         lop_add: lov_llog_origin_add,
161         lop_connect: lov_llog_origin_connect
162 };
163
164 static struct llog_operations lov_size_repl_logops = {
165         lop_cancel: lov_llog_repl_cancel
166 };
167
168 int lov_llog_init(struct obd_device *obd, struct obd_llogs *llogs,
169                   struct obd_device *tgt, int count, struct llog_catid *logid)
170 {
171         struct lov_obd *lov = &obd->u.lov;
172         int i, rc = 0;
173         ENTRY;
174         
175         rc = obd_llog_setup(obd, llogs, LLOG_UNLINK_ORIG_CTXT, tgt, 0, NULL,
176                             &lov_unlink_orig_logops);
177         if (rc)
178                 RETURN(rc);
179
180         rc = obd_llog_setup(obd, llogs, LLOG_SIZE_REPL_CTXT, tgt, 0, NULL, 
181                             &lov_size_repl_logops);
182         if (rc)
183                 RETURN(rc);
184
185         LASSERT(lov->desc.ld_tgt_count  == count);
186         for (i = 0; i < lov->desc.ld_tgt_count; i++) {
187                 struct obd_device *child = lov->tgts[i].ltd_exp->exp_obd;
188                 rc = obd_llog_init(child, &child->obd_llogs, tgt, 1, logid + i);
189                 if (rc) {
190                         CERROR("error osc_llog_init %d\n", i);
191                         break;
192                 }
193         }
194         RETURN(rc);
195 }
196
197 int lov_llog_finish(struct obd_device *obd, struct obd_llogs *llogs, int count)
198 {
199         struct lov_obd *lov = &obd->u.lov;
200         int i, rc = 0;
201         ENTRY;
202         
203         rc = obd_llog_cleanup(llog_get_context(llogs, LLOG_UNLINK_ORIG_CTXT));
204         if (rc)
205                 RETURN(rc);
206
207         rc = obd_llog_cleanup(llog_get_context(llogs, LLOG_SIZE_REPL_CTXT));
208         if (rc)
209                 RETURN(rc);
210
211         LASSERT(lov->desc.ld_tgt_count  == count);
212         for (i = 0; i < lov->desc.ld_tgt_count; i++) {
213                 struct obd_device *child = lov->tgts[i].ltd_exp->exp_obd;
214                 rc = obd_llog_finish(child, &child->obd_llogs, 1);
215                 if (rc) {
216                         CERROR("error osc_llog_finish %d\n", i);
217                         break;
218                 }
219         }
220         RETURN(rc);
221 }