/* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*- * vim:expandtab:shiftwidth=8:tabstop=8: * * Copyright (C) 2002, 2003 Cluster File Systems, Inc. * Author: Phil Schwan * Peter Braam * Mike Shaver * * This file is part of Lustre, http://www.lustre.org. * * Lustre is free software; you can redistribute it and/or * modify it under the terms of version 2 of the GNU General Public * License as published by the Free Software Foundation. * * Lustre is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Lustre; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef EXPORT_SYMTAB # define EXPORT_SYMTAB #endif #define DEBUG_SUBSYSTEM S_LOV #ifdef __KERNEL__ #include #include #include #include #include #include #include #else #include #endif #include #include #include #include #include #include #include #include #include #include #include "lov_internal.h" /* Add log records for each OSC that this object is striped over, and return * cookies for each one. We _would_ have nice abstraction here, except that * we need to keep cookies in stripe order, even if some are NULL, so that * the right cookies are passed back to the right OSTs at the client side. * Unset cookies should be all-zero (which will never occur naturally). */ static int lov_llog_origin_add(struct llog_ctxt *ctxt, struct llog_rec_hdr *rec, struct lov_stripe_md *lsm, struct llog_cookie *logcookies, int numcookies) { struct obd_device *obd = ctxt->loc_obd; struct lov_obd *lov = &obd->u.lov; struct lov_oinfo *loi; struct llog_unlink_rec *lur; int i, rc = 0; ENTRY; OBD_ALLOC(lur, sizeof(*lur)); if (!lur) RETURN(-ENOMEM); lur->lur_hdr.lrh_len = lur->lur_tail.lrt_len = sizeof(*lur); lur->lur_hdr.lrh_type = MDS_UNLINK_REC; LASSERT(logcookies && numcookies >= lsm->lsm_stripe_count); for (i = 0,loi = lsm->lsm_oinfo; i < lsm->lsm_stripe_count; i++,loi++) { struct obd_device *child = lov->tgts[loi->loi_ost_idx].ltd_exp->exp_obd; struct llog_ctxt *cctxt = llog_get_context(child, ctxt->loc_idx); lur->lur_oid = loi->loi_id; lur->lur_ogen = loi->loi_gr; rc += llog_add(cctxt, &lur->lur_hdr, NULL, logcookies + rc, numcookies - rc); } OBD_FREE(lur, sizeof(*lur)); RETURN(rc); } static int lov_llog_origin_connect(struct llog_ctxt *ctxt, int count, struct llog_logid *logid, struct llog_gen *gen) { struct obd_device *obd = ctxt->loc_obd; struct lov_obd *lov = &obd->u.lov; int i, rc = 0; ENTRY; LASSERT(lov->desc.ld_tgt_count == count); for (i = 0; i < lov->desc.ld_tgt_count; i++) { struct obd_device *child = lov->tgts[i].ltd_exp->exp_obd; struct llog_ctxt *cctxt = llog_get_context(child, ctxt->loc_idx); rc = llog_connect(cctxt, 1, logid, gen); if (rc) { CERROR("error osc_llog_connect %d\n", i); break; } } RETURN(rc); } /* the replicators commit callback */ static int lov_llog_repl_cancel(struct llog_ctxt *ctxt, struct lov_stripe_md *lsm, int count, struct llog_cookie *cookies, int flags) { struct lov_obd *lov; struct obd_device *obd = ctxt->loc_obd; struct lov_oinfo *loi; int rc = 0, i; ENTRY; LASSERT(lsm != NULL); LASSERT(count == lsm->lsm_stripe_count); loi = lsm->lsm_oinfo; lov = &obd->u.lov; for (i = 0; i < count; i++, cookies++, loi++) { struct obd_device *child = lov->tgts[loi->loi_ost_idx].ltd_exp->exp_obd; struct llog_ctxt *cctxt = llog_get_context(child, ctxt->loc_idx); int err; err = llog_cancel(cctxt, NULL, 1, cookies, flags); if (err && lov->tgts[loi->loi_ost_idx].active) { CERROR("error: objid "LPX64" subobj "LPX64 " on OST idx %d: rc = %d\n", lsm->lsm_object_id, loi->loi_id, loi->loi_ost_idx, err); if (!rc) rc = err; } } RETURN(rc); } static struct llog_operations lov_unlink_orig_logops = { lop_add: lov_llog_origin_add, lop_connect: lov_llog_origin_connect }; static struct llog_operations lov_size_repl_logops = { lop_cancel: lov_llog_repl_cancel }; int lov_llog_init(struct obd_device *obd, struct obd_device *tgt, int count, struct llog_logid *logid) { struct lov_obd *lov = &obd->u.lov; int i, rc = 0; ENTRY; rc = llog_setup(obd, LLOG_UNLINK_ORIG_CTXT, tgt, 0, NULL, &lov_unlink_orig_logops); if (rc) RETURN(rc); rc = llog_setup(obd, LLOG_SIZE_REPL_CTXT, tgt, 0, NULL, &lov_size_repl_logops); if (rc) RETURN(rc); LASSERT(lov->desc.ld_tgt_count == count); for (i = 0; i < lov->desc.ld_tgt_count; i++) { struct obd_device *child = lov->tgts[i].ltd_exp->exp_obd; rc = obd_llog_init(child, tgt, 1, logid + i); if (rc) { CERROR("error osc_llog_init %d\n", i); break; } } RETURN(rc); } int lov_llog_finish(struct obd_device *obd, int count) { struct lov_obd *lov = &obd->u.lov; int i, rc = 0; ENTRY; rc = llog_cleanup(llog_get_context(obd, LLOG_UNLINK_ORIG_CTXT)); if (rc) RETURN(rc); rc = llog_cleanup(llog_get_context(obd, LLOG_SIZE_REPL_CTXT)); if (rc) RETURN(rc); LASSERT(lov->desc.ld_tgt_count == count); for (i = 0; i < lov->desc.ld_tgt_count; i++) { struct obd_device *child = lov->tgts[i].ltd_exp->exp_obd; rc = obd_llog_finish(child, 1); if (rc) { CERROR("error osc_llog_finish %d\n", i); break; } } RETURN(rc); }