Whamcloud - gitweb
LU-3105 osd: remove capa related stuff from servers
[fs/lustre-release.git] / lustre / ofd / ofd_io.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) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2012, 2014 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  * lustre/ofd/ofd_io.c
33  *
34  * This file provides functions to handle IO requests from clients and
35  * also LFSCK routines to check parent file identifier (PFID) consistency.
36  *
37  * Author: Alexey Zhuravlev <alexey.zhuravlev@intel.com>
38  * Author: Fan Yong <fan.yong@intel.com>
39  */
40
41 #define DEBUG_SUBSYSTEM S_FILTER
42
43 #include "ofd_internal.h"
44
45 struct ofd_inconsistency_item {
46         struct list_head         oii_list;
47         struct ofd_object       *oii_obj;
48         struct lu_fid            oii_pfid;
49 };
50
51 /**
52  * Verify single object for parent FID consistency.
53  *
54  * Part of LFSCK processing which checks single object PFID stored in extended
55  * attribute (XATTR) against real FID of MDT parent object received by LFSCK.
56  * This verifies that the OST object is being referenced by only a single MDT
57  * object.
58  *
59  * \param[in] env       execution environment
60  * \param[in] ofd       OFD device
61  * \param[in] oii       object-related local data
62  * \param[in] lr        LFSCK request data
63  */
64 static void ofd_inconsistency_verify_one(const struct lu_env *env,
65                                          struct ofd_device *ofd,
66                                          struct ofd_inconsistency_item *oii,
67                                          struct lfsck_request *lr)
68 {
69         struct ofd_object       *fo     = oii->oii_obj;
70         struct lu_fid           *pfid   = &fo->ofo_pfid;
71         int                      rc;
72
73         LASSERT(fo->ofo_pfid_checking);
74         LASSERT(!fo->ofo_pfid_verified);
75
76         lr->lr_fid = fo->ofo_header.loh_fid; /* OST-object itself FID. */
77         lr->lr_fid2 = oii->oii_pfid; /* client given PFID. */
78         lr->lr_fid3 = *pfid; /* OST local stored PFID. */
79
80         rc = lfsck_in_notify(env, ofd->ofd_osd, lr, NULL);
81         ofd_write_lock(env, fo);
82         switch (lr->lr_status) {
83         case LPVS_INIT:
84                 LASSERT(rc <= 0);
85
86                 if (rc < 0)
87                         CDEBUG(D_LFSCK, "%s: fail to verify OST local stored "
88                                "PFID xattr for "DFID", the client given PFID "
89                                DFID", OST local stored PFID "DFID": rc = %d\n",
90                                ofd_name(ofd), PFID(&fo->ofo_header.loh_fid),
91                                PFID(&oii->oii_pfid), PFID(pfid), rc);
92                 else
93                         fo->ofo_pfid_verified = 1;
94                 break;
95         case LPVS_INCONSISTENT:
96                 LASSERT(rc != 0);
97
98                 ofd->ofd_inconsistency_self_detected++;
99                 if (rc < 0)
100                         CDEBUG(D_LFSCK, "%s: fail to verify the client given "
101                                "PFID for "DFID", the client given PFID "DFID
102                                ", local stored PFID "DFID": rc = %d\n",
103                                ofd_name(ofd), PFID(&fo->ofo_header.loh_fid),
104                                PFID(&oii->oii_pfid), PFID(pfid), rc);
105                 else
106                         CDEBUG(D_LFSCK, "%s: both the client given PFID and "
107                                "the OST local stored PFID are stale for the "
108                                "OST-object "DFID", client given PFID is "DFID
109                                ", local stored PFID is "DFID"\n",
110                                ofd_name(ofd), PFID(&fo->ofo_header.loh_fid),
111                                PFID(&oii->oii_pfid), PFID(pfid));
112                 break;
113         case LPVS_INCONSISTENT_TOFIX:
114                 ofd->ofd_inconsistency_self_detected++;
115                 if (rc == 0) {
116                         ofd->ofd_inconsistency_self_repaired++;
117                         CDEBUG(D_LFSCK, "%s: fixed the staled OST PFID xattr "
118                                "for "DFID", with the client given PFID "DFID
119                                ", the old stored PFID "DFID"\n",
120                                ofd_name(ofd), PFID(&fo->ofo_header.loh_fid),
121                                PFID(&oii->oii_pfid), PFID(pfid));
122                 } else if (rc < 0) {
123                         CDEBUG(D_LFSCK, "%s: fail to fix the OST PFID xattr "
124                                "for "DFID", client given PFID "DFID", local "
125                                "stored PFID "DFID": rc = %d\n",
126                                ofd_name(ofd), PFID(&fo->ofo_header.loh_fid),
127                                PFID(&oii->oii_pfid), PFID(pfid), rc);
128                 }
129                 *pfid = oii->oii_pfid;
130                 fo->ofo_pfid_verified = 1;
131                 break;
132         default:
133                 break;
134         }
135         fo->ofo_pfid_checking = 0;
136         ofd_write_unlock(env, fo);
137
138         lu_object_put(env, &fo->ofo_obj.do_lu);
139         OBD_FREE_PTR(oii);
140 }
141
142 /**
143  * Verification thread to check parent FID consistency.
144  *
145  * Kernel thread to check consistency of parent FID for any
146  * new item added for checking by ofd_add_inconsistency_item().
147  *
148  * \param[in] args      OFD device
149  *
150  * \retval              0 on successful thread termination
151  * \retval              negative value if thread can't start
152  */
153 static int ofd_inconsistency_verification_main(void *args)
154 {
155         struct lu_env                  env;
156         struct ofd_device             *ofd    = args;
157         struct ptlrpc_thread          *thread = &ofd->ofd_inconsistency_thread;
158         struct ofd_inconsistency_item *oii;
159         struct lfsck_request          *lr     = NULL;
160         struct l_wait_info             lwi    = { 0 };
161         int                            rc;
162         ENTRY;
163
164         rc = lu_env_init(&env, LCT_DT_THREAD);
165         spin_lock(&ofd->ofd_inconsistency_lock);
166         thread_set_flags(thread, rc != 0 ? SVC_STOPPED : SVC_RUNNING);
167         wake_up_all(&thread->t_ctl_waitq);
168         spin_unlock(&ofd->ofd_inconsistency_lock);
169         if (rc != 0)
170                 RETURN(rc);
171
172         OBD_ALLOC_PTR(lr);
173         if (unlikely(lr == NULL))
174                 GOTO(out, rc = -ENOMEM);
175
176         lr->lr_event = LE_PAIRS_VERIFY;
177         lr->lr_active = LFSCK_TYPE_LAYOUT;
178
179         spin_lock(&ofd->ofd_inconsistency_lock);
180         while (1) {
181                 if (unlikely(!thread_is_running(thread)))
182                         break;
183
184                 while (!list_empty(&ofd->ofd_inconsistency_list)) {
185                         oii = list_entry(ofd->ofd_inconsistency_list.next,
186                                          struct ofd_inconsistency_item,
187                                          oii_list);
188                         list_del_init(&oii->oii_list);
189                         spin_unlock(&ofd->ofd_inconsistency_lock);
190                         ofd_inconsistency_verify_one(&env, ofd, oii, lr);
191                         spin_lock(&ofd->ofd_inconsistency_lock);
192                 }
193
194                 spin_unlock(&ofd->ofd_inconsistency_lock);
195                 l_wait_event(thread->t_ctl_waitq,
196                              !list_empty(&ofd->ofd_inconsistency_list) ||
197                              !thread_is_running(thread),
198                              &lwi);
199                 spin_lock(&ofd->ofd_inconsistency_lock);
200         }
201
202         while (!list_empty(&ofd->ofd_inconsistency_list)) {
203                 struct ofd_object *fo;
204
205                 oii = list_entry(ofd->ofd_inconsistency_list.next,
206                                  struct ofd_inconsistency_item,
207                                  oii_list);
208                 list_del_init(&oii->oii_list);
209                 fo = oii->oii_obj;
210                 spin_unlock(&ofd->ofd_inconsistency_lock);
211
212                 ofd_write_lock(&env, fo);
213                 fo->ofo_pfid_checking = 0;
214                 ofd_write_unlock(&env, fo);
215
216                 lu_object_put(&env, &fo->ofo_obj.do_lu);
217                 OBD_FREE_PTR(oii);
218                 spin_lock(&ofd->ofd_inconsistency_lock);
219         }
220
221         OBD_FREE_PTR(lr);
222
223         GOTO(out, rc = 0);
224
225 out:
226         thread_set_flags(thread, SVC_STOPPED);
227         wake_up_all(&thread->t_ctl_waitq);
228         spin_unlock(&ofd->ofd_inconsistency_lock);
229         lu_env_fini(&env);
230
231         return rc;
232 }
233
234 /**
235  * Start parent FID verification thread.
236  *
237  * See ofd_inconsistency_verification_main().
238  *
239  * \param[in] ofd       OFD device
240  *
241  * \retval              0 on successful start of thread
242  * \retval              negative value on error
243  */
244 int ofd_start_inconsistency_verification_thread(struct ofd_device *ofd)
245 {
246         struct ptlrpc_thread    *thread = &ofd->ofd_inconsistency_thread;
247         struct l_wait_info       lwi    = { 0 };
248         struct task_struct      *task;
249         int                      rc;
250
251         spin_lock(&ofd->ofd_inconsistency_lock);
252         if (unlikely(thread_is_running(thread))) {
253                 spin_unlock(&ofd->ofd_inconsistency_lock);
254
255                 return -EALREADY;
256         }
257
258         thread_set_flags(thread, 0);
259         spin_unlock(&ofd->ofd_inconsistency_lock);
260         task = kthread_run(ofd_inconsistency_verification_main, ofd,
261                            "inconsistency_verification");
262         if (IS_ERR(task)) {
263                 rc = PTR_ERR(task);
264                 CERROR("%s: cannot start self_repair thread: rc = %d\n",
265                        ofd_name(ofd), rc);
266         } else {
267                 rc = 0;
268                 l_wait_event(thread->t_ctl_waitq,
269                              thread_is_running(thread) ||
270                              thread_is_stopped(thread),
271                              &lwi);
272         }
273
274         return rc;
275 }
276
277 /**
278  * Stop parent FID verification thread.
279  *
280  * \param[in] ofd       OFD device
281  *
282  * \retval              0 on successful start of thread
283  * \retval              -EALREADY if thread is already stopped
284  */
285 int ofd_stop_inconsistency_verification_thread(struct ofd_device *ofd)
286 {
287         struct ptlrpc_thread    *thread = &ofd->ofd_inconsistency_thread;
288         struct l_wait_info       lwi    = { 0 };
289
290         spin_lock(&ofd->ofd_inconsistency_lock);
291         if (thread_is_init(thread) || thread_is_stopped(thread)) {
292                 spin_unlock(&ofd->ofd_inconsistency_lock);
293
294                 return -EALREADY;
295         }
296
297         thread_set_flags(thread, SVC_STOPPING);
298         spin_unlock(&ofd->ofd_inconsistency_lock);
299         wake_up_all(&thread->t_ctl_waitq);
300         l_wait_event(thread->t_ctl_waitq,
301                      thread_is_stopped(thread),
302                      &lwi);
303
304         return 0;
305 }
306
307 /**
308  * Add new item for parent FID verification.
309  *
310  * Prepare new verification item and pass it to the dedicated
311  * verification thread for further processing.
312  *
313  * \param[in] env       execution environment
314  * \param[in] fo        OFD object
315  * \param[in] oa        OBDO structure with PFID
316  */
317 static void ofd_add_inconsistency_item(const struct lu_env *env,
318                                        struct ofd_object *fo, struct obdo *oa)
319 {
320         struct ofd_device               *ofd    = ofd_obj2dev(fo);
321         struct ofd_inconsistency_item   *oii;
322         bool                             wakeup = false;
323
324         OBD_ALLOC_PTR(oii);
325         if (oii == NULL)
326                 return;
327
328         INIT_LIST_HEAD(&oii->oii_list);
329         lu_object_get(&fo->ofo_obj.do_lu);
330         oii->oii_obj = fo;
331         oii->oii_pfid.f_seq = oa->o_parent_seq;
332         oii->oii_pfid.f_oid = oa->o_parent_oid;
333         oii->oii_pfid.f_stripe_idx = oa->o_stripe_idx;
334
335         spin_lock(&ofd->ofd_inconsistency_lock);
336         if (fo->ofo_pfid_checking || fo->ofo_pfid_verified) {
337                 spin_unlock(&ofd->ofd_inconsistency_lock);
338                 OBD_FREE_PTR(oii);
339
340                 return;
341         }
342
343         fo->ofo_pfid_checking = 1;
344         if (list_empty(&ofd->ofd_inconsistency_list))
345                 wakeup = true;
346         list_add_tail(&oii->oii_list, &ofd->ofd_inconsistency_list);
347         spin_unlock(&ofd->ofd_inconsistency_lock);
348         if (wakeup)
349                 wake_up_all(&ofd->ofd_inconsistency_thread.t_ctl_waitq);
350
351         /* XXX: When the found inconsistency exceeds some threshold,
352          *      we can trigger the LFSCK to scan part of the system
353          *      or the whole system, which depends on how to define
354          *      the threshold, a simple way maybe like that: define
355          *      the absolute value of how many inconsisteny allowed
356          *      to be repaired via self detect/repair mechanism, if
357          *      exceeded, then trigger the LFSCK to scan the layout
358          *      inconsistency within the whole system. */
359 }
360
361 /**
362  * Verify parent FID of an object.
363  *
364  * Check the parent FID is sane and start extended
365  * verification procedure otherwise.
366  *
367  * \param[in] env       execution environment
368  * \param[in] fo        OFD object
369  * \param[in] oa        OBDO structure with PFID
370  *
371  * \retval              0 on successful verification
372  * \retval              -EINPROGRESS if PFID is being repaired
373  * \retval              -EPERM if PFID was verified but still insane
374  */
375 int ofd_verify_ff(const struct lu_env *env, struct ofd_object *fo,
376                   struct obdo *oa)
377 {
378         struct lu_fid   *pfid   = &fo->ofo_pfid;
379         int              rc     = 0;
380         ENTRY;
381
382         if (fid_is_sane(pfid)) {
383                 if (likely(oa->o_parent_seq == pfid->f_seq &&
384                            oa->o_parent_oid == pfid->f_oid &&
385                            oa->o_stripe_idx == pfid->f_stripe_idx))
386                         RETURN(0);
387
388                 if (fo->ofo_pfid_verified)
389                         RETURN(-EPERM);
390         }
391
392         /* The OST-object may be inconsistent, and we need further verification.
393          * To avoid block the RPC service thread, return -EINPROGRESS to client
394          * and make it retry later. */
395         if (fo->ofo_pfid_checking)
396                 RETURN(-EINPROGRESS);
397
398         rc = ofd_object_ff_load(env, fo);
399         if (rc == -ENODATA)
400                 RETURN(0);
401
402         if (rc < 0)
403                 RETURN(rc);
404
405         if (likely(oa->o_parent_seq == pfid->f_seq &&
406                    oa->o_parent_oid == pfid->f_oid &&
407                    oa->o_stripe_idx == pfid->f_stripe_idx))
408                 RETURN(0);
409
410         /* Push it to the dedicated thread for further verification. */
411         ofd_add_inconsistency_item(env, fo, oa);
412
413         RETURN(-EINPROGRESS);
414 }
415
416 /**
417  * Prepare buffers for read request processing.
418  *
419  * This function converts remote buffers from client to local buffers
420  * and prepares the latter.
421  *
422  * \param[in] env       execution environment
423  * \param[in] exp       OBD export of client
424  * \param[in] ofd       OFD device
425  * \param[in] fid       FID of object
426  * \param[in] la        object attributes
427  * \param[in] oa        OBDO structure from client
428  * \param[in] niocount  number of remote buffers
429  * \param[in] rnb       remote buffers
430  * \param[in] nr_local  number of local buffers
431  * \param[in] lnb       local buffers
432  * \param[in] jobid     job ID name
433  *
434  * \retval              0 on successful prepare
435  * \retval              negative value on error
436  */
437 static int ofd_preprw_read(const struct lu_env *env, struct obd_export *exp,
438                            struct ofd_device *ofd, const struct lu_fid *fid,
439                            struct lu_attr *la, struct obdo *oa, int niocount,
440                            struct niobuf_remote *rnb, int *nr_local,
441                            struct niobuf_local *lnb, char *jobid)
442 {
443         struct ofd_object       *fo;
444         int                      i, j, rc, tot_bytes = 0;
445
446         ENTRY;
447         LASSERT(env != NULL);
448
449         fo = ofd_object_find(env, ofd, fid);
450         if (IS_ERR(fo))
451                 RETURN(PTR_ERR(fo));
452         LASSERT(fo != NULL);
453
454         ofd_read_lock(env, fo);
455         if (!ofd_object_exists(fo))
456                 GOTO(unlock, rc = -ENOENT);
457
458         if (ofd->ofd_lfsck_verify_pfid && oa->o_valid & OBD_MD_FLFID) {
459                 rc = ofd_verify_ff(env, fo, oa);
460                 if (rc != 0)
461                         GOTO(unlock, rc);
462         }
463
464         *nr_local = 0;
465         for (i = 0, j = 0; i < niocount; i++) {
466                 rc = dt_bufs_get(env, ofd_object_child(fo), rnb + i,
467                                  lnb + j, 0);
468                 if (unlikely(rc < 0))
469                         GOTO(buf_put, rc);
470                 LASSERT(rc <= PTLRPC_MAX_BRW_PAGES);
471                 /* correct index for local buffers to continue with */
472                 j += rc;
473                 *nr_local += rc;
474                 LASSERT(j <= PTLRPC_MAX_BRW_PAGES);
475                 tot_bytes += rnb[i].rnb_len;
476         }
477
478         LASSERT(*nr_local > 0 && *nr_local <= PTLRPC_MAX_BRW_PAGES);
479         rc = dt_attr_get(env, ofd_object_child(fo), la);
480         if (unlikely(rc))
481                 GOTO(buf_put, rc);
482
483         rc = dt_read_prep(env, ofd_object_child(fo), lnb, *nr_local);
484         if (unlikely(rc))
485                 GOTO(buf_put, rc);
486
487         ofd_counter_incr(exp, LPROC_OFD_STATS_READ, jobid, tot_bytes);
488         RETURN(0);
489
490 buf_put:
491         dt_bufs_put(env, ofd_object_child(fo), lnb, *nr_local);
492 unlock:
493         ofd_read_unlock(env, fo);
494         ofd_object_put(env, fo);
495         return rc;
496 }
497
498 /**
499  * Prepare buffers for write request processing.
500  *
501  * This function converts remote buffers from client to local buffers
502  * and prepares the latter. If there is recovery in progress and required
503  * object is missing then it can be re-created before write.
504  *
505  * \param[in] env       execution environment
506  * \param[in] exp       OBD export of client
507  * \param[in] ofd       OFD device
508  * \param[in] fid       FID of object
509  * \param[in] la        object attributes
510  * \param[in] oa        OBDO structure from client
511  * \param[in] objcount  always 1
512  * \param[in] obj       object data
513  * \param[in] rnb       remote buffers
514  * \param[in] nr_local  number of local buffers
515  * \param[in] lnb       local buffers
516  * \param[in] jobid     job ID name
517  *
518  * \retval              0 on successful prepare
519  * \retval              negative value on error
520  */
521 static int ofd_preprw_write(const struct lu_env *env, struct obd_export *exp,
522                             struct ofd_device *ofd, const struct lu_fid *fid,
523                             struct lu_attr *la, struct obdo *oa,
524                             int objcount, struct obd_ioobj *obj,
525                             struct niobuf_remote *rnb, int *nr_local,
526                             struct niobuf_local *lnb, char *jobid)
527 {
528         struct ofd_object       *fo;
529         int                      i, j, k, rc = 0, tot_bytes = 0;
530
531         ENTRY;
532         LASSERT(env != NULL);
533         LASSERT(objcount == 1);
534
535         if (unlikely(exp->exp_obd->obd_recovering)) {
536                 u64 seq = fid_seq(fid);
537                 u64 oid = fid_oid(fid);
538                 struct ofd_seq *oseq;
539
540                 oseq = ofd_seq_load(env, ofd, seq);
541                 if (IS_ERR(oseq)) {
542                         CERROR("%s: Can't find FID Sequence "LPX64": rc = %d\n",
543                                ofd_name(ofd), seq, (int)PTR_ERR(oseq));
544                         GOTO(out, rc = -EINVAL);
545                 }
546
547                 if (oid > ofd_seq_last_oid(oseq)) {
548                         int sync = 0;
549                         int diff;
550
551                         mutex_lock(&oseq->os_create_lock);
552                         diff = oid - ofd_seq_last_oid(oseq);
553
554                         /* Do sync create if the seq is about to used up */
555                         if (fid_seq_is_idif(seq) || fid_seq_is_mdt0(seq)) {
556                                 if (unlikely(oid >= IDIF_MAX_OID - 1))
557                                         sync = 1;
558                         } else if (fid_seq_is_norm(seq)) {
559                                 if (unlikely(oid >=
560                                              LUSTRE_DATA_SEQ_MAX_WIDTH - 1))
561                                         sync = 1;
562                         } else {
563                                 CERROR("%s : invalid o_seq "DOSTID"\n",
564                                        ofd_name(ofd), POSTID(&oa->o_oi));
565                                 mutex_unlock(&oseq->os_create_lock);
566                                 ofd_seq_put(env, oseq);
567                                 GOTO(out, rc = -EINVAL);
568                         }
569
570                         while (diff > 0) {
571                                 u64 next_id = ofd_seq_last_oid(oseq) + 1;
572                                 int count = ofd_precreate_batch(ofd, diff);
573
574                                 rc = ofd_precreate_objects(env, ofd, next_id,
575                                                            oseq, count, sync);
576                                 if (rc < 0) {
577                                         mutex_unlock(&oseq->os_create_lock);
578                                         ofd_seq_put(env, oseq);
579                                         GOTO(out, rc);
580                                 }
581
582                                 diff -= rc;
583                         }
584
585                         mutex_unlock(&oseq->os_create_lock);
586                 }
587
588                 ofd_seq_put(env, oseq);
589         }
590
591         fo = ofd_object_find(env, ofd, fid);
592         if (IS_ERR(fo))
593                 GOTO(out, rc = PTR_ERR(fo));
594         LASSERT(fo != NULL);
595
596         ofd_read_lock(env, fo);
597         if (!ofd_object_exists(fo)) {
598                 CERROR("%s: BRW to missing obj "DOSTID"\n",
599                        exp->exp_obd->obd_name, POSTID(&obj->ioo_oid));
600                 ofd_read_unlock(env, fo);
601                 ofd_object_put(env, fo);
602                 GOTO(out, rc = -ENOENT);
603         }
604
605         if (ofd->ofd_lfsck_verify_pfid && oa->o_valid & OBD_MD_FLFID) {
606                 rc = ofd_verify_ff(env, fo, oa);
607                 if (rc != 0) {
608                         ofd_read_unlock(env, fo);
609                         ofd_object_put(env, fo);
610                         GOTO(out, rc);
611                 }
612         }
613
614         /* Process incoming grant info, set OBD_BRW_GRANTED flag and grant some
615          * space back if possible */
616         ofd_grant_prepare_write(env, exp, oa, rnb, obj->ioo_bufcnt);
617
618         /* parse remote buffers to local buffers and prepare the latter */
619         *nr_local = 0;
620         for (i = 0, j = 0; i < obj->ioo_bufcnt; i++) {
621                 rc = dt_bufs_get(env, ofd_object_child(fo),
622                                  rnb + i, lnb + j, 1);
623                 if (unlikely(rc < 0))
624                         GOTO(err, rc);
625                 LASSERT(rc <= PTLRPC_MAX_BRW_PAGES);
626                 /* correct index for local buffers to continue with */
627                 for (k = 0; k < rc; k++) {
628                         lnb[j+k].lnb_flags = rnb[i].rnb_flags;
629                         if (!(rnb[i].rnb_flags & OBD_BRW_GRANTED))
630                                 lnb[j+k].lnb_rc = -ENOSPC;
631
632                         /* remote client can't break through quota */
633                         if (exp_connect_rmtclient(exp))
634                                 lnb[j+k].lnb_flags &= ~OBD_BRW_NOQUOTA;
635                 }
636                 j += rc;
637                 *nr_local += rc;
638                 LASSERT(j <= PTLRPC_MAX_BRW_PAGES);
639                 tot_bytes += rnb[i].rnb_len;
640         }
641         LASSERT(*nr_local > 0 && *nr_local <= PTLRPC_MAX_BRW_PAGES);
642
643         rc = dt_write_prep(env, ofd_object_child(fo), lnb, *nr_local);
644         if (unlikely(rc != 0))
645                 GOTO(err, rc);
646
647         ofd_counter_incr(exp, LPROC_OFD_STATS_WRITE, jobid, tot_bytes);
648         RETURN(0);
649 err:
650         dt_bufs_put(env, ofd_object_child(fo), lnb, *nr_local);
651         ofd_read_unlock(env, fo);
652         /* ofd_grant_prepare_write() was called, so we must commit */
653         ofd_grant_commit(env, exp, rc);
654 out:
655         /* let's still process incoming grant information packed in the oa,
656          * but without enforcing grant since we won't proceed with the write.
657          * Just like a read request actually. */
658         ofd_grant_prepare_read(env, exp, oa);
659         return rc;
660 }
661
662 /**
663  * Prepare bulk IO requests for processing.
664  *
665  * This function does initial checks of IO and calls corresponding
666  * functions for read/write processing.
667  *
668  * \param[in] env       execution environment
669  * \param[in] cmd       IO type (read/write)
670  * \param[in] exp       OBD export of client
671  * \param[in] oa        OBDO structure from request
672  * \param[in] objcount  always 1
673  * \param[in] obj       object data
674  * \param[in] rnb       remote buffers
675  * \param[in] nr_local  number of local buffers
676  * \param[in] lnb       local buffers
677  * \param[in] oti       request data from OST
678  *
679  * \retval              0 on successful prepare
680  * \retval              negative value on error
681  */
682 int ofd_preprw(const struct lu_env *env, int cmd, struct obd_export *exp,
683                struct obdo *oa, int objcount, struct obd_ioobj *obj,
684                struct niobuf_remote *rnb, int *nr_local,
685                struct niobuf_local *lnb, struct obd_trans_info *oti)
686 {
687         struct tgt_session_info *tsi = tgt_ses_info(env);
688         struct ofd_device       *ofd = ofd_exp(exp);
689         struct ofd_thread_info  *info;
690         char                    *jobid;
691         const struct lu_fid     *fid = &oa->o_oi.oi_fid;
692         int                      rc = 0;
693
694         if (*nr_local > PTLRPC_MAX_BRW_PAGES) {
695                 CERROR("%s: bulk has too many pages %d, which exceeds the"
696                        "maximum pages per RPC of %d\n",
697                        exp->exp_obd->obd_name, *nr_local, PTLRPC_MAX_BRW_PAGES);
698                 RETURN(-EPROTO);
699         }
700
701         if (tgt_ses_req(tsi) == NULL) { /* echo client case */
702                 LASSERT(oti != NULL);
703                 info = ofd_info_init(env, exp);
704                 ofd_oti2info(info, oti);
705                 jobid = NULL;
706         } else {
707                 info = tsi2ofd_info(tsi);
708                 jobid = tsi->tsi_jobid;
709         }
710
711         LASSERT(oa != NULL);
712
713         if (OBD_FAIL_CHECK(OBD_FAIL_OST_ENOENT)) {
714                 struct ofd_seq          *oseq;
715
716                 oseq = ofd_seq_load(env, ofd, ostid_seq(&oa->o_oi));
717                 if (IS_ERR(oseq)) {
718                         CERROR("%s: Can not find seq for "DOSTID
719                                ": rc = %ld\n", ofd_name(ofd), POSTID(&oa->o_oi),
720                                PTR_ERR(oseq));
721                         RETURN(-EINVAL);
722                 }
723
724                 if (oseq->os_destroys_in_progress == 0) {
725                         /* don't fail lookups for orphan recovery, it causes
726                          * later LBUGs when objects still exist during
727                          * precreate */
728                         ofd_seq_put(env, oseq);
729                         RETURN(-ENOENT);
730                 }
731                 ofd_seq_put(env, oseq);
732         }
733
734         LASSERT(objcount == 1);
735         LASSERT(obj->ioo_bufcnt > 0);
736
737         if (cmd == OBD_BRW_WRITE) {
738                 la_from_obdo(&info->fti_attr, oa, OBD_MD_FLGETATTR);
739                 rc = ofd_preprw_write(env, exp, ofd, fid, &info->fti_attr, oa,
740                                       objcount, obj, rnb, nr_local, lnb, jobid);
741         } else if (cmd == OBD_BRW_READ) {
742                 ofd_grant_prepare_read(env, exp, oa);
743                 rc = ofd_preprw_read(env, exp, ofd, fid, &info->fti_attr, oa,
744                                      obj->ioo_bufcnt, rnb, nr_local, lnb,
745                                      jobid);
746                 obdo_from_la(oa, &info->fti_attr, LA_ATIME);
747         } else {
748                 CERROR("%s: wrong cmd %d received!\n",
749                        exp->exp_obd->obd_name, cmd);
750                 rc = -EPROTO;
751         }
752         RETURN(rc);
753 }
754
755 /**
756  * Drop reference on local buffers for read bulk IO.
757  *
758  * This will free all local buffers use by this read request.
759  *
760  * \param[in] env       execution environment
761  * \param[in] ofd       OFD device
762  * \param[in] fid       object FID
763  * \param[in] objcount  always 1
764  * \param[in] niocount  number of local buffers
765  * \param[in] lnb       local buffers
766  *
767  * \retval              0 on successful execution
768  * \retval              negative value on error
769  */
770 static int
771 ofd_commitrw_read(const struct lu_env *env, struct ofd_device *ofd,
772                   const struct lu_fid *fid, int objcount, int niocount,
773                   struct niobuf_local *lnb)
774 {
775         struct ofd_object *fo;
776
777         ENTRY;
778
779         LASSERT(niocount > 0);
780
781         fo = ofd_object_find(env, ofd, fid);
782         if (IS_ERR(fo))
783                 RETURN(PTR_ERR(fo));
784         LASSERT(fo != NULL);
785         LASSERT(ofd_object_exists(fo));
786         dt_bufs_put(env, ofd_object_child(fo), lnb, niocount);
787
788         ofd_read_unlock(env, fo);
789         ofd_object_put(env, fo);
790         /* second put is pair to object_get in ofd_preprw_read */
791         ofd_object_put(env, fo);
792
793         RETURN(0);
794 }
795
796 /**
797  * Set attributes of object during write bulk IO processing.
798  *
799  * Change object attributes and write parent FID into extended
800  * attributes when needed.
801  *
802  * \param[in] env       execution environment
803  * \param[in] ofd       OFD device
804  * \param[in] ofd_obj   OFD object
805  * \param[in] la        object attributes
806  * \param[in] ff        parent FID
807  *
808  * \retval              0 on successful attributes update
809  * \retval              negative value on error
810  */
811 static int
812 ofd_write_attr_set(const struct lu_env *env, struct ofd_device *ofd,
813                    struct ofd_object *ofd_obj, struct lu_attr *la,
814                    struct filter_fid *ff)
815 {
816         struct ofd_thread_info  *info = ofd_info(env);
817         __u64                    valid = la->la_valid;
818         int                      rc;
819         struct thandle          *th;
820         struct dt_object        *dt_obj;
821         int                      ff_needed = 0;
822
823         ENTRY;
824
825         LASSERT(la);
826
827         dt_obj = ofd_object_child(ofd_obj);
828         LASSERT(dt_obj != NULL);
829
830         la->la_valid &= LA_UID | LA_GID;
831
832         rc = ofd_attr_handle_ugid(env, ofd_obj, la, 0 /* !is_setattr */);
833         if (rc != 0)
834                 GOTO(out, rc);
835
836         if (ff != NULL) {
837                 rc = ofd_object_ff_load(env, ofd_obj);
838                 if (rc == -ENODATA)
839                         ff_needed = 1;
840                 else if (rc < 0)
841                         GOTO(out, rc);
842         }
843
844         if (!la->la_valid && !ff_needed)
845                 /* no attributes to set */
846                 GOTO(out, rc = 0);
847
848         th = ofd_trans_create(env, ofd);
849         if (IS_ERR(th))
850                 GOTO(out, rc = PTR_ERR(th));
851
852         if (la->la_valid) {
853                 rc = dt_declare_attr_set(env, dt_obj, la, th);
854                 if (rc)
855                         GOTO(out_tx, rc);
856         }
857
858         if (ff_needed) {
859                 if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_UNMATCHED_PAIR1))
860                         ff->ff_parent.f_oid = cpu_to_le32(1UL << 31);
861                 if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_UNMATCHED_PAIR2))
862                         ff->ff_parent.f_oid =
863                         cpu_to_le32(le32_to_cpu(ff->ff_parent.f_oid) - 1);
864
865                 info->fti_buf.lb_buf = ff;
866                 info->fti_buf.lb_len = sizeof(*ff);
867                 rc = dt_declare_xattr_set(env, dt_obj, &info->fti_buf,
868                                           XATTR_NAME_FID, 0, th);
869                 if (rc)
870                         GOTO(out_tx, rc);
871         }
872
873         /* We don't need a transno for this operation which will be re-executed
874          * anyway when the OST_WRITE (with a transno assigned) is replayed */
875         rc = dt_trans_start_local(env, ofd->ofd_osd , th);
876         if (rc)
877                 GOTO(out_tx, rc);
878
879         /* set uid/gid */
880         if (la->la_valid) {
881                 rc = dt_attr_set(env, dt_obj, la, th);
882                 if (rc)
883                         GOTO(out_tx, rc);
884         }
885
886         /* set filter fid EA */
887         if (ff_needed) {
888                 if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_NOPFID))
889                         GOTO(out_tx, rc);
890
891                 rc = dt_xattr_set(env, dt_obj, &info->fti_buf, XATTR_NAME_FID,
892                                   0, th);
893                 if (rc == 0) {
894                         ofd_obj->ofo_pfid.f_seq = le64_to_cpu(ff->ff_parent.f_seq);
895                         ofd_obj->ofo_pfid.f_oid = le32_to_cpu(ff->ff_parent.f_oid);
896                         /* Currently, the filter_fid::ff_parent::f_ver is not
897                          * the real parent MDT-object's FID::f_ver, instead it
898                          * is the OST-object index in its parent MDT-object's
899                          * layout EA. */
900                         ofd_obj->ofo_pfid.f_stripe_idx =
901                                         le32_to_cpu(ff->ff_parent.f_stripe_idx);
902                 }
903         }
904
905         GOTO(out_tx, rc);
906
907 out_tx:
908         dt_trans_stop(env, ofd->ofd_osd, th);
909 out:
910         la->la_valid = valid;
911         return rc;
912 }
913
914 struct ofd_soft_sync_callback {
915         struct dt_txn_commit_cb  ossc_cb;
916         struct obd_export       *ossc_exp;
917 };
918
919 /**
920  * Callback function for "soft sync" update.
921  *
922  * Reset fed_soft_sync_count upon committing the "soft_sync" update.
923  * See ofd_soft_sync_cb_add() below for more details on soft sync.
924  *
925  * \param[in] env       execution environment
926  * \param[in] th        transaction handle
927  * \param[in] cb        callback data
928  * \param[in] err       error code
929  */
930 static void ofd_cb_soft_sync(struct lu_env *env, struct thandle *th,
931                              struct dt_txn_commit_cb *cb, int err)
932 {
933         struct ofd_soft_sync_callback   *ossc;
934
935         ossc = container_of(cb, struct ofd_soft_sync_callback, ossc_cb);
936
937         CDEBUG(D_INODE, "export %p soft sync count is reset\n", ossc->ossc_exp);
938         atomic_set(&ossc->ossc_exp->exp_filter_data.fed_soft_sync_count, 0);
939
940         class_export_cb_put(ossc->ossc_exp);
941         OBD_FREE_PTR(ossc);
942 }
943
944 /**
945  * Add callback for "soft sync" processing.
946  *
947  * The "soft sync" mechanism does asynchronous commit when OBD_BRW_SOFT_SYNC
948  * flag is set in client buffers. The intention is for this operation to
949  * commit pages belonging to a client which has "too many" outstanding
950  * unstable pages in its cache. See LU-2139 for details.
951  *
952  * This function adds callback to be called when commit is done.
953  *
954  * \param[in] th        transaction handle
955  * \param[in] exp       OBD export of client
956  *
957  * \retval              0 on successful callback adding
958  * \retval              negative value on error
959  */
960 static int ofd_soft_sync_cb_add(struct thandle *th, struct obd_export *exp)
961 {
962         struct ofd_soft_sync_callback           *ossc;
963         struct dt_txn_commit_cb                 *dcb;
964         int                                      rc;
965
966         OBD_ALLOC_PTR(ossc);
967         if (ossc == NULL)
968                 return -ENOMEM;
969
970         ossc->ossc_exp = class_export_cb_get(exp);
971
972         dcb = &ossc->ossc_cb;
973         dcb->dcb_func = ofd_cb_soft_sync;
974         INIT_LIST_HEAD(&dcb->dcb_linkage);
975         strlcpy(dcb->dcb_name, "ofd_cb_soft_sync", sizeof(dcb->dcb_name));
976
977         rc = dt_trans_cb_add(th, dcb);
978         if (rc) {
979                 class_export_cb_put(exp);
980                 OBD_FREE_PTR(ossc);
981         }
982
983         return rc;
984 }
985
986 /**
987  * Commit bulk IO buffers to the storage.
988  *
989  * This function finalizes write IO processing by writing data to the disk.
990  * That write can be synchronous or asynchronous depending on buffers flags.
991  *
992  * \param[in] env       execution environment
993  * \param[in] exp       OBD export of client
994  * \param[in] ofd       OFD device
995  * \param[in] fid       FID of object
996  * \param[in] la        object attributes
997  * \param[in] ff        parent FID of object
998  * \param[in] objcount  always 1
999  * \param[in] niocount  number of local buffers
1000  * \param[in] lnb       local buffers
1001  * \param[in] old_rc    result of processing at this point
1002  *
1003  * \retval              0 on successful commit
1004  * \retval              negative value on error
1005  */
1006 static int
1007 ofd_commitrw_write(const struct lu_env *env, struct obd_export *exp,
1008                    struct ofd_device *ofd, const struct lu_fid *fid,
1009                    struct lu_attr *la, struct filter_fid *ff, int objcount,
1010                    int niocount, struct niobuf_local *lnb, int old_rc)
1011 {
1012         struct ofd_thread_info  *info = ofd_info(env);
1013         struct ofd_object       *fo;
1014         struct dt_object        *o;
1015         struct thandle          *th;
1016         int                      rc = 0;
1017         int                      retries = 0;
1018         int                      i;
1019         struct filter_export_data *fed = &exp->exp_filter_data;
1020         bool                     soft_sync = false;
1021         bool                     cb_registered = false;
1022
1023         ENTRY;
1024
1025         LASSERT(objcount == 1);
1026
1027         fo = ofd_object_find(env, ofd, fid);
1028         LASSERT(fo != NULL);
1029         LASSERT(ofd_object_exists(fo));
1030
1031         o = ofd_object_child(fo);
1032         LASSERT(o != NULL);
1033
1034         if (old_rc)
1035                 GOTO(out, rc = old_rc);
1036
1037         /*
1038          * The first write to each object must set some attributes.  It is
1039          * important to set the uid/gid before calling
1040          * dt_declare_write_commit() since quota enforcement is now handled in
1041          * declare phases.
1042          */
1043         rc = ofd_write_attr_set(env, ofd, fo, la, ff);
1044         if (rc)
1045                 GOTO(out, rc);
1046
1047         la->la_valid &= LA_ATIME | LA_MTIME | LA_CTIME;
1048
1049 retry:
1050         th = ofd_trans_create(env, ofd);
1051         if (IS_ERR(th))
1052                 GOTO(out, rc = PTR_ERR(th));
1053
1054         th->th_sync |= ofd->ofd_syncjournal;
1055         if (th->th_sync == 0) {
1056                 for (i = 0; i < niocount; i++) {
1057                         if (!(lnb[i].lnb_flags & OBD_BRW_ASYNC)) {
1058                                 th->th_sync = 1;
1059                                 break;
1060                         }
1061                         if (lnb[i].lnb_flags & OBD_BRW_SOFT_SYNC)
1062                                 soft_sync = true;
1063                 }
1064         }
1065
1066         if (OBD_FAIL_CHECK(OBD_FAIL_OST_DQACQ_NET))
1067                 GOTO(out_stop, rc = -EINPROGRESS);
1068
1069         rc = dt_declare_write_commit(env, o, lnb, niocount, th);
1070         if (rc)
1071                 GOTO(out_stop, rc);
1072
1073         if (la->la_valid) {
1074                 /* update [mac]time if needed */
1075                 rc = dt_declare_attr_set(env, o, la, th);
1076                 if (rc)
1077                         GOTO(out_stop, rc);
1078         }
1079
1080         rc = ofd_trans_start(env, ofd, fo, th);
1081         if (rc)
1082                 GOTO(out_stop, rc);
1083
1084         rc = dt_write_commit(env, o, lnb, niocount, th);
1085         if (rc)
1086                 GOTO(out_stop, rc);
1087
1088         if (la->la_valid) {
1089                 rc = dt_attr_set(env, o, la, th);
1090                 if (rc)
1091                         GOTO(out_stop, rc);
1092         }
1093
1094         /* get attr to return */
1095         rc = dt_attr_get(env, o, la);
1096
1097 out_stop:
1098         /* Force commit to make the just-deleted blocks
1099          * reusable. LU-456 */
1100         if (rc == -ENOSPC)
1101                 th->th_sync = 1;
1102
1103         /* do this before trans stop in case commit has finished */
1104         if (!th->th_sync && soft_sync && !cb_registered) {
1105                 ofd_soft_sync_cb_add(th, exp);
1106                 cb_registered = true;
1107         }
1108
1109         ofd_trans_stop(env, ofd, th, rc);
1110         if (rc == -ENOSPC && retries++ < 3) {
1111                 CDEBUG(D_INODE, "retry after force commit, retries:%d\n",
1112                        retries);
1113                 goto retry;
1114         }
1115
1116         if (!soft_sync)
1117                 /* reset fed_soft_sync_count upon non-SOFT_SYNC RPC */
1118                 atomic_set(&fed->fed_soft_sync_count, 0);
1119         else if (atomic_inc_return(&fed->fed_soft_sync_count) ==
1120                  ofd->ofd_soft_sync_limit)
1121                 dt_commit_async(env, ofd->ofd_osd);
1122
1123 out:
1124         dt_bufs_put(env, o, lnb, niocount);
1125         ofd_read_unlock(env, fo);
1126         ofd_object_put(env, fo);
1127         /* second put is pair to object_get in ofd_preprw_write */
1128         ofd_object_put(env, fo);
1129         ofd_grant_commit(env, info->fti_exp, old_rc);
1130         RETURN(rc);
1131 }
1132
1133 /**
1134  * Commit bulk IO to the storage.
1135  *
1136  * This is companion function to the ofd_preprw(). It finishes bulk IO
1137  * request processing by committing buffers to the storage (WRITE) and/or
1138  * freeing those buffers (read/write). See ofd_commitrw_read() and
1139  * ofd_commitrw_write() for details about each type of IO.
1140  *
1141  * \param[in] env       execution environment
1142  * \param[in] cmd       IO type (READ/WRITE)
1143  * \param[in] exp       OBD export of client
1144  * \param[in] oa        OBDO structure from client
1145  * \param[in] objcount  always 1
1146  * \param[in] obj       object data
1147  * \param[in] rnb       remote buffers
1148  * \param[in] npages    number of local buffers
1149  * \param[in] lnb       local buffers
1150  * \param[in] oti       request data from OST
1151  * \param[in] old_rc    result of processing at this point
1152  *
1153  * \retval              0 on successful commit
1154  * \retval              negative value on error
1155  */
1156 int ofd_commitrw(const struct lu_env *env, int cmd, struct obd_export *exp,
1157                  struct obdo *oa, int objcount, struct obd_ioobj *obj,
1158                  struct niobuf_remote *rnb, int npages,
1159                  struct niobuf_local *lnb, struct obd_trans_info *oti,
1160                  int old_rc)
1161 {
1162         struct ofd_thread_info  *info = ofd_info(env);
1163         struct ofd_mod_data     *fmd;
1164         __u64                    valid;
1165         struct ofd_device       *ofd = ofd_exp(exp);
1166         struct filter_fid       *ff = NULL;
1167         const struct lu_fid     *fid = &oa->o_oi.oi_fid;
1168         int                      rc = 0;
1169
1170         LASSERT(npages > 0);
1171
1172         if (cmd == OBD_BRW_WRITE) {
1173                 /* Don't update timestamps if this write is older than a
1174                  * setattr which modifies the timestamps. b=10150 */
1175
1176                 /* XXX when we start having persistent reservations this needs
1177                  * to be changed to ofd_fmd_get() to create the fmd if it
1178                  * doesn't already exist so we can store the reservation handle
1179                  * there. */
1180                 valid = OBD_MD_FLUID | OBD_MD_FLGID;
1181                 fmd = ofd_fmd_find(exp, fid);
1182                 if (!fmd || fmd->fmd_mactime_xid < info->fti_xid)
1183                         valid |= OBD_MD_FLATIME | OBD_MD_FLMTIME |
1184                                  OBD_MD_FLCTIME;
1185                 ofd_fmd_put(exp, fmd);
1186                 la_from_obdo(&info->fti_attr, oa, valid);
1187
1188                 if (oa->o_valid & OBD_MD_FLFID) {
1189                         ff = &info->fti_mds_fid;
1190                         ofd_prepare_fidea(ff, oa);
1191                 }
1192
1193                 rc = ofd_commitrw_write(env, exp, ofd, fid, &info->fti_attr,
1194                                         ff, objcount, npages, lnb, old_rc);
1195                 if (rc == 0)
1196                         obdo_from_la(oa, &info->fti_attr,
1197                                      OFD_VALID_FLAGS | LA_GID | LA_UID);
1198                 else
1199                         obdo_from_la(oa, &info->fti_attr, LA_GID | LA_UID);
1200
1201                 /* don't report overquota flag if we failed before reaching
1202                  * commit */
1203                 if (old_rc == 0 && (rc == 0 || rc == -EDQUOT)) {
1204                         /* return the overquota flags to client */
1205                         if (lnb[0].lnb_flags & OBD_BRW_OVER_USRQUOTA) {
1206                                 if (oa->o_valid & OBD_MD_FLFLAGS)
1207                                         oa->o_flags |= OBD_FL_NO_USRQUOTA;
1208                                 else
1209                                         oa->o_flags = OBD_FL_NO_USRQUOTA;
1210                         }
1211
1212                         if (lnb[0].lnb_flags & OBD_BRW_OVER_GRPQUOTA) {
1213                                 if (oa->o_valid & OBD_MD_FLFLAGS)
1214                                         oa->o_flags |= OBD_FL_NO_GRPQUOTA;
1215                                 else
1216                                         oa->o_flags = OBD_FL_NO_GRPQUOTA;
1217                         }
1218
1219                         oa->o_valid |= OBD_MD_FLFLAGS;
1220                         oa->o_valid |= OBD_MD_FLUSRQUOTA | OBD_MD_FLGRPQUOTA;
1221                 }
1222         } else if (cmd == OBD_BRW_READ) {
1223                 struct ldlm_namespace *ns = ofd->ofd_namespace;
1224
1225                 /* If oa != NULL then ofd_preprw_read updated the inode
1226                  * atime and we should update the lvb so that other glimpses
1227                  * will also get the updated value. bug 5972 */
1228                 if (oa && ns && ns->ns_lvbo && ns->ns_lvbo->lvbo_update) {
1229                          struct ldlm_resource *rs = NULL;
1230
1231                         ost_fid_build_resid(fid, &info->fti_resid);
1232                         rs = ldlm_resource_get(ns, NULL, &info->fti_resid,
1233                                                LDLM_EXTENT, 0);
1234                         if (!IS_ERR(rs)) {
1235                                 ldlm_res_lvbo_update(rs, NULL, 1);
1236                                 ldlm_resource_putref(rs);
1237                         }
1238                 }
1239                 rc = ofd_commitrw_read(env, ofd, fid, objcount,
1240                                        npages, lnb);
1241                 if (old_rc)
1242                         rc = old_rc;
1243         } else {
1244                 LBUG();
1245                 rc = -EPROTO;
1246         }
1247
1248         if (oti != NULL)
1249                 ofd_info2oti(info, oti);
1250         RETURN(rc);
1251 }