blob: fb346c12dad2f4a6c07b4ad3a93c75b4b9adbcb9 [file] [log] [blame]
Peng Taod7e09d02013-05-02 16:46:55 +08001/*
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
Oleg Drokin6a5b99a2016-06-14 23:33:40 -040018 * http://www.gnu.org/licenses/gpl-2.0.html
Peng Taod7e09d02013-05-02 16:46:55 +080019 *
Peng Taod7e09d02013-05-02 16:46:55 +080020 * GPL HEADER END
21 */
22/*
23 * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
24 * Use is subject to license terms.
25 *
26 * Copyright (c) 2011, 2012, 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 * cl code shared between vvp and liblustre (and other Lustre clients in the
33 * future).
34 *
35 */
Greg Kroah-Hartman67a235f2014-07-11 21:51:41 -070036#include "../include/obd_class.h"
37#include "../include/obd_support.h"
38#include "../include/obd.h"
39#include "../include/cl_object.h"
Peng Taod7e09d02013-05-02 16:46:55 +080040
John Hammond98eae5e2016-03-30 19:48:55 -040041#include "llite_internal.h"
Peng Taod7e09d02013-05-02 16:46:55 +080042
Peng Taod7e09d02013-05-02 16:46:55 +080043/* Initialize the default and maximum LOV EA and cookie sizes. This allows
44 * us to make MDS RPCs with large enough reply buffers to hold the
45 * maximum-sized (= maximum striped) EA and cookie without having to
Oleg Drokinec9a1ac2016-02-24 22:00:28 -050046 * calculate this (via a call into the LOV + OSCs) each time we make an RPC.
47 */
Peng Taod7e09d02013-05-02 16:46:55 +080048int cl_init_ea_size(struct obd_export *md_exp, struct obd_export *dt_exp)
49{
50 struct lov_stripe_md lsm = { .lsm_magic = LOV_MAGIC_V3 };
51 __u32 valsize = sizeof(struct lov_desc);
52 int rc, easize, def_easize, cookiesize;
53 struct lov_desc desc;
Brian Behlendorf44779342014-04-27 13:06:47 -040054 __u16 stripes, def_stripes;
Peng Taod7e09d02013-05-02 16:46:55 +080055
56 rc = obd_get_info(NULL, dt_exp, sizeof(KEY_LOVDESC), KEY_LOVDESC,
57 &valsize, &desc, NULL);
58 if (rc)
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +080059 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +080060
Anil Belur2df2b3a2014-06-18 18:23:51 +100061 stripes = min_t(__u32, desc.ld_tgt_count, LOV_MAX_STRIPE_COUNT);
Peng Taod7e09d02013-05-02 16:46:55 +080062 lsm.lsm_stripe_count = stripes;
63 easize = obd_size_diskmd(dt_exp, &lsm);
64
Brian Behlendorf44779342014-04-27 13:06:47 -040065 def_stripes = min_t(__u32, desc.ld_default_stripe_count,
66 LOV_MAX_STRIPE_COUNT);
67 lsm.lsm_stripe_count = def_stripes;
Peng Taod7e09d02013-05-02 16:46:55 +080068 def_easize = obd_size_diskmd(dt_exp, &lsm);
69
70 cookiesize = stripes * sizeof(struct llog_cookie);
71
Brian Behlendorf44779342014-04-27 13:06:47 -040072 /* default cookiesize is 0 because from 2.4 server doesn't send
Oleg Drokinec9a1ac2016-02-24 22:00:28 -050073 * llog cookies to client.
74 */
Brian Behlendorf44779342014-04-27 13:06:47 -040075 CDEBUG(D_HA,
76 "updating def/max_easize: %d/%d def/max_cookiesize: 0/%d\n",
77 def_easize, easize, cookiesize);
Peng Taod7e09d02013-05-02 16:46:55 +080078
Brian Behlendorf44779342014-04-27 13:06:47 -040079 rc = md_init_ea_size(md_exp, easize, def_easize, cookiesize, 0);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +080080 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +080081}
82
83/**
84 * This function is used as an upcall-callback hooked by liblustre and llite
85 * clients into obd_notify() listeners chain to handle notifications about
86 * change of import connect_flags. See llu_fsswop_mount() and
87 * lustre_common_fill_super().
88 */
89int cl_ocd_update(struct obd_device *host,
90 struct obd_device *watched,
91 enum obd_notify_event ev, void *owner, void *data)
92{
93 struct lustre_client_ocd *lco;
94 struct client_obd *cli;
95 __u64 flags;
96 int result;
97
Yang Sheng2323d6d2016-06-20 16:55:42 -040098 if (!strcmp(watched->obd_type->typ_name, LUSTRE_OSC_NAME) &&
99 watched->obd_set_up && !watched->obd_stopping) {
Peng Taod7e09d02013-05-02 16:46:55 +0800100 cli = &watched->u.cli;
101 lco = owner;
102 flags = cli->cl_import->imp_connect_data.ocd_connect_flags;
Greg Kroah-Hartman55f5a822014-07-12 20:26:07 -0700103 CDEBUG(D_SUPER, "Changing connect_flags: %#llx -> %#llx\n",
Peng Taod7e09d02013-05-02 16:46:55 +0800104 lco->lco_flags, flags);
105 mutex_lock(&lco->lco_lock);
106 lco->lco_flags &= flags;
107 /* for each osc event update ea size */
108 if (lco->lco_dt_exp)
109 cl_init_ea_size(lco->lco_md_exp, lco->lco_dt_exp);
110
111 mutex_unlock(&lco->lco_lock);
112 result = 0;
113 } else {
Yang Sheng2323d6d2016-06-20 16:55:42 -0400114 CERROR("unexpected notification from %s %s (setup:%d,stopping:%d)!\n",
Peng Taod7e09d02013-05-02 16:46:55 +0800115 watched->obd_type->typ_name,
Yang Sheng2323d6d2016-06-20 16:55:42 -0400116 watched->obd_name, watched->obd_set_up,
117 watched->obd_stopping);
Peng Taod7e09d02013-05-02 16:46:55 +0800118 result = -EINVAL;
119 }
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800120 return result;
Peng Taod7e09d02013-05-02 16:46:55 +0800121}
122
123#define GROUPLOCK_SCOPE "grouplock"
124
125int cl_get_grouplock(struct cl_object *obj, unsigned long gid, int nonblock,
John Hammond98eae5e2016-03-30 19:48:55 -0400126 struct ll_grouplock *cg)
Peng Taod7e09d02013-05-02 16:46:55 +0800127{
128 struct lu_env *env;
129 struct cl_io *io;
130 struct cl_lock *lock;
131 struct cl_lock_descr *descr;
132 __u32 enqflags;
133 int refcheck;
134 int rc;
135
136 env = cl_env_get(&refcheck);
137 if (IS_ERR(env))
138 return PTR_ERR(env);
139
John Hammond9acc4502016-03-30 19:48:57 -0400140 io = vvp_env_thread_io(env);
Peng Taod7e09d02013-05-02 16:46:55 +0800141 io->ci_obj = obj;
142 io->ci_ignore_layout = 1;
143
144 rc = cl_io_init(env, io, CIT_MISC, io->ci_obj);
Jinshan Xiong06563b52016-03-30 19:48:40 -0400145 if (rc != 0) {
Jinshan Xiong26f98e82016-03-30 19:48:25 -0400146 cl_io_fini(env, io);
147 cl_env_put(env, &refcheck);
Jinshan Xiong48d23e62013-12-03 21:58:48 +0800148 /* Does not make sense to take GL for released layout */
149 if (rc > 0)
150 rc = -ENOTSUPP;
Peng Taod7e09d02013-05-02 16:46:55 +0800151 return rc;
152 }
153
John Hammond9acc4502016-03-30 19:48:57 -0400154 lock = vvp_env_lock(env);
Jinshan Xiong06563b52016-03-30 19:48:40 -0400155 descr = &lock->cll_descr;
Peng Taod7e09d02013-05-02 16:46:55 +0800156 descr->cld_obj = obj;
157 descr->cld_start = 0;
158 descr->cld_end = CL_PAGE_EOF;
159 descr->cld_gid = gid;
160 descr->cld_mode = CLM_GROUP;
161
162 enqflags = CEF_MUST | (nonblock ? CEF_NONBLOCK : 0);
163 descr->cld_enq_flags = enqflags;
164
Jinshan Xiong06563b52016-03-30 19:48:40 -0400165 rc = cl_lock_request(env, io, lock);
166 if (rc < 0) {
Peng Taod7e09d02013-05-02 16:46:55 +0800167 cl_io_fini(env, io);
168 cl_env_put(env, &refcheck);
Jinshan Xiong06563b52016-03-30 19:48:40 -0400169 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +0800170 }
171
John Hammond98eae5e2016-03-30 19:48:55 -0400172 cg->lg_env = cl_env_get(&refcheck);
173 cg->lg_io = io;
174 cg->lg_lock = lock;
175 cg->lg_gid = gid;
176 LASSERT(cg->lg_env == env);
Peng Taod7e09d02013-05-02 16:46:55 +0800177
178 cl_env_unplant(env, &refcheck);
179 return 0;
180}
181
John Hammond98eae5e2016-03-30 19:48:55 -0400182void cl_put_grouplock(struct ll_grouplock *cg)
Peng Taod7e09d02013-05-02 16:46:55 +0800183{
John Hammond98eae5e2016-03-30 19:48:55 -0400184 struct lu_env *env = cg->lg_env;
185 struct cl_io *io = cg->lg_io;
186 struct cl_lock *lock = cg->lg_lock;
Peng Taod7e09d02013-05-02 16:46:55 +0800187 int refcheck;
188
John Hammond98eae5e2016-03-30 19:48:55 -0400189 LASSERT(cg->lg_env);
190 LASSERT(cg->lg_gid);
Peng Taod7e09d02013-05-02 16:46:55 +0800191
192 cl_env_implant(env, &refcheck);
193 cl_env_put(env, &refcheck);
194
Jinshan Xiong06563b52016-03-30 19:48:40 -0400195 cl_lock_release(env, lock);
Peng Taod7e09d02013-05-02 16:46:55 +0800196 cl_io_fini(env, io);
197 cl_env_put(env, NULL);
198}