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