Whamcloud - gitweb
73a8c843c44c51e0410852b6b5e9dcd4446441e4
[fs/lustre-release.git] / lustre / osc / osc_cache.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.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2012, 2015, Intel Corporation.
31  *
32  */
33 /*
34  * This file is part of Lustre, http://www.lustre.org/
35  * Lustre is a trademark of Sun Microsystems, Inc.
36  *
37  * osc cache management.
38  *
39  * Author: Jinshan Xiong <jinshan.xiong@whamcloud.com>
40  */
41
42 #define DEBUG_SUBSYSTEM S_OSC
43
44 #include "osc_cl_internal.h"
45 #include "osc_internal.h"
46
47 static int extent_debug; /* set it to be true for more debug */
48
49 static void osc_update_pending(struct osc_object *obj, int cmd, int delta);
50 static int osc_extent_wait(const struct lu_env *env, struct osc_extent *ext,
51                            enum osc_extent_state state);
52 static void osc_ap_completion(const struct lu_env *env, struct client_obd *cli,
53                               struct osc_async_page *oap, int sent, int rc);
54 static int osc_make_ready(const struct lu_env *env, struct osc_async_page *oap,
55                           int cmd);
56 static int osc_refresh_count(const struct lu_env *env,
57                              struct osc_async_page *oap, int cmd);
58 static int osc_io_unplug_async(const struct lu_env *env,
59                                struct client_obd *cli, struct osc_object *osc);
60 static void osc_free_grant(struct client_obd *cli, unsigned int nr_pages,
61                            unsigned int lost_grant, unsigned int dirty_grant);
62
63 static void osc_extent_tree_dump0(int level, struct osc_object *obj,
64                                   const char *func, int line);
65 #define osc_extent_tree_dump(lvl, obj) \
66         osc_extent_tree_dump0(lvl, obj, __func__, __LINE__)
67
68 static void osc_unreserve_grant(struct client_obd *cli, unsigned int reserved,
69                                 unsigned int unused);
70
71 /** \addtogroup osc
72  *  @{
73  */
74
75 /* ------------------ osc extent ------------------ */
76 static inline char *ext_flags(struct osc_extent *ext, char *flags)
77 {
78         char *buf = flags;
79         *buf++ = ext->oe_rw ? 'r' : 'w';
80         if (ext->oe_intree)
81                 *buf++ = 'i';
82         if (ext->oe_sync)
83                 *buf++ = 'S';
84         if (ext->oe_srvlock)
85                 *buf++ = 's';
86         if (ext->oe_hp)
87                 *buf++ = 'h';
88         if (ext->oe_urgent)
89                 *buf++ = 'u';
90         if (ext->oe_memalloc)
91                 *buf++ = 'm';
92         if (ext->oe_trunc_pending)
93                 *buf++ = 't';
94         if (ext->oe_fsync_wait)
95                 *buf++ = 'Y';
96         *buf = 0;
97         return flags;
98 }
99
100 static inline char list_empty_marker(struct list_head *list)
101 {
102         return list_empty(list) ? '-' : '+';
103 }
104
105 #define EXTSTR       "[%lu -> %lu/%lu]"
106 #define EXTPARA(ext) (ext)->oe_start, (ext)->oe_end, (ext)->oe_max_end
107 static const char *oes_strings[] = {
108         "inv", "active", "cache", "locking", "lockdone", "rpc", "trunc", NULL };
109
110 #define OSC_EXTENT_DUMP(lvl, extent, fmt, ...) do {                           \
111         struct osc_extent *__ext = (extent);                                  \
112         char __buf[16];                                                       \
113                                                                               \
114         CDEBUG(lvl,                                                           \
115                 "extent %p@{" EXTSTR ", "                                     \
116                 "[%d|%d|%c|%s|%s|%p], [%d|%d|%c|%c|%p|%u|%p]} " fmt,          \
117                 /* ----- extent part 0 ----- */                               \
118                 __ext, EXTPARA(__ext),                                        \
119                 /* ----- part 1 ----- */                                      \
120                 atomic_read(&__ext->oe_refc),                         \
121                 atomic_read(&__ext->oe_users),                        \
122                 list_empty_marker(&__ext->oe_link),                           \
123                 oes_strings[__ext->oe_state], ext_flags(__ext, __buf),        \
124                 __ext->oe_obj,                                                \
125                 /* ----- part 2 ----- */                                      \
126                 __ext->oe_grants, __ext->oe_nr_pages,                         \
127                 list_empty_marker(&__ext->oe_pages),                          \
128                 waitqueue_active(&__ext->oe_waitq) ? '+' : '-',               \
129                 __ext->oe_dlmlock, __ext->oe_mppr, __ext->oe_owner,           \
130                 /* ----- part 4 ----- */                                      \
131                 ## __VA_ARGS__);                                              \
132         if (lvl == D_ERROR && __ext->oe_dlmlock != NULL)                      \
133                 LDLM_ERROR(__ext->oe_dlmlock, "extent: %p", __ext);           \
134         else                                                                  \
135                 LDLM_DEBUG(__ext->oe_dlmlock, "extent: %p", __ext);           \
136 } while (0)
137
138 #undef EASSERTF
139 #define EASSERTF(expr, ext, fmt, args...) do {                          \
140         if (!(expr)) {                                                  \
141                 OSC_EXTENT_DUMP(D_ERROR, (ext), fmt, ##args);           \
142                 osc_extent_tree_dump(D_ERROR, (ext)->oe_obj);           \
143                 LASSERT(expr);                                          \
144         }                                                               \
145 } while (0)
146
147 #undef EASSERT
148 #define EASSERT(expr, ext) EASSERTF(expr, ext, "\n")
149
150 static inline struct osc_extent *rb_extent(struct rb_node *n)
151 {
152         if (n == NULL)
153                 return NULL;
154
155         return container_of(n, struct osc_extent, oe_node);
156 }
157
158 static inline struct osc_extent *next_extent(struct osc_extent *ext)
159 {
160         if (ext == NULL)
161                 return NULL;
162
163         LASSERT(ext->oe_intree);
164         return rb_extent(rb_next(&ext->oe_node));
165 }
166
167 static inline struct osc_extent *prev_extent(struct osc_extent *ext)
168 {
169         if (ext == NULL)
170                 return NULL;
171
172         LASSERT(ext->oe_intree);
173         return rb_extent(rb_prev(&ext->oe_node));
174 }
175
176 static inline struct osc_extent *first_extent(struct osc_object *obj)
177 {
178         return rb_extent(rb_first(&obj->oo_root));
179 }
180
181 /* object must be locked by caller. */
182 static int osc_extent_sanity_check0(struct osc_extent *ext,
183                                     const char *func, const int line)
184 {
185         struct osc_object *obj = ext->oe_obj;
186         struct osc_async_page *oap;
187         size_t page_count;
188         int rc = 0;
189
190         if (!osc_object_is_locked(obj))
191                 GOTO(out, rc = 9);
192
193         if (ext->oe_state >= OES_STATE_MAX)
194                 GOTO(out, rc = 10);
195
196         if (atomic_read(&ext->oe_refc) <= 0)
197                 GOTO(out, rc = 20);
198
199         if (atomic_read(&ext->oe_refc) < atomic_read(&ext->oe_users))
200                 GOTO(out, rc = 30);
201
202         switch (ext->oe_state) {
203         case OES_INV:
204                 if (ext->oe_nr_pages > 0 || !list_empty(&ext->oe_pages))
205                         GOTO(out, rc = 35);
206                 GOTO(out, rc = 0);
207                 break;
208         case OES_ACTIVE:
209                 if (atomic_read(&ext->oe_users) == 0)
210                         GOTO(out, rc = 40);
211                 if (ext->oe_hp)
212                         GOTO(out, rc = 50);
213                 if (ext->oe_fsync_wait && !ext->oe_urgent)
214                         GOTO(out, rc = 55);
215                 break;
216         case OES_CACHE:
217                 if (ext->oe_grants == 0)
218                         GOTO(out, rc = 60);
219                 if (ext->oe_fsync_wait && !ext->oe_urgent && !ext->oe_hp)
220                         GOTO(out, rc = 65);
221         default:
222                 if (atomic_read(&ext->oe_users) > 0)
223                         GOTO(out, rc = 70);
224         }
225
226         if (ext->oe_max_end < ext->oe_end || ext->oe_end < ext->oe_start)
227                 GOTO(out, rc = 80);
228
229         if (ext->oe_sync && ext->oe_grants > 0)
230                 GOTO(out, rc = 90);
231
232         if (ext->oe_dlmlock != NULL && !ldlm_is_failed(ext->oe_dlmlock)) {
233                 struct ldlm_extent *extent;
234
235                 extent = &ext->oe_dlmlock->l_policy_data.l_extent;
236                 if (!(extent->start <= cl_offset(osc2cl(obj), ext->oe_start) &&
237                       extent->end   >= cl_offset(osc2cl(obj), ext->oe_max_end)))
238                         GOTO(out, rc = 100);
239
240                 if (!(ext->oe_dlmlock->l_granted_mode & (LCK_PW | LCK_GROUP)))
241                         GOTO(out, rc = 102);
242         }
243
244         if (ext->oe_nr_pages > ext->oe_mppr)
245                 GOTO(out, rc = 105);
246
247         /* Do not verify page list if extent is in RPC. This is because an
248          * in-RPC extent is supposed to be exclusively accessible w/o lock. */
249         if (ext->oe_state > OES_CACHE)
250                 GOTO(out, rc = 0);
251
252         if (!extent_debug)
253                 GOTO(out, rc = 0);
254
255         page_count = 0;
256         list_for_each_entry(oap, &ext->oe_pages, oap_pending_item) {
257                 pgoff_t index = osc_index(oap2osc(oap));
258                 ++page_count;
259                 if (index > ext->oe_end || index < ext->oe_start)
260                         GOTO(out, rc = 110);
261         }
262         if (page_count != ext->oe_nr_pages)
263                 GOTO(out, rc = 120);
264
265 out:
266         if (rc != 0)
267                 OSC_EXTENT_DUMP(D_ERROR, ext,
268                                 "%s:%d sanity check %p failed with rc = %d\n",
269                                 func, line, ext, rc);
270         return rc;
271 }
272
273 #define sanity_check_nolock(ext) \
274         osc_extent_sanity_check0(ext, __func__, __LINE__)
275
276 #define sanity_check(ext) ({                                                   \
277         int __res;                                                             \
278         osc_object_lock((ext)->oe_obj);                                        \
279         __res = sanity_check_nolock(ext);                                      \
280         osc_object_unlock((ext)->oe_obj);                                      \
281         __res;                                                                 \
282 })
283
284
285 /**
286  * sanity check - to make sure there is no overlapped extent in the tree.
287  */
288 static int osc_extent_is_overlapped(struct osc_object *obj,
289                                     struct osc_extent *ext)
290 {
291         struct osc_extent *tmp;
292
293         LASSERT(osc_object_is_locked(obj));
294
295         if (!extent_debug)
296                 return 0;
297
298         for (tmp = first_extent(obj); tmp != NULL; tmp = next_extent(tmp)) {
299                 if (tmp == ext)
300                         continue;
301                 if (tmp->oe_end >= ext->oe_start &&
302                     tmp->oe_start <= ext->oe_end)
303                         return 1;
304         }
305         return 0;
306 }
307
308 static void osc_extent_state_set(struct osc_extent *ext, int state)
309 {
310         LASSERT(osc_object_is_locked(ext->oe_obj));
311         LASSERT(state >= OES_INV && state < OES_STATE_MAX);
312
313         /* Never try to sanity check a state changing extent :-) */
314         /* LASSERT(sanity_check_nolock(ext) == 0); */
315
316         /* TODO: validate the state machine */
317         ext->oe_state = state;
318         wake_up_all(&ext->oe_waitq);
319 }
320
321 static struct osc_extent *osc_extent_alloc(struct osc_object *obj)
322 {
323         struct osc_extent *ext;
324
325         OBD_SLAB_ALLOC_PTR_GFP(ext, osc_extent_kmem, GFP_NOFS);
326         if (ext == NULL)
327                 return NULL;
328
329         RB_CLEAR_NODE(&ext->oe_node);
330         ext->oe_obj = obj;
331         cl_object_get(osc2cl(obj));
332         atomic_set(&ext->oe_refc, 1);
333         atomic_set(&ext->oe_users, 0);
334         INIT_LIST_HEAD(&ext->oe_link);
335         ext->oe_state = OES_INV;
336         INIT_LIST_HEAD(&ext->oe_pages);
337         init_waitqueue_head(&ext->oe_waitq);
338         ext->oe_dlmlock = NULL;
339
340         return ext;
341 }
342
343 static void osc_extent_free(struct osc_extent *ext)
344 {
345         OBD_SLAB_FREE_PTR(ext, osc_extent_kmem);
346 }
347
348 static struct osc_extent *osc_extent_get(struct osc_extent *ext)
349 {
350         LASSERT(atomic_read(&ext->oe_refc) >= 0);
351         atomic_inc(&ext->oe_refc);
352         return ext;
353 }
354
355 static void osc_extent_put(const struct lu_env *env, struct osc_extent *ext)
356 {
357         LASSERT(atomic_read(&ext->oe_refc) > 0);
358         if (atomic_dec_and_test(&ext->oe_refc)) {
359                 LASSERT(list_empty(&ext->oe_link));
360                 LASSERT(atomic_read(&ext->oe_users) == 0);
361                 LASSERT(ext->oe_state == OES_INV);
362                 LASSERT(!ext->oe_intree);
363
364                 if (ext->oe_dlmlock != NULL) {
365                         lu_ref_add(&ext->oe_dlmlock->l_reference,
366                                    "osc_extent", ext);
367                         LDLM_LOCK_PUT(ext->oe_dlmlock);
368                         ext->oe_dlmlock = NULL;
369                 }
370                 cl_object_put(env, osc2cl(ext->oe_obj));
371                 osc_extent_free(ext);
372         }
373 }
374
375 /**
376  * osc_extent_put_trust() is a special version of osc_extent_put() when
377  * it's known that the caller is not the last user. This is to address the
378  * problem of lacking of lu_env ;-).
379  */
380 static void osc_extent_put_trust(struct osc_extent *ext)
381 {
382         LASSERT(atomic_read(&ext->oe_refc) > 1);
383         LASSERT(osc_object_is_locked(ext->oe_obj));
384         atomic_dec(&ext->oe_refc);
385 }
386
387 /**
388  * Return the extent which includes pgoff @index, or return the greatest
389  * previous extent in the tree.
390  */
391 static struct osc_extent *osc_extent_search(struct osc_object *obj,
392                                             pgoff_t index)
393 {
394         struct rb_node    *n = obj->oo_root.rb_node;
395         struct osc_extent *tmp, *p = NULL;
396
397         LASSERT(osc_object_is_locked(obj));
398         while (n != NULL) {
399                 tmp = rb_extent(n);
400                 if (index < tmp->oe_start) {
401                         n = n->rb_left;
402                 } else if (index > tmp->oe_end) {
403                         p = rb_extent(n);
404                         n = n->rb_right;
405                 } else {
406                         return tmp;
407                 }
408         }
409         return p;
410 }
411
412 /*
413  * Return the extent covering @index, otherwise return NULL.
414  * caller must have held object lock.
415  */
416 static struct osc_extent *osc_extent_lookup(struct osc_object *obj,
417                                             pgoff_t index)
418 {
419         struct osc_extent *ext;
420
421         ext = osc_extent_search(obj, index);
422         if (ext != NULL && ext->oe_start <= index && index <= ext->oe_end)
423                 return osc_extent_get(ext);
424         return NULL;
425 }
426
427 /* caller must have held object lock. */
428 static void osc_extent_insert(struct osc_object *obj, struct osc_extent *ext)
429 {
430         struct rb_node   **n      = &obj->oo_root.rb_node;
431         struct rb_node    *parent = NULL;
432         struct osc_extent *tmp;
433
434         LASSERT(ext->oe_intree == 0);
435         LASSERT(ext->oe_obj == obj);
436         LASSERT(osc_object_is_locked(obj));
437         while (*n != NULL) {
438                 tmp = rb_extent(*n);
439                 parent = *n;
440
441                 if (ext->oe_end < tmp->oe_start)
442                         n = &(*n)->rb_left;
443                 else if (ext->oe_start > tmp->oe_end)
444                         n = &(*n)->rb_right;
445                 else
446                         EASSERTF(0, tmp, EXTSTR"\n", EXTPARA(ext));
447         }
448         rb_link_node(&ext->oe_node, parent, n);
449         rb_insert_color(&ext->oe_node, &obj->oo_root);
450         osc_extent_get(ext);
451         ext->oe_intree = 1;
452 }
453
454 /* caller must have held object lock. */
455 static void osc_extent_erase(struct osc_extent *ext)
456 {
457         struct osc_object *obj = ext->oe_obj;
458         LASSERT(osc_object_is_locked(obj));
459         if (ext->oe_intree) {
460                 rb_erase(&ext->oe_node, &obj->oo_root);
461                 ext->oe_intree = 0;
462                 /* rbtree held a refcount */
463                 osc_extent_put_trust(ext);
464         }
465 }
466
467 static struct osc_extent *osc_extent_hold(struct osc_extent *ext)
468 {
469         struct osc_object *obj = ext->oe_obj;
470
471         LASSERT(osc_object_is_locked(obj));
472         LASSERT(ext->oe_state == OES_ACTIVE || ext->oe_state == OES_CACHE);
473         if (ext->oe_state == OES_CACHE) {
474                 osc_extent_state_set(ext, OES_ACTIVE);
475                 osc_update_pending(obj, OBD_BRW_WRITE, -ext->oe_nr_pages);
476         }
477         atomic_inc(&ext->oe_users);
478         list_del_init(&ext->oe_link);
479         return osc_extent_get(ext);
480 }
481
482 static void __osc_extent_remove(struct osc_extent *ext)
483 {
484         LASSERT(osc_object_is_locked(ext->oe_obj));
485         LASSERT(list_empty(&ext->oe_pages));
486         osc_extent_erase(ext);
487         list_del_init(&ext->oe_link);
488         osc_extent_state_set(ext, OES_INV);
489         OSC_EXTENT_DUMP(D_CACHE, ext, "destroyed.\n");
490 }
491
492 static void osc_extent_remove(struct osc_extent *ext)
493 {
494         struct osc_object *obj = ext->oe_obj;
495
496         osc_object_lock(obj);
497         __osc_extent_remove(ext);
498         osc_object_unlock(obj);
499 }
500
501 /**
502  * This function is used to merge extents to get better performance. It checks
503  * if @cur and @victim are contiguous at block level.
504  */
505 static int osc_extent_merge(const struct lu_env *env, struct osc_extent *cur,
506                             struct osc_extent *victim)
507 {
508         struct osc_object       *obj = cur->oe_obj;
509         struct client_obd       *cli = osc_cli(obj);
510         pgoff_t                  chunk_start;
511         pgoff_t                  chunk_end;
512         int                      ppc_bits;
513
514         LASSERT(cur->oe_state == OES_CACHE);
515         LASSERT(osc_object_is_locked(obj));
516         if (victim == NULL)
517                 return -EINVAL;
518
519         if (victim->oe_state != OES_CACHE || victim->oe_fsync_wait)
520                 return -EBUSY;
521
522         if (cur->oe_max_end != victim->oe_max_end)
523                 return -ERANGE;
524
525         LASSERT(cur->oe_dlmlock == victim->oe_dlmlock);
526         ppc_bits = osc_cli(obj)->cl_chunkbits - PAGE_CACHE_SHIFT;
527         chunk_start = cur->oe_start >> ppc_bits;
528         chunk_end   = cur->oe_end   >> ppc_bits;
529         if (chunk_start   != (victim->oe_end >> ppc_bits) + 1 &&
530             chunk_end + 1 != victim->oe_start >> ppc_bits)
531                 return -ERANGE;
532
533         /* overall extent size should not exceed the max supported limit
534          * reported by the server */
535         if (cur->oe_end - cur->oe_start + 1 +
536             victim->oe_end - victim->oe_start + 1 > cli->cl_max_extent_pages)
537                 return -ERANGE;
538
539         OSC_EXTENT_DUMP(D_CACHE, victim, "will be merged by %p.\n", cur);
540
541         cur->oe_start     = min(cur->oe_start, victim->oe_start);
542         cur->oe_end       = max(cur->oe_end,   victim->oe_end);
543         /* per-extent tax should be accounted only once for the whole extent */
544         cur->oe_grants   += victim->oe_grants - cli->cl_grant_extent_tax;
545         cur->oe_nr_pages += victim->oe_nr_pages;
546         /* only the following bits are needed to merge */
547         cur->oe_urgent   |= victim->oe_urgent;
548         cur->oe_memalloc |= victim->oe_memalloc;
549         list_splice_init(&victim->oe_pages, &cur->oe_pages);
550         list_del_init(&victim->oe_link);
551         victim->oe_nr_pages = 0;
552
553         osc_extent_get(victim);
554         __osc_extent_remove(victim);
555         osc_extent_put(env, victim);
556
557         OSC_EXTENT_DUMP(D_CACHE, cur, "after merging %p.\n", victim);
558         return 0;
559 }
560
561 /**
562  * Drop user count of osc_extent, and unplug IO asynchronously.
563  */
564 int osc_extent_release(const struct lu_env *env, struct osc_extent *ext)
565 {
566         struct osc_object *obj = ext->oe_obj;
567         struct client_obd *cli = osc_cli(obj);
568         int rc = 0;
569         ENTRY;
570
571         LASSERT(atomic_read(&ext->oe_users) > 0);
572         LASSERT(sanity_check(ext) == 0);
573         LASSERT(ext->oe_grants > 0);
574
575         if (atomic_dec_and_lock(&ext->oe_users, &obj->oo_lock)) {
576                 LASSERT(ext->oe_state == OES_ACTIVE);
577                 if (ext->oe_trunc_pending) {
578                         /* a truncate process is waiting for this extent.
579                          * This may happen due to a race, check
580                          * osc_cache_truncate_start(). */
581                         osc_extent_state_set(ext, OES_TRUNC);
582                         ext->oe_trunc_pending = 0;
583                 } else {
584                         int grant = 0;
585
586                         osc_extent_state_set(ext, OES_CACHE);
587                         osc_update_pending(obj, OBD_BRW_WRITE,
588                                            ext->oe_nr_pages);
589
590                         /* try to merge the previous and next extent. */
591                         if (osc_extent_merge(env, ext, prev_extent(ext)) == 0)
592                                 grant += cli->cl_grant_extent_tax;
593                         if (osc_extent_merge(env, ext, next_extent(ext)) == 0)
594                                 grant += cli->cl_grant_extent_tax;
595                         if (grant > 0)
596                                 osc_unreserve_grant(cli, 0, grant);
597
598                         if (ext->oe_urgent)
599                                 list_move_tail(&ext->oe_link,
600                                                &obj->oo_urgent_exts);
601                 }
602                 osc_object_unlock(obj);
603
604                 osc_io_unplug_async(env, cli, obj);
605         }
606         osc_extent_put(env, ext);
607         RETURN(rc);
608 }
609
610 static inline int overlapped(struct osc_extent *ex1, struct osc_extent *ex2)
611 {
612         return !(ex1->oe_end < ex2->oe_start || ex2->oe_end < ex1->oe_start);
613 }
614
615 /**
616  * Find or create an extent which includes @index, core function to manage
617  * extent tree.
618  */
619 static struct osc_extent *osc_extent_find(const struct lu_env *env,
620                                           struct osc_object *obj, pgoff_t index,
621                                           unsigned int *grants)
622 {
623         struct client_obd *cli = osc_cli(obj);
624         struct osc_lock   *olck;
625         struct cl_lock_descr *descr;
626         struct osc_extent *cur;
627         struct osc_extent *ext;
628         struct osc_extent *conflict = NULL;
629         struct osc_extent *found = NULL;
630         pgoff_t    chunk;
631         pgoff_t    max_end;
632         unsigned int max_pages; /* max_pages_per_rpc */
633         unsigned int chunksize;
634         int        ppc_bits; /* pages per chunk bits */
635         pgoff_t    chunk_mask;
636         int        rc;
637         ENTRY;
638
639         cur = osc_extent_alloc(obj);
640         if (cur == NULL)
641                 RETURN(ERR_PTR(-ENOMEM));
642
643         olck = osc_env_io(env)->oi_write_osclock;
644         LASSERTF(olck != NULL, "page %lu is not covered by lock\n", index);
645         LASSERT(olck->ols_state == OLS_GRANTED);
646
647         descr = &olck->ols_cl.cls_lock->cll_descr;
648         LASSERT(descr->cld_mode >= CLM_WRITE);
649
650         LASSERT(cli->cl_chunkbits >= PAGE_CACHE_SHIFT);
651         ppc_bits   = cli->cl_chunkbits - PAGE_CACHE_SHIFT;
652         chunk_mask = ~((1 << ppc_bits) - 1);
653         chunksize  = 1 << cli->cl_chunkbits;
654         chunk      = index >> ppc_bits;
655
656         /* align end to rpc edge, rpc size may not be a power 2 integer. */
657         max_pages = cli->cl_max_pages_per_rpc;
658         LASSERT((max_pages & ~chunk_mask) == 0);
659         max_end = index - (index % max_pages) + max_pages - 1;
660         max_end = min_t(pgoff_t, max_end, descr->cld_end);
661
662         /* initialize new extent by parameters so far */
663         cur->oe_max_end = max_end;
664         cur->oe_start   = index & chunk_mask;
665         cur->oe_end     = ((index + ~chunk_mask + 1) & chunk_mask) - 1;
666         if (cur->oe_start < descr->cld_start)
667                 cur->oe_start = descr->cld_start;
668         if (cur->oe_end > max_end)
669                 cur->oe_end = max_end;
670         cur->oe_grants  = 0;
671         cur->oe_mppr    = max_pages;
672         if (olck->ols_dlmlock != NULL) {
673                 LASSERT(olck->ols_hold);
674                 cur->oe_dlmlock = LDLM_LOCK_GET(olck->ols_dlmlock);
675                 lu_ref_add(&olck->ols_dlmlock->l_reference, "osc_extent", cur);
676         }
677
678         /* grants has been allocated by caller */
679         LASSERTF(*grants >= chunksize + cli->cl_grant_extent_tax,
680                  "%u/%u/%u.\n", *grants, chunksize, cli->cl_grant_extent_tax);
681         LASSERTF((max_end - cur->oe_start) < max_pages, EXTSTR"\n",
682                  EXTPARA(cur));
683
684 restart:
685         osc_object_lock(obj);
686         ext = osc_extent_search(obj, cur->oe_start);
687         if (ext == NULL)
688                 ext = first_extent(obj);
689         while (ext != NULL) {
690                 pgoff_t ext_chk_start = ext->oe_start >> ppc_bits;
691                 pgoff_t ext_chk_end   = ext->oe_end   >> ppc_bits;
692
693                 LASSERT(sanity_check_nolock(ext) == 0);
694                 if (chunk > ext_chk_end + 1)
695                         break;
696
697                 /* if covering by different locks, no chance to match */
698                 if (olck->ols_dlmlock != ext->oe_dlmlock) {
699                         EASSERTF(!overlapped(ext, cur), ext,
700                                  EXTSTR"\n", EXTPARA(cur));
701
702                         ext = next_extent(ext);
703                         continue;
704                 }
705
706                 /* discontiguous chunks? */
707                 if (chunk + 1 < ext_chk_start) {
708                         ext = next_extent(ext);
709                         continue;
710                 }
711
712                 /* ok, from now on, ext and cur have these attrs:
713                  * 1. covered by the same lock
714                  * 2. contiguous at chunk level or overlapping. */
715
716                 if (overlapped(ext, cur)) {
717                         /* cur is the minimum unit, so overlapping means
718                          * full contain. */
719                         EASSERTF((ext->oe_start <= cur->oe_start &&
720                                   ext->oe_end >= cur->oe_end),
721                                  ext, EXTSTR"\n", EXTPARA(cur));
722
723                         if (ext->oe_state > OES_CACHE || ext->oe_fsync_wait) {
724                                 /* for simplicity, we wait for this extent to
725                                  * finish before going forward. */
726                                 conflict = osc_extent_get(ext);
727                                 break;
728                         }
729
730                         found = osc_extent_hold(ext);
731                         break;
732                 }
733
734                 /* non-overlapped extent */
735                 if (ext->oe_state != OES_CACHE || ext->oe_fsync_wait) {
736                         /* we can't do anything for a non OES_CACHE extent, or
737                          * if there is someone waiting for this extent to be
738                          * flushed, try next one. */
739                         ext = next_extent(ext);
740                         continue;
741                 }
742
743                 /* check if they belong to the same rpc slot before trying to
744                  * merge. the extents are not overlapped and contiguous at
745                  * chunk level to get here. */
746                 if (ext->oe_max_end != max_end) {
747                         /* if they don't belong to the same RPC slot or
748                          * max_pages_per_rpc has ever changed, do not merge. */
749                         ext = next_extent(ext);
750                         continue;
751                 }
752
753                 /* check whether maximum extent size will be hit */
754                 if ((ext_chk_end - ext_chk_start + 1 + 1) << ppc_bits >
755                     cli->cl_max_extent_pages) {
756                         ext = next_extent(ext);
757                         continue;
758                 }
759
760                 /* it's required that an extent must be contiguous at chunk
761                  * level so that we know the whole extent is covered by grant
762                  * (the pages in the extent are NOT required to be contiguous).
763                  * Otherwise, it will be too much difficult to know which
764                  * chunks have grants allocated. */
765
766                 /* try to do front merge - extend ext's start */
767                 if (chunk + 1 == ext_chk_start) {
768                         /* ext must be chunk size aligned */
769                         EASSERT((ext->oe_start & ~chunk_mask) == 0, ext);
770
771                         /* pull ext's start back to cover cur */
772                         ext->oe_start   = cur->oe_start;
773                         ext->oe_grants += chunksize;
774                         *grants -= chunksize;
775
776                         found = osc_extent_hold(ext);
777                 } else if (chunk == ext_chk_end + 1) {
778                         /* rear merge */
779                         ext->oe_end     = cur->oe_end;
780                         ext->oe_grants += chunksize;
781                         *grants -= chunksize;
782
783                         /* try to merge with the next one because we just fill
784                          * in a gap */
785                         if (osc_extent_merge(env, ext, next_extent(ext)) == 0)
786                                 /* we can save extent tax from next extent */
787                                 *grants += cli->cl_grant_extent_tax;
788
789                         found = osc_extent_hold(ext);
790                 }
791                 if (found != NULL)
792                         break;
793
794                 ext = next_extent(ext);
795         }
796
797         osc_extent_tree_dump(D_CACHE, obj);
798         if (found != NULL) {
799                 LASSERT(conflict == NULL);
800                 if (!IS_ERR(found)) {
801                         LASSERT(found->oe_dlmlock == cur->oe_dlmlock);
802                         OSC_EXTENT_DUMP(D_CACHE, found,
803                                         "found caching ext for %lu.\n", index);
804                 }
805         } else if (conflict == NULL) {
806                 /* create a new extent */
807                 EASSERT(osc_extent_is_overlapped(obj, cur) == 0, cur);
808                 cur->oe_grants = chunksize + cli->cl_grant_extent_tax;
809                 *grants -= cur->oe_grants;
810                 LASSERT(*grants >= 0);
811
812                 cur->oe_state = OES_CACHE;
813                 found = osc_extent_hold(cur);
814                 osc_extent_insert(obj, cur);
815                 OSC_EXTENT_DUMP(D_CACHE, cur, "add into tree %lu/%lu.\n",
816                                 index, descr->cld_end);
817         }
818         osc_object_unlock(obj);
819
820         if (conflict != NULL) {
821                 LASSERT(found == NULL);
822
823                 /* waiting for IO to finish. Please notice that it's impossible
824                  * to be an OES_TRUNC extent. */
825                 rc = osc_extent_wait(env, conflict, OES_INV);
826                 osc_extent_put(env, conflict);
827                 conflict = NULL;
828                 if (rc < 0)
829                         GOTO(out, found = ERR_PTR(rc));
830
831                 goto restart;
832         }
833         EXIT;
834
835 out:
836         osc_extent_put(env, cur);
837         LASSERT(*grants >= 0);
838         return found;
839 }
840
841 /**
842  * Called when IO is finished to an extent.
843  */
844 int osc_extent_finish(const struct lu_env *env, struct osc_extent *ext,
845                       int sent, int rc)
846 {
847         struct client_obd *cli = osc_cli(ext->oe_obj);
848         struct osc_async_page *oap;
849         struct osc_async_page *tmp;
850         int nr_pages = ext->oe_nr_pages;
851         int lost_grant = 0;
852         int blocksize = cli->cl_import->imp_obd->obd_osfs.os_bsize ? : 4096;
853         loff_t last_off = 0;
854         int last_count = -1;
855         ENTRY;
856
857         OSC_EXTENT_DUMP(D_CACHE, ext, "extent finished.\n");
858
859         ext->oe_rc = rc ?: ext->oe_nr_pages;
860         EASSERT(ergo(rc == 0, ext->oe_state == OES_RPC), ext);
861
862         osc_lru_add_batch(cli, &ext->oe_pages);
863         list_for_each_entry_safe(oap, tmp, &ext->oe_pages,
864                                      oap_pending_item) {
865                 list_del_init(&oap->oap_rpc_item);
866                 list_del_init(&oap->oap_pending_item);
867                 if (last_off <= oap->oap_obj_off) {
868                         last_off = oap->oap_obj_off;
869                         last_count = oap->oap_count;
870                 }
871
872                 --ext->oe_nr_pages;
873                 osc_ap_completion(env, cli, oap, sent, rc);
874         }
875         EASSERT(ext->oe_nr_pages == 0, ext);
876
877         if (!sent) {
878                 lost_grant = ext->oe_grants;
879         } else if (blocksize < PAGE_CACHE_SIZE &&
880                    last_count != PAGE_CACHE_SIZE) {
881                 /* For short writes we shouldn't count parts of pages that
882                  * span a whole chunk on the OST side, or our accounting goes
883                  * wrong.  Should match the code in filter_grant_check. */
884                 int offset = last_off & ~PAGE_MASK;
885                 int count = last_count + (offset & (blocksize - 1));
886                 int end = (offset + last_count) & (blocksize - 1);
887                 if (end)
888                         count += blocksize - end;
889
890                 lost_grant = PAGE_CACHE_SIZE - count;
891         }
892         if (ext->oe_grants > 0)
893                 osc_free_grant(cli, nr_pages, lost_grant, ext->oe_grants);
894
895         osc_extent_remove(ext);
896         /* put the refcount for RPC */
897         osc_extent_put(env, ext);
898         RETURN(0);
899 }
900
901 static int extent_wait_cb(struct osc_extent *ext, enum osc_extent_state state)
902 {
903         int ret;
904
905         osc_object_lock(ext->oe_obj);
906         ret = ext->oe_state == state;
907         osc_object_unlock(ext->oe_obj);
908
909         return ret;
910 }
911
912 /**
913  * Wait for the extent's state to become @state.
914  */
915 static int osc_extent_wait(const struct lu_env *env, struct osc_extent *ext,
916                            enum osc_extent_state state)
917 {
918         struct osc_object *obj = ext->oe_obj;
919         struct l_wait_info lwi = LWI_TIMEOUT_INTR(cfs_time_seconds(600), NULL,
920                                                   LWI_ON_SIGNAL_NOOP, NULL);
921         int rc = 0;
922         ENTRY;
923
924         osc_object_lock(obj);
925         LASSERT(sanity_check_nolock(ext) == 0);
926         /* `Kick' this extent only if the caller is waiting for it to be
927          * written out. */
928         if (state == OES_INV && !ext->oe_urgent && !ext->oe_hp) {
929                 if (ext->oe_state == OES_ACTIVE) {
930                         ext->oe_urgent = 1;
931                 } else if (ext->oe_state == OES_CACHE) {
932                         ext->oe_urgent = 1;
933                         osc_extent_hold(ext);
934                         rc = 1;
935                 }
936         }
937         osc_object_unlock(obj);
938         if (rc == 1)
939                 osc_extent_release(env, ext);
940
941         /* wait for the extent until its state becomes @state */
942         rc = l_wait_event(ext->oe_waitq, extent_wait_cb(ext, state), &lwi);
943         if (rc == -ETIMEDOUT) {
944                 OSC_EXTENT_DUMP(D_ERROR, ext,
945                         "%s: wait ext to %u timedout, recovery in progress?\n",
946                         cli_name(osc_cli(obj)), state);
947
948                 lwi = LWI_INTR(NULL, NULL);
949                 rc = l_wait_event(ext->oe_waitq, extent_wait_cb(ext, state),
950                                   &lwi);
951         }
952         if (rc == 0 && ext->oe_rc < 0)
953                 rc = ext->oe_rc;
954         RETURN(rc);
955 }
956
957 /**
958  * Discard pages with index greater than @size. If @ext is overlapped with
959  * @size, then partial truncate happens.
960  */
961 static int osc_extent_truncate(struct osc_extent *ext, pgoff_t trunc_index,
962                                 bool partial)
963 {
964         struct lu_env         *env;
965         struct cl_io          *io;
966         struct osc_object     *obj = ext->oe_obj;
967         struct client_obd     *cli = osc_cli(obj);
968         struct osc_async_page *oap;
969         struct osc_async_page *tmp;
970         int                    pages_in_chunk = 0;
971         int                    ppc_bits    = cli->cl_chunkbits -
972                                              PAGE_CACHE_SHIFT;
973         __u64                  trunc_chunk = trunc_index >> ppc_bits;
974         int                    grants   = 0;
975         int                    nr_pages = 0;
976         int                    rc       = 0;
977         __u16                  refcheck;
978         ENTRY;
979
980         LASSERT(sanity_check(ext) == 0);
981         LASSERT(ext->oe_state == OES_TRUNC);
982         LASSERT(!ext->oe_urgent);
983
984         /* Request new lu_env.
985          * We can't use that env from osc_cache_truncate_start() because
986          * it's from lov_io_sub and not fully initialized. */
987         env = cl_env_get(&refcheck);
988         io  = &osc_env_info(env)->oti_io;
989         io->ci_obj = cl_object_top(osc2cl(obj));
990         io->ci_ignore_layout = 1;
991         rc = cl_io_init(env, io, CIT_MISC, io->ci_obj);
992         if (rc < 0)
993                 GOTO(out, rc);
994
995         /* discard all pages with index greater than trunc_index */
996         list_for_each_entry_safe(oap, tmp, &ext->oe_pages,
997                                      oap_pending_item) {
998                 pgoff_t index = osc_index(oap2osc(oap));
999                 struct cl_page  *page = oap2cl_page(oap);
1000
1001                 LASSERT(list_empty(&oap->oap_rpc_item));
1002
1003                 /* only discard the pages with their index greater than
1004                  * trunc_index, and ... */
1005                 if (index < trunc_index ||
1006                     (index == trunc_index && partial)) {
1007                         /* accounting how many pages remaining in the chunk
1008                          * so that we can calculate grants correctly. */
1009                         if (index >> ppc_bits == trunc_chunk)
1010                                 ++pages_in_chunk;
1011                         continue;
1012                 }
1013
1014                 list_del_init(&oap->oap_pending_item);
1015
1016                 cl_page_get(page);
1017                 lu_ref_add(&page->cp_reference, "truncate", current);
1018
1019                 if (cl_page_own(env, io, page) == 0) {
1020                         cl_page_discard(env, io, page);
1021                         cl_page_disown(env, io, page);
1022                 } else {
1023                         LASSERT(page->cp_state == CPS_FREEING);
1024                         LASSERT(0);
1025                 }
1026
1027                 lu_ref_del(&page->cp_reference, "truncate", current);
1028                 cl_page_put(env, page);
1029
1030                 --ext->oe_nr_pages;
1031                 ++nr_pages;
1032         }
1033         EASSERTF(ergo(ext->oe_start >= trunc_index + !!partial,
1034                       ext->oe_nr_pages == 0),
1035                 ext, "trunc_index %lu, partial %d\n", trunc_index, partial);
1036
1037         osc_object_lock(obj);
1038         if (ext->oe_nr_pages == 0) {
1039                 LASSERT(pages_in_chunk == 0);
1040                 grants = ext->oe_grants;
1041                 ext->oe_grants = 0;
1042         } else { /* calculate how many grants we can free */
1043                 int     chunks = (ext->oe_end >> ppc_bits) - trunc_chunk;
1044                 pgoff_t last_index;
1045
1046
1047                 /* if there is no pages in this chunk, we can also free grants
1048                  * for the last chunk */
1049                 if (pages_in_chunk == 0) {
1050                         /* if this is the 1st chunk and no pages in this chunk,
1051                          * ext->oe_nr_pages must be zero, so we should be in
1052                          * the other if-clause. */
1053                         LASSERT(trunc_chunk > 0);
1054                         --trunc_chunk;
1055                         ++chunks;
1056                 }
1057
1058                 /* this is what we can free from this extent */
1059                 grants          = chunks << cli->cl_chunkbits;
1060                 ext->oe_grants -= grants;
1061                 last_index      = ((trunc_chunk + 1) << ppc_bits) - 1;
1062                 ext->oe_end     = min(last_index, ext->oe_max_end);
1063                 LASSERT(ext->oe_end >= ext->oe_start);
1064                 LASSERT(ext->oe_grants > 0);
1065         }
1066         osc_object_unlock(obj);
1067
1068         if (grants > 0 || nr_pages > 0)
1069                 osc_free_grant(cli, nr_pages, grants, grants);
1070
1071 out:
1072         cl_io_fini(env, io);
1073         cl_env_put(env, &refcheck);
1074         RETURN(rc);
1075 }
1076
1077 /**
1078  * This function is used to make the extent prepared for transfer.
1079  * A race with flusing page - ll_writepage() has to be handled cautiously.
1080  */
1081 static int osc_extent_make_ready(const struct lu_env *env,
1082                                  struct osc_extent *ext)
1083 {
1084         struct osc_async_page *oap;
1085         struct osc_async_page *last = NULL;
1086         struct osc_object *obj = ext->oe_obj;
1087         unsigned int page_count = 0;
1088         int rc;
1089         ENTRY;
1090
1091         /* we're going to grab page lock, so object lock must not be taken. */
1092         LASSERT(sanity_check(ext) == 0);
1093         /* in locking state, any process should not touch this extent. */
1094         EASSERT(ext->oe_state == OES_LOCKING, ext);
1095         EASSERT(ext->oe_owner != NULL, ext);
1096
1097         OSC_EXTENT_DUMP(D_CACHE, ext, "make ready\n");
1098
1099         list_for_each_entry(oap, &ext->oe_pages, oap_pending_item) {
1100                 ++page_count;
1101                 if (last == NULL || last->oap_obj_off < oap->oap_obj_off)
1102                         last = oap;
1103
1104                 /* checking ASYNC_READY is race safe */
1105                 if ((oap->oap_async_flags & ASYNC_READY) != 0)
1106                         continue;
1107
1108                 rc = osc_make_ready(env, oap, OBD_BRW_WRITE);
1109                 switch (rc) {
1110                 case 0:
1111                         spin_lock(&oap->oap_lock);
1112                         oap->oap_async_flags |= ASYNC_READY;
1113                         spin_unlock(&oap->oap_lock);
1114                         break;
1115                 case -EALREADY:
1116                         LASSERT((oap->oap_async_flags & ASYNC_READY) != 0);
1117                         break;
1118                 default:
1119                         LASSERTF(0, "unknown return code: %d\n", rc);
1120                 }
1121         }
1122
1123         LASSERT(page_count == ext->oe_nr_pages);
1124         LASSERT(last != NULL);
1125         /* the last page is the only one we need to refresh its count by
1126          * the size of file. */
1127         if (!(last->oap_async_flags & ASYNC_COUNT_STABLE)) {
1128                 int last_oap_count = osc_refresh_count(env, last, OBD_BRW_WRITE);
1129                 LASSERT(last_oap_count > 0);
1130                 LASSERT(last->oap_page_off + last_oap_count <= PAGE_CACHE_SIZE);
1131                 last->oap_count = last_oap_count;
1132                 spin_lock(&last->oap_lock);
1133                 last->oap_async_flags |= ASYNC_COUNT_STABLE;
1134                 spin_unlock(&last->oap_lock);
1135         }
1136
1137         /* for the rest of pages, we don't need to call osf_refresh_count()
1138          * because it's known they are not the last page */
1139         list_for_each_entry(oap, &ext->oe_pages, oap_pending_item) {
1140                 if (!(oap->oap_async_flags & ASYNC_COUNT_STABLE)) {
1141                         oap->oap_count = PAGE_CACHE_SIZE - oap->oap_page_off;
1142                         spin_lock(&oap->oap_lock);
1143                         oap->oap_async_flags |= ASYNC_COUNT_STABLE;
1144                         spin_unlock(&oap->oap_lock);
1145                 }
1146         }
1147
1148         osc_object_lock(obj);
1149         osc_extent_state_set(ext, OES_RPC);
1150         osc_object_unlock(obj);
1151         /* get a refcount for RPC. */
1152         osc_extent_get(ext);
1153
1154         RETURN(0);
1155 }
1156
1157 /**
1158  * Quick and simple version of osc_extent_find(). This function is frequently
1159  * called to expand the extent for the same IO. To expand the extent, the
1160  * page index must be in the same or next chunk of ext->oe_end.
1161  */
1162 static int osc_extent_expand(struct osc_extent *ext, pgoff_t index,
1163                              unsigned int *grants)
1164 {
1165         struct osc_object *obj = ext->oe_obj;
1166         struct client_obd *cli = osc_cli(obj);
1167         struct osc_extent *next;
1168         int ppc_bits = cli->cl_chunkbits - PAGE_CACHE_SHIFT;
1169         pgoff_t chunk = index >> ppc_bits;
1170         pgoff_t end_chunk;
1171         pgoff_t end_index;
1172         unsigned int chunksize = 1 << cli->cl_chunkbits;
1173         int rc = 0;
1174         ENTRY;
1175
1176         LASSERT(ext->oe_max_end >= index && ext->oe_start <= index);
1177         osc_object_lock(obj);
1178         LASSERT(sanity_check_nolock(ext) == 0);
1179         end_chunk = ext->oe_end >> ppc_bits;
1180         if (chunk > end_chunk + 1)
1181                 GOTO(out, rc = -ERANGE);
1182
1183         if (end_chunk >= chunk)
1184                 GOTO(out, rc = 0);
1185
1186         LASSERT(end_chunk + 1 == chunk);
1187
1188         /* try to expand this extent to cover @index */
1189         end_index = min(ext->oe_max_end, ((chunk + 1) << ppc_bits) - 1);
1190
1191         /* don't go over the maximum extent size reported by server */
1192         if (end_index - ext->oe_start + 1 > cli->cl_max_extent_pages)
1193                 GOTO(out, rc = -ERANGE);
1194
1195         next = next_extent(ext);
1196         if (next != NULL && next->oe_start <= end_index)
1197                 /* complex mode - overlapped with the next extent,
1198                  * this case will be handled by osc_extent_find() */
1199                 GOTO(out, rc = -EAGAIN);
1200
1201         ext->oe_end = end_index;
1202         ext->oe_grants += chunksize;
1203         *grants -= chunksize;
1204         LASSERT(*grants >= 0);
1205         EASSERTF(osc_extent_is_overlapped(obj, ext) == 0, ext,
1206                  "overlapped after expanding for %lu.\n", index);
1207         EXIT;
1208
1209 out:
1210         osc_object_unlock(obj);
1211         RETURN(rc);
1212 }
1213
1214 static void osc_extent_tree_dump0(int level, struct osc_object *obj,
1215                                   const char *func, int line)
1216 {
1217         struct osc_extent *ext;
1218         int cnt;
1219
1220         CDEBUG(level, "Dump object %p extents at %s:%d, mppr: %u.\n",
1221                obj, func, line, osc_cli(obj)->cl_max_pages_per_rpc);
1222
1223         /* osc_object_lock(obj); */
1224         cnt = 1;
1225         for (ext = first_extent(obj); ext != NULL; ext = next_extent(ext))
1226                 OSC_EXTENT_DUMP(level, ext, "in tree %d.\n", cnt++);
1227
1228         cnt = 1;
1229         list_for_each_entry(ext, &obj->oo_hp_exts, oe_link)
1230                 OSC_EXTENT_DUMP(level, ext, "hp %d.\n", cnt++);
1231
1232         cnt = 1;
1233         list_for_each_entry(ext, &obj->oo_urgent_exts, oe_link)
1234                 OSC_EXTENT_DUMP(level, ext, "urgent %d.\n", cnt++);
1235
1236         cnt = 1;
1237         list_for_each_entry(ext, &obj->oo_reading_exts, oe_link)
1238                 OSC_EXTENT_DUMP(level, ext, "reading %d.\n", cnt++);
1239         /* osc_object_unlock(obj); */
1240 }
1241
1242 /* ------------------ osc extent end ------------------ */
1243
1244 static inline int osc_is_ready(struct osc_object *osc)
1245 {
1246         return !list_empty(&osc->oo_ready_item) ||
1247                !list_empty(&osc->oo_hp_ready_item);
1248 }
1249
1250 #define OSC_IO_DEBUG(OSC, STR, args...)                                        \
1251         CDEBUG(D_CACHE, "obj %p ready %d|%c|%c wr %d|%c|%c rd %d|%c " STR,     \
1252                (OSC), osc_is_ready(OSC),                                       \
1253                list_empty_marker(&(OSC)->oo_hp_ready_item),                    \
1254                list_empty_marker(&(OSC)->oo_ready_item),                       \
1255                atomic_read(&(OSC)->oo_nr_writes),                              \
1256                list_empty_marker(&(OSC)->oo_hp_exts),                          \
1257                list_empty_marker(&(OSC)->oo_urgent_exts),                      \
1258                atomic_read(&(OSC)->oo_nr_reads),                               \
1259                list_empty_marker(&(OSC)->oo_reading_exts),                     \
1260                ##args)
1261
1262 static int osc_make_ready(const struct lu_env *env, struct osc_async_page *oap,
1263                           int cmd)
1264 {
1265         struct osc_page *opg  = oap2osc_page(oap);
1266         struct cl_page  *page = oap2cl_page(oap);
1267         int result;
1268
1269         LASSERT(cmd == OBD_BRW_WRITE); /* no cached reads */
1270
1271         ENTRY;
1272         result = cl_page_make_ready(env, page, CRT_WRITE);
1273         if (result == 0)
1274                 opg->ops_submit_time = cfs_time_current();
1275         RETURN(result);
1276 }
1277
1278 static int osc_refresh_count(const struct lu_env *env,
1279                              struct osc_async_page *oap, int cmd)
1280 {
1281         struct osc_page  *opg = oap2osc_page(oap);
1282         pgoff_t index = osc_index(oap2osc(oap));
1283         struct cl_object *obj;
1284         struct cl_attr   *attr = &osc_env_info(env)->oti_attr;
1285
1286         int result;
1287         loff_t kms;
1288
1289         /* readpage queues with _COUNT_STABLE, shouldn't get here. */
1290         LASSERT(!(cmd & OBD_BRW_READ));
1291         LASSERT(opg != NULL);
1292         obj = opg->ops_cl.cpl_obj;
1293
1294         cl_object_attr_lock(obj);
1295         result = cl_object_attr_get(env, obj, attr);
1296         cl_object_attr_unlock(obj);
1297         if (result < 0)
1298                 return result;
1299         kms = attr->cat_kms;
1300         if (cl_offset(obj, index) >= kms)
1301                 /* catch race with truncate */
1302                 return 0;
1303         else if (cl_offset(obj, index + 1) > kms)
1304                 /* catch sub-page write at end of file */
1305                 return kms % PAGE_CACHE_SIZE;
1306         else
1307                 return PAGE_CACHE_SIZE;
1308 }
1309
1310 static int osc_completion(const struct lu_env *env, struct osc_async_page *oap,
1311                           int cmd, int rc)
1312 {
1313         struct osc_page   *opg  = oap2osc_page(oap);
1314         struct cl_page    *page = oap2cl_page(oap);
1315         enum cl_req_type   crt;
1316         int srvlock;
1317
1318         ENTRY;
1319
1320         cmd &= ~OBD_BRW_NOQUOTA;
1321         LASSERTF(equi(page->cp_state == CPS_PAGEIN,  cmd == OBD_BRW_READ),
1322                  "cp_state:%u, cmd:%d\n", page->cp_state, cmd);
1323         LASSERTF(equi(page->cp_state == CPS_PAGEOUT, cmd == OBD_BRW_WRITE),
1324                 "cp_state:%u, cmd:%d\n", page->cp_state, cmd);
1325         LASSERT(opg->ops_transfer_pinned);
1326
1327         crt = cmd == OBD_BRW_READ ? CRT_READ : CRT_WRITE;
1328         /* Clear opg->ops_transfer_pinned before VM lock is released. */
1329         opg->ops_transfer_pinned = 0;
1330
1331         opg->ops_submit_time = 0;
1332         srvlock = oap->oap_brw_flags & OBD_BRW_SRVLOCK;
1333
1334         /* statistic */
1335         if (rc == 0 && srvlock) {
1336                 struct lu_device *ld    = opg->ops_cl.cpl_obj->co_lu.lo_dev;
1337                 struct osc_stats *stats = &lu2osc_dev(ld)->od_stats;
1338                 size_t bytes = oap->oap_count;
1339
1340                 if (crt == CRT_READ)
1341                         stats->os_lockless_reads += bytes;
1342                 else
1343                         stats->os_lockless_writes += bytes;
1344         }
1345
1346         /*
1347          * This has to be the last operation with the page, as locks are
1348          * released in cl_page_completion() and nothing except for the
1349          * reference counter protects page from concurrent reclaim.
1350          */
1351         lu_ref_del(&page->cp_reference, "transfer", page);
1352
1353         cl_page_completion(env, page, crt, rc);
1354         cl_page_put(env, page);
1355
1356         RETURN(0);
1357 }
1358
1359 #define OSC_DUMP_GRANT(lvl, cli, fmt, args...) do {                     \
1360         struct client_obd *__tmp = (cli);                               \
1361         CDEBUG(lvl, "%s: grant { dirty: %ld/%ld dirty_pages: %ld/%lu "  \
1362                "dropped: %ld avail: %ld, dirty_grant: %ld, "            \
1363                "reserved: %ld, flight: %d } lru {in list: %ld, "        \
1364                "left: %ld, waiters: %d }" fmt "\n",                     \
1365                cli_name(__tmp),                                         \
1366                __tmp->cl_dirty_pages, __tmp->cl_dirty_max_pages,        \
1367                atomic_long_read(&obd_dirty_pages), obd_max_dirty_pages, \
1368                __tmp->cl_lost_grant, __tmp->cl_avail_grant,             \
1369                __tmp->cl_dirty_grant,                                   \
1370                __tmp->cl_reserved_grant, __tmp->cl_w_in_flight,         \
1371                atomic_long_read(&__tmp->cl_lru_in_list),                \
1372                atomic_long_read(&__tmp->cl_lru_busy),                   \
1373                atomic_read(&__tmp->cl_lru_shrinkers), ##args);          \
1374 } while (0)
1375
1376 /* caller must hold loi_list_lock */
1377 static void osc_consume_write_grant(struct client_obd *cli,
1378                                     struct brw_page *pga)
1379 {
1380         assert_spin_locked(&cli->cl_loi_list_lock);
1381         LASSERT(!(pga->flag & OBD_BRW_FROM_GRANT));
1382         atomic_long_inc(&obd_dirty_pages);
1383         cli->cl_dirty_pages++;
1384         pga->flag |= OBD_BRW_FROM_GRANT;
1385         CDEBUG(D_CACHE, "using %lu grant credits for brw %p page %p\n",
1386                PAGE_CACHE_SIZE, pga, pga->pg);
1387         osc_update_next_shrink(cli);
1388 }
1389
1390 /* the companion to osc_consume_write_grant, called when a brw has completed.
1391  * must be called with the loi lock held. */
1392 static void osc_release_write_grant(struct client_obd *cli,
1393                                     struct brw_page *pga)
1394 {
1395         ENTRY;
1396
1397         assert_spin_locked(&cli->cl_loi_list_lock);
1398         if (!(pga->flag & OBD_BRW_FROM_GRANT)) {
1399                 EXIT;
1400                 return;
1401         }
1402
1403         pga->flag &= ~OBD_BRW_FROM_GRANT;
1404         atomic_long_dec(&obd_dirty_pages);
1405         cli->cl_dirty_pages--;
1406         if (pga->flag & OBD_BRW_NOCACHE) {
1407                 pga->flag &= ~OBD_BRW_NOCACHE;
1408                 atomic_long_dec(&obd_dirty_transit_pages);
1409                 cli->cl_dirty_transit--;
1410         }
1411         EXIT;
1412 }
1413
1414 /**
1415  * To avoid sleeping with object lock held, it's good for us allocate enough
1416  * grants before entering into critical section.
1417  *
1418  * client_obd_list_lock held by caller
1419  */
1420 static int osc_reserve_grant(struct client_obd *cli, unsigned int bytes)
1421 {
1422         int rc = -EDQUOT;
1423
1424         if (cli->cl_avail_grant >= bytes) {
1425                 cli->cl_avail_grant    -= bytes;
1426                 cli->cl_reserved_grant += bytes;
1427                 rc = 0;
1428         }
1429         return rc;
1430 }
1431
1432 static void __osc_unreserve_grant(struct client_obd *cli,
1433                                   unsigned int reserved, unsigned int unused)
1434 {
1435         /* it's quite normal for us to get more grant than reserved.
1436          * Thinking about a case that two extents merged by adding a new
1437          * chunk, we can save one extent tax. If extent tax is greater than
1438          * one chunk, we can save more grant by adding a new chunk */
1439         cli->cl_reserved_grant -= reserved;
1440         if (unused > reserved) {
1441                 cli->cl_avail_grant += reserved;
1442                 cli->cl_lost_grant  += unused - reserved;
1443                 cli->cl_dirty_grant -= unused - reserved;
1444         } else {
1445                 cli->cl_avail_grant += unused;
1446                 cli->cl_dirty_grant += reserved - unused;
1447         }
1448 }
1449
1450 static void osc_unreserve_grant(struct client_obd *cli,
1451                                 unsigned int reserved, unsigned int unused)
1452 {
1453         spin_lock(&cli->cl_loi_list_lock);
1454         __osc_unreserve_grant(cli, reserved, unused);
1455         if (unused > 0)
1456                 osc_wake_cache_waiters(cli);
1457         spin_unlock(&cli->cl_loi_list_lock);
1458 }
1459
1460 /**
1461  * Free grant after IO is finished or canceled.
1462  *
1463  * @lost_grant is used to remember how many grants we have allocated but not
1464  * used, we should return these grants to OST. There're two cases where grants
1465  * can be lost:
1466  * 1. truncate;
1467  * 2. blocksize at OST is less than PAGE_CACHE_SIZE and a partial page was
1468  *    written. In this case OST may use less chunks to serve this partial
1469  *    write. OSTs don't actually know the page size on the client side. so
1470  *    clients have to calculate lost grant by the blocksize on the OST.
1471  *    See filter_grant_check() for details.
1472  */
1473 static void osc_free_grant(struct client_obd *cli, unsigned int nr_pages,
1474                            unsigned int lost_grant, unsigned int dirty_grant)
1475 {
1476         unsigned long grant;
1477
1478         grant = (1 << cli->cl_chunkbits) + cli->cl_grant_extent_tax;
1479
1480         spin_lock(&cli->cl_loi_list_lock);
1481         atomic_long_sub(nr_pages, &obd_dirty_pages);
1482         cli->cl_dirty_pages -= nr_pages;
1483         cli->cl_lost_grant += lost_grant;
1484         cli->cl_dirty_grant -= dirty_grant;
1485         if (cli->cl_avail_grant < grant && cli->cl_lost_grant >= grant) {
1486                 /* borrow some grant from truncate to avoid the case that
1487                  * truncate uses up all avail grant */
1488                 cli->cl_lost_grant -= grant;
1489                 cli->cl_avail_grant += grant;
1490         }
1491         osc_wake_cache_waiters(cli);
1492         spin_unlock(&cli->cl_loi_list_lock);
1493         CDEBUG(D_CACHE, "lost %u grant: %lu avail: %lu dirty: %lu/%lu\n",
1494                lost_grant, cli->cl_lost_grant,
1495                cli->cl_avail_grant, cli->cl_dirty_pages << PAGE_CACHE_SHIFT,
1496                cli->cl_dirty_grant);
1497 }
1498
1499 /**
1500  * The companion to osc_enter_cache(), called when @oap is no longer part of
1501  * the dirty accounting due to error.
1502  */
1503 static void osc_exit_cache(struct client_obd *cli, struct osc_async_page *oap)
1504 {
1505         spin_lock(&cli->cl_loi_list_lock);
1506         osc_release_write_grant(cli, &oap->oap_brw_page);
1507         spin_unlock(&cli->cl_loi_list_lock);
1508 }
1509
1510 /**
1511  * Non-blocking version of osc_enter_cache() that consumes grant only when it
1512  * is available.
1513  */
1514 static int osc_enter_cache_try(struct client_obd *cli,
1515                                struct osc_async_page *oap,
1516                                int bytes, int transient)
1517 {
1518         int rc;
1519
1520         OSC_DUMP_GRANT(D_CACHE, cli, "need:%d\n", bytes);
1521
1522         rc = osc_reserve_grant(cli, bytes);
1523         if (rc < 0)
1524                 return 0;
1525
1526         if (cli->cl_dirty_pages < cli->cl_dirty_max_pages &&
1527             1 + atomic_long_read(&obd_dirty_pages) <= obd_max_dirty_pages) {
1528                 osc_consume_write_grant(cli, &oap->oap_brw_page);
1529                 if (transient) {
1530                         cli->cl_dirty_transit++;
1531                         atomic_long_inc(&obd_dirty_transit_pages);
1532                         oap->oap_brw_flags |= OBD_BRW_NOCACHE;
1533                 }
1534                 rc = 1;
1535         } else {
1536                 __osc_unreserve_grant(cli, bytes, bytes);
1537                 rc = 0;
1538         }
1539         return rc;
1540 }
1541
1542 static int ocw_granted(struct client_obd *cli, struct osc_cache_waiter *ocw)
1543 {
1544         int rc;
1545         spin_lock(&cli->cl_loi_list_lock);
1546         rc = list_empty(&ocw->ocw_entry);
1547         spin_unlock(&cli->cl_loi_list_lock);
1548         return rc;
1549 }
1550
1551 /**
1552  * The main entry to reserve dirty page accounting. Usually the grant reserved
1553  * in this function will be freed in bulk in osc_free_grant() unless it fails
1554  * to add osc cache, in that case, it will be freed in osc_exit_cache().
1555  *
1556  * The process will be put into sleep if it's already run out of grant.
1557  */
1558 static int osc_enter_cache(const struct lu_env *env, struct client_obd *cli,
1559                            struct osc_async_page *oap, int bytes)
1560 {
1561         struct osc_object       *osc = oap->oap_obj;
1562         struct lov_oinfo        *loi = osc->oo_oinfo;
1563         struct osc_cache_waiter  ocw;
1564         struct l_wait_info       lwi;
1565         int                      rc = -EDQUOT;
1566         ENTRY;
1567
1568         lwi = LWI_TIMEOUT_INTR(cfs_time_seconds(AT_OFF ? obd_timeout : at_max),
1569                                NULL, LWI_ON_SIGNAL_NOOP, NULL);
1570
1571         OSC_DUMP_GRANT(D_CACHE, cli, "need:%d\n", bytes);
1572
1573         spin_lock(&cli->cl_loi_list_lock);
1574
1575         /* force the caller to try sync io.  this can jump the list
1576          * of queued writes and create a discontiguous rpc stream */
1577         if (OBD_FAIL_CHECK(OBD_FAIL_OSC_NO_GRANT) ||
1578             cli->cl_dirty_max_pages == 0 ||
1579             cli->cl_ar.ar_force_sync || loi->loi_ar.ar_force_sync) {
1580                 OSC_DUMP_GRANT(D_CACHE, cli, "forced sync i/o\n");
1581                 GOTO(out, rc = -EDQUOT);
1582         }
1583
1584         /* Hopefully normal case - cache space and write credits available */
1585         if (osc_enter_cache_try(cli, oap, bytes, 0)) {
1586                 OSC_DUMP_GRANT(D_CACHE, cli, "granted from cache\n");
1587                 GOTO(out, rc = 0);
1588         }
1589
1590         /* We can get here for two reasons: too many dirty pages in cache, or
1591          * run out of grants. In both cases we should write dirty pages out.
1592          * Adding a cache waiter will trigger urgent write-out no matter what
1593          * RPC size will be.
1594          * The exiting condition is no avail grants and no dirty pages caching,
1595          * that really means there is no space on the OST. */
1596         init_waitqueue_head(&ocw.ocw_waitq);
1597         ocw.ocw_oap   = oap;
1598         ocw.ocw_grant = bytes;
1599         while (cli->cl_dirty_pages > 0 || cli->cl_w_in_flight > 0) {
1600                 list_add_tail(&ocw.ocw_entry, &cli->cl_cache_waiters);
1601                 ocw.ocw_rc = 0;
1602                 spin_unlock(&cli->cl_loi_list_lock);
1603
1604                 osc_io_unplug_async(env, cli, NULL);
1605
1606                 CDEBUG(D_CACHE, "%s: sleeping for cache space @ %p for %p\n",
1607                        cli_name(cli), &ocw, oap);
1608
1609                 rc = l_wait_event(ocw.ocw_waitq, ocw_granted(cli, &ocw), &lwi);
1610
1611                 spin_lock(&cli->cl_loi_list_lock);
1612
1613                 if (rc < 0) {
1614                         /* l_wait_event is interrupted by signal or timed out */
1615                         list_del_init(&ocw.ocw_entry);
1616                         break;
1617                 }
1618                 LASSERT(list_empty(&ocw.ocw_entry));
1619                 rc = ocw.ocw_rc;
1620
1621                 if (rc != -EDQUOT)
1622                         break;
1623                 if (osc_enter_cache_try(cli, oap, bytes, 0)) {
1624                         rc = 0;
1625                         break;
1626                 }
1627         }
1628
1629         switch (rc) {
1630         case 0:
1631                 OSC_DUMP_GRANT(D_CACHE, cli, "finally got grant space\n");
1632                 break;
1633         case -ETIMEDOUT:
1634                 OSC_DUMP_GRANT(D_CACHE, cli,
1635                                "timeout, fall back to sync i/o\n");
1636                 osc_extent_tree_dump(D_CACHE, osc);
1637                 /* fall back to synchronous I/O */
1638                 rc = -EDQUOT;
1639                 break;
1640         case -EINTR:
1641                 /* Ensures restartability - LU-3581 */
1642                 OSC_DUMP_GRANT(D_CACHE, cli, "interrupted\n");
1643                 rc = -ERESTARTSYS;
1644                 break;
1645         case -EDQUOT:
1646                 OSC_DUMP_GRANT(D_CACHE, cli,
1647                                "no grant space, fall back to sync i/o\n");
1648                 break;
1649         default:
1650                 CDEBUG(D_CACHE, "%s: event for cache space @ %p never arrived "
1651                        "due to %d, fall back to sync i/o\n",
1652                        cli_name(cli), &ocw, rc);
1653                 break;
1654         }
1655         EXIT;
1656 out:
1657         spin_unlock(&cli->cl_loi_list_lock);
1658         RETURN(rc);
1659 }
1660
1661 /* caller must hold loi_list_lock */
1662 void osc_wake_cache_waiters(struct client_obd *cli)
1663 {
1664         struct list_head *l, *tmp;
1665         struct osc_cache_waiter *ocw;
1666
1667         ENTRY;
1668         list_for_each_safe(l, tmp, &cli->cl_cache_waiters) {
1669                 ocw = list_entry(l, struct osc_cache_waiter, ocw_entry);
1670                 list_del_init(&ocw->ocw_entry);
1671
1672                 ocw->ocw_rc = -EDQUOT;
1673                 /* we can't dirty more */
1674                 if ((cli->cl_dirty_pages  >= cli->cl_dirty_max_pages) ||
1675                     (1 + atomic_long_read(&obd_dirty_pages) >
1676                      obd_max_dirty_pages)) {
1677                         CDEBUG(D_CACHE, "no dirty room: dirty: %ld "
1678                                "osc max %ld, sys max %ld\n",
1679                                cli->cl_dirty_pages, cli->cl_dirty_max_pages,
1680                                obd_max_dirty_pages);
1681                         goto wakeup;
1682                 }
1683
1684                 if (osc_enter_cache_try(cli, ocw->ocw_oap, ocw->ocw_grant, 0))
1685                         ocw->ocw_rc = 0;
1686 wakeup:
1687                 CDEBUG(D_CACHE, "wake up %p for oap %p, avail grant %ld, %d\n",
1688                        ocw, ocw->ocw_oap, cli->cl_avail_grant, ocw->ocw_rc);
1689
1690                 wake_up(&ocw->ocw_waitq);
1691         }
1692
1693         EXIT;
1694 }
1695
1696 static int osc_max_rpc_in_flight(struct client_obd *cli, struct osc_object *osc)
1697 {
1698         int hprpc = !!list_empty(&osc->oo_hp_exts);
1699         return rpcs_in_flight(cli) >= cli->cl_max_rpcs_in_flight + hprpc;
1700 }
1701
1702 /* This maintains the lists of pending pages to read/write for a given object
1703  * (lop).  This is used by osc_check_rpcs->osc_next_obj() and osc_list_maint()
1704  * to quickly find objects that are ready to send an RPC. */
1705 static int osc_makes_rpc(struct client_obd *cli, struct osc_object *osc,
1706                          int cmd)
1707 {
1708         int invalid_import = 0;
1709         ENTRY;
1710
1711         /* if we have an invalid import we want to drain the queued pages
1712          * by forcing them through rpcs that immediately fail and complete
1713          * the pages.  recovery relies on this to empty the queued pages
1714          * before canceling the locks and evicting down the llite pages */
1715         if ((cli->cl_import == NULL || cli->cl_import->imp_invalid))
1716                 invalid_import = 1;
1717
1718         if (cmd & OBD_BRW_WRITE) {
1719                 if (atomic_read(&osc->oo_nr_writes) == 0)
1720                         RETURN(0);
1721                 if (invalid_import) {
1722                         CDEBUG(D_CACHE, "invalid import forcing RPC\n");
1723                         RETURN(1);
1724                 }
1725                 if (!list_empty(&osc->oo_hp_exts)) {
1726                         CDEBUG(D_CACHE, "high prio request forcing RPC\n");
1727                         RETURN(1);
1728                 }
1729                 if (!list_empty(&osc->oo_urgent_exts)) {
1730                         CDEBUG(D_CACHE, "urgent request forcing RPC\n");
1731                         RETURN(1);
1732                 }
1733                 /* trigger a write rpc stream as long as there are dirtiers
1734                  * waiting for space.  as they're waiting, they're not going to
1735                  * create more pages to coalesce with what's waiting.. */
1736                 if (!list_empty(&cli->cl_cache_waiters)) {
1737                         CDEBUG(D_CACHE, "cache waiters forcing RPC\n");
1738                         RETURN(1);
1739                 }
1740                 if (atomic_read(&osc->oo_nr_writes) >=
1741                     cli->cl_max_pages_per_rpc)
1742                         RETURN(1);
1743         } else {
1744                 if (atomic_read(&osc->oo_nr_reads) == 0)
1745                         RETURN(0);
1746                 if (invalid_import) {
1747                         CDEBUG(D_CACHE, "invalid import forcing RPC\n");
1748                         RETURN(1);
1749                 }
1750                 /* all read are urgent. */
1751                 if (!list_empty(&osc->oo_reading_exts))
1752                         RETURN(1);
1753         }
1754
1755         RETURN(0);
1756 }
1757
1758 static void osc_update_pending(struct osc_object *obj, int cmd, int delta)
1759 {
1760         struct client_obd *cli = osc_cli(obj);
1761         if (cmd & OBD_BRW_WRITE) {
1762                 atomic_add(delta, &obj->oo_nr_writes);
1763                 atomic_add(delta, &cli->cl_pending_w_pages);
1764                 LASSERT(atomic_read(&obj->oo_nr_writes) >= 0);
1765         } else {
1766                 atomic_add(delta, &obj->oo_nr_reads);
1767                 atomic_add(delta, &cli->cl_pending_r_pages);
1768                 LASSERT(atomic_read(&obj->oo_nr_reads) >= 0);
1769         }
1770         OSC_IO_DEBUG(obj, "update pending cmd %d delta %d.\n", cmd, delta);
1771 }
1772
1773 static int osc_makes_hprpc(struct osc_object *obj)
1774 {
1775         return !list_empty(&obj->oo_hp_exts);
1776 }
1777
1778 static void on_list(struct list_head *item, struct list_head *list,
1779                     int should_be_on)
1780 {
1781         if (list_empty(item) && should_be_on)
1782                 list_add_tail(item, list);
1783         else if (!list_empty(item) && !should_be_on)
1784                 list_del_init(item);
1785 }
1786
1787 /* maintain the osc's cli list membership invariants so that osc_send_oap_rpc
1788  * can find pages to build into rpcs quickly */
1789 static int __osc_list_maint(struct client_obd *cli, struct osc_object *osc)
1790 {
1791         if (osc_makes_hprpc(osc)) {
1792                 /* HP rpc */
1793                 on_list(&osc->oo_ready_item, &cli->cl_loi_ready_list, 0);
1794                 on_list(&osc->oo_hp_ready_item, &cli->cl_loi_hp_ready_list, 1);
1795         } else {
1796                 on_list(&osc->oo_hp_ready_item, &cli->cl_loi_hp_ready_list, 0);
1797                 on_list(&osc->oo_ready_item, &cli->cl_loi_ready_list,
1798                         osc_makes_rpc(cli, osc, OBD_BRW_WRITE) ||
1799                         osc_makes_rpc(cli, osc, OBD_BRW_READ));
1800         }
1801
1802         on_list(&osc->oo_write_item, &cli->cl_loi_write_list,
1803                 atomic_read(&osc->oo_nr_writes) > 0);
1804
1805         on_list(&osc->oo_read_item, &cli->cl_loi_read_list,
1806                 atomic_read(&osc->oo_nr_reads) > 0);
1807
1808         return osc_is_ready(osc);
1809 }
1810
1811 static int osc_list_maint(struct client_obd *cli, struct osc_object *osc)
1812 {
1813         int is_ready;
1814
1815         spin_lock(&cli->cl_loi_list_lock);
1816         is_ready = __osc_list_maint(cli, osc);
1817         spin_unlock(&cli->cl_loi_list_lock);
1818
1819         return is_ready;
1820 }
1821
1822 /* this is trying to propogate async writeback errors back up to the
1823  * application.  As an async write fails we record the error code for later if
1824  * the app does an fsync.  As long as errors persist we force future rpcs to be
1825  * sync so that the app can get a sync error and break the cycle of queueing
1826  * pages for which writeback will fail. */
1827 static void osc_process_ar(struct osc_async_rc *ar, __u64 xid,
1828                            int rc)
1829 {
1830         if (rc) {
1831                 if (!ar->ar_rc)
1832                         ar->ar_rc = rc;
1833
1834                 ar->ar_force_sync = 1;
1835                 ar->ar_min_xid = ptlrpc_sample_next_xid();
1836                 return;
1837
1838         }
1839
1840         if (ar->ar_force_sync && (xid >= ar->ar_min_xid))
1841                 ar->ar_force_sync = 0;
1842 }
1843
1844 /* this must be called holding the loi list lock to give coverage to exit_cache,
1845  * async_flag maintenance, and oap_request */
1846 static void osc_ap_completion(const struct lu_env *env, struct client_obd *cli,
1847                               struct osc_async_page *oap, int sent, int rc)
1848 {
1849         struct osc_object *osc = oap->oap_obj;
1850         struct lov_oinfo  *loi = osc->oo_oinfo;
1851         __u64 xid = 0;
1852
1853         ENTRY;
1854         if (oap->oap_request != NULL) {
1855                 xid = ptlrpc_req_xid(oap->oap_request);
1856                 ptlrpc_req_finished(oap->oap_request);
1857                 oap->oap_request = NULL;
1858         }
1859
1860         /* As the transfer for this page is being done, clear the flags */
1861         spin_lock(&oap->oap_lock);
1862         oap->oap_async_flags = 0;
1863         spin_unlock(&oap->oap_lock);
1864         oap->oap_interrupted = 0;
1865
1866         if (oap->oap_cmd & OBD_BRW_WRITE && xid > 0) {
1867                 spin_lock(&cli->cl_loi_list_lock);
1868                 osc_process_ar(&cli->cl_ar, xid, rc);
1869                 osc_process_ar(&loi->loi_ar, xid, rc);
1870                 spin_unlock(&cli->cl_loi_list_lock);
1871         }
1872
1873         rc = osc_completion(env, oap, oap->oap_cmd, rc);
1874         if (rc)
1875                 CERROR("completion on oap %p obj %p returns %d.\n",
1876                        oap, osc, rc);
1877
1878         EXIT;
1879 }
1880
1881 /**
1882  * Try to add extent to one RPC. We need to think about the following things:
1883  * - # of pages must not be over max_pages_per_rpc
1884  * - extent must be compatible with previous ones
1885  */
1886 static int try_to_add_extent_for_io(struct client_obd *cli,
1887                                     struct osc_extent *ext,
1888                                     struct list_head *rpclist,
1889                                     unsigned int *pc, unsigned int *max_pages)
1890 {
1891         struct osc_extent *tmp;
1892         struct osc_async_page *oap = list_first_entry(&ext->oe_pages,
1893                                                       struct osc_async_page,
1894                                                       oap_pending_item);
1895         ENTRY;
1896
1897         EASSERT((ext->oe_state == OES_CACHE || ext->oe_state == OES_LOCK_DONE),
1898                 ext);
1899
1900         *max_pages = max(ext->oe_mppr, *max_pages);
1901         if (*pc + ext->oe_nr_pages > *max_pages)
1902                 RETURN(0);
1903
1904         list_for_each_entry(tmp, rpclist, oe_link) {
1905                 struct osc_async_page *oap2;
1906                 oap2 = list_first_entry(&tmp->oe_pages, struct osc_async_page,
1907                                         oap_pending_item);
1908                 EASSERT(tmp->oe_owner == current, tmp);
1909 #if 0
1910                 if (overlapped(tmp, ext)) {
1911                         OSC_EXTENT_DUMP(D_ERROR, tmp, "overlapped %p.\n", ext);
1912                         EASSERT(0, ext);
1913                 }
1914 #endif
1915                 if (oap2cl_page(oap)->cp_type != oap2cl_page(oap2)->cp_type) {
1916                         CDEBUG(D_CACHE, "Do not permit different type of IO"
1917                                         " for a same RPC\n");
1918                         RETURN(0);
1919                 }
1920
1921                 if (tmp->oe_srvlock != ext->oe_srvlock ||
1922                     !tmp->oe_grants != !ext->oe_grants ||
1923                     tmp->oe_no_merge || ext->oe_no_merge)
1924                         RETURN(0);
1925
1926                 /* remove break for strict check */
1927                 break;
1928         }
1929
1930         *pc += ext->oe_nr_pages;
1931         list_move_tail(&ext->oe_link, rpclist);
1932         ext->oe_owner = current;
1933         RETURN(1);
1934 }
1935
1936 /**
1937  * In order to prevent multiple ptlrpcd from breaking contiguous extents,
1938  * get_write_extent() takes all appropriate extents in atomic.
1939  *
1940  * The following policy is used to collect extents for IO:
1941  * 1. Add as many HP extents as possible;
1942  * 2. Add the first urgent extent in urgent extent list and take it out of
1943  *    urgent list;
1944  * 3. Add subsequent extents of this urgent extent;
1945  * 4. If urgent list is not empty, goto 2;
1946  * 5. Traverse the extent tree from the 1st extent;
1947  * 6. Above steps exit if there is no space in this RPC.
1948  */
1949 static unsigned int get_write_extents(struct osc_object *obj,
1950                                       struct list_head *rpclist)
1951 {
1952         struct client_obd *cli = osc_cli(obj);
1953         struct osc_extent *ext;
1954         unsigned int page_count = 0;
1955         unsigned int max_pages = cli->cl_max_pages_per_rpc;
1956
1957         LASSERT(osc_object_is_locked(obj));
1958         while (!list_empty(&obj->oo_hp_exts)) {
1959                 ext = list_entry(obj->oo_hp_exts.next, struct osc_extent,
1960                                  oe_link);
1961                 LASSERT(ext->oe_state == OES_CACHE);
1962                 if (!try_to_add_extent_for_io(cli, ext, rpclist, &page_count,
1963                                               &max_pages))
1964                         return page_count;
1965                 EASSERT(ext->oe_nr_pages <= max_pages, ext);
1966         }
1967         if (page_count == max_pages)
1968                 return page_count;
1969
1970         while (!list_empty(&obj->oo_urgent_exts)) {
1971                 ext = list_entry(obj->oo_urgent_exts.next,
1972                                  struct osc_extent, oe_link);
1973                 if (!try_to_add_extent_for_io(cli, ext, rpclist, &page_count,
1974                                               &max_pages))
1975                         return page_count;
1976
1977                 if (!ext->oe_intree)
1978                         continue;
1979
1980                 while ((ext = next_extent(ext)) != NULL) {
1981                         if ((ext->oe_state != OES_CACHE) ||
1982                             (!list_empty(&ext->oe_link) &&
1983                              ext->oe_owner != NULL))
1984                                 continue;
1985
1986                         if (!try_to_add_extent_for_io(cli, ext, rpclist,
1987                                                       &page_count, &max_pages))
1988                                 return page_count;
1989                 }
1990         }
1991         if (page_count == max_pages)
1992                 return page_count;
1993
1994         ext = first_extent(obj);
1995         while (ext != NULL) {
1996                 if ((ext->oe_state != OES_CACHE) ||
1997                     /* this extent may be already in current rpclist */
1998                     (!list_empty(&ext->oe_link) && ext->oe_owner != NULL)) {
1999                         ext = next_extent(ext);
2000                         continue;
2001                 }
2002
2003                 if (!try_to_add_extent_for_io(cli, ext, rpclist, &page_count,
2004                                               &max_pages))
2005                         return page_count;
2006
2007                 ext = next_extent(ext);
2008         }
2009         return page_count;
2010 }
2011
2012 static int
2013 osc_send_write_rpc(const struct lu_env *env, struct client_obd *cli,
2014                    struct osc_object *osc)
2015 __must_hold(osc)
2016 {
2017         struct list_head   rpclist = LIST_HEAD_INIT(rpclist);
2018         struct osc_extent *ext;
2019         struct osc_extent *tmp;
2020         struct osc_extent *first = NULL;
2021         unsigned int page_count = 0;
2022         int srvlock = 0;
2023         int rc = 0;
2024         ENTRY;
2025
2026         LASSERT(osc_object_is_locked(osc));
2027
2028         page_count = get_write_extents(osc, &rpclist);
2029         LASSERT(equi(page_count == 0, list_empty(&rpclist)));
2030
2031         if (list_empty(&rpclist))
2032                 RETURN(0);
2033
2034         osc_update_pending(osc, OBD_BRW_WRITE, -page_count);
2035
2036         list_for_each_entry(ext, &rpclist, oe_link) {
2037                 LASSERT(ext->oe_state == OES_CACHE ||
2038                         ext->oe_state == OES_LOCK_DONE);
2039                 if (ext->oe_state == OES_CACHE)
2040                         osc_extent_state_set(ext, OES_LOCKING);
2041                 else
2042                         osc_extent_state_set(ext, OES_RPC);
2043         }
2044
2045         /* we're going to grab page lock, so release object lock because
2046          * lock order is page lock -> object lock. */
2047         osc_object_unlock(osc);
2048
2049         list_for_each_entry_safe(ext, tmp, &rpclist, oe_link) {
2050                 if (ext->oe_state == OES_LOCKING) {
2051                         rc = osc_extent_make_ready(env, ext);
2052                         if (unlikely(rc < 0)) {
2053                                 list_del_init(&ext->oe_link);
2054                                 osc_extent_finish(env, ext, 0, rc);
2055                                 continue;
2056                         }
2057                 }
2058                 if (first == NULL) {
2059                         first = ext;
2060                         srvlock = ext->oe_srvlock;
2061                 } else {
2062                         LASSERT(srvlock == ext->oe_srvlock);
2063                 }
2064         }
2065
2066         if (!list_empty(&rpclist)) {
2067                 LASSERT(page_count > 0);
2068                 rc = osc_build_rpc(env, cli, &rpclist, OBD_BRW_WRITE);
2069                 LASSERT(list_empty(&rpclist));
2070         }
2071
2072         osc_object_lock(osc);
2073         RETURN(rc);
2074 }
2075
2076 /**
2077  * prepare pages for ASYNC io and put pages in send queue.
2078  *
2079  * \param cmd OBD_BRW_* macroses
2080  * \param lop pending pages
2081  *
2082  * \return zero if no page added to send queue.
2083  * \return 1 if pages successfully added to send queue.
2084  * \return negative on errors.
2085  */
2086 static int
2087 osc_send_read_rpc(const struct lu_env *env, struct client_obd *cli,
2088                   struct osc_object *osc)
2089 __must_hold(osc)
2090 {
2091         struct osc_extent *ext;
2092         struct osc_extent *next;
2093         struct list_head rpclist = LIST_HEAD_INIT(rpclist);
2094         unsigned int page_count = 0;
2095         unsigned int max_pages = cli->cl_max_pages_per_rpc;
2096         int rc = 0;
2097         ENTRY;
2098
2099         LASSERT(osc_object_is_locked(osc));
2100         list_for_each_entry_safe(ext, next,
2101                                      &osc->oo_reading_exts, oe_link) {
2102                 EASSERT(ext->oe_state == OES_LOCK_DONE, ext);
2103                 if (!try_to_add_extent_for_io(cli, ext, &rpclist, &page_count,
2104                                               &max_pages))
2105                         break;
2106                 osc_extent_state_set(ext, OES_RPC);
2107                 EASSERT(ext->oe_nr_pages <= max_pages, ext);
2108         }
2109         LASSERT(page_count <= max_pages);
2110
2111         osc_update_pending(osc, OBD_BRW_READ, -page_count);
2112
2113         if (!list_empty(&rpclist)) {
2114                 osc_object_unlock(osc);
2115
2116                 LASSERT(page_count > 0);
2117                 rc = osc_build_rpc(env, cli, &rpclist, OBD_BRW_READ);
2118                 LASSERT(list_empty(&rpclist));
2119
2120                 osc_object_lock(osc);
2121         }
2122         RETURN(rc);
2123 }
2124
2125 #define list_to_obj(list, item) ({                                            \
2126         struct list_head *__tmp = (list)->next;                               \
2127         list_del_init(__tmp);                                         \
2128         list_entry(__tmp, struct osc_object, oo_##item);                      \
2129 })
2130
2131 /* This is called by osc_check_rpcs() to find which objects have pages that
2132  * we could be sending.  These lists are maintained by osc_makes_rpc(). */
2133 static struct osc_object *osc_next_obj(struct client_obd *cli)
2134 {
2135         ENTRY;
2136
2137         /* First return objects that have blocked locks so that they
2138          * will be flushed quickly and other clients can get the lock,
2139          * then objects which have pages ready to be stuffed into RPCs */
2140         if (!list_empty(&cli->cl_loi_hp_ready_list))
2141                 RETURN(list_to_obj(&cli->cl_loi_hp_ready_list, hp_ready_item));
2142         if (!list_empty(&cli->cl_loi_ready_list))
2143                 RETURN(list_to_obj(&cli->cl_loi_ready_list, ready_item));
2144
2145         /* then if we have cache waiters, return all objects with queued
2146          * writes.  This is especially important when many small files
2147          * have filled up the cache and not been fired into rpcs because
2148          * they don't pass the nr_pending/object threshhold */
2149         if (!list_empty(&cli->cl_cache_waiters) &&
2150             !list_empty(&cli->cl_loi_write_list))
2151                 RETURN(list_to_obj(&cli->cl_loi_write_list, write_item));
2152
2153         /* then return all queued objects when we have an invalid import
2154          * so that they get flushed */
2155         if (cli->cl_import == NULL || cli->cl_import->imp_invalid) {
2156                 if (!list_empty(&cli->cl_loi_write_list))
2157                         RETURN(list_to_obj(&cli->cl_loi_write_list,
2158                                            write_item));
2159                 if (!list_empty(&cli->cl_loi_read_list))
2160                         RETURN(list_to_obj(&cli->cl_loi_read_list,
2161                                            read_item));
2162         }
2163         RETURN(NULL);
2164 }
2165
2166 /* called with the loi list lock held */
2167 static void osc_check_rpcs(const struct lu_env *env, struct client_obd *cli)
2168 __must_hold(&cli->cl_loi_list_lock)
2169 {
2170         struct osc_object *osc;
2171         int rc = 0;
2172         ENTRY;
2173
2174         while ((osc = osc_next_obj(cli)) != NULL) {
2175                 struct cl_object *obj = osc2cl(osc);
2176                 struct lu_ref_link link;
2177
2178                 OSC_IO_DEBUG(osc, "%lu in flight\n", rpcs_in_flight(cli));
2179
2180                 if (osc_max_rpc_in_flight(cli, osc)) {
2181                         __osc_list_maint(cli, osc);
2182                         break;
2183                 }
2184
2185                 cl_object_get(obj);
2186                 spin_unlock(&cli->cl_loi_list_lock);
2187                 lu_object_ref_add_at(&obj->co_lu, &link, "check", current);
2188
2189                 /* attempt some read/write balancing by alternating between
2190                  * reads and writes in an object.  The makes_rpc checks here
2191                  * would be redundant if we were getting read/write work items
2192                  * instead of objects.  we don't want send_oap_rpc to drain a
2193                  * partial read pending queue when we're given this object to
2194                  * do io on writes while there are cache waiters */
2195                 osc_object_lock(osc);
2196                 if (osc_makes_rpc(cli, osc, OBD_BRW_WRITE)) {
2197                         rc = osc_send_write_rpc(env, cli, osc);
2198                         if (rc < 0) {
2199                                 CERROR("Write request failed with %d\n", rc);
2200
2201                                 /* osc_send_write_rpc failed, mostly because of
2202                                  * memory pressure.
2203                                  *
2204                                  * It can't break here, because if:
2205                                  *  - a page was submitted by osc_io_submit, so
2206                                  *    page locked;
2207                                  *  - no request in flight
2208                                  *  - no subsequent request
2209                                  * The system will be in live-lock state,
2210                                  * because there is no chance to call
2211                                  * osc_io_unplug() and osc_check_rpcs() any
2212                                  * more. pdflush can't help in this case,
2213                                  * because it might be blocked at grabbing
2214                                  * the page lock as we mentioned.
2215                                  *
2216                                  * Anyway, continue to drain pages. */
2217                                 /* break; */
2218                         }
2219                 }
2220                 if (osc_makes_rpc(cli, osc, OBD_BRW_READ)) {
2221                         rc = osc_send_read_rpc(env, cli, osc);
2222                         if (rc < 0)
2223                                 CERROR("Read request failed with %d\n", rc);
2224                 }
2225                 osc_object_unlock(osc);
2226
2227                 osc_list_maint(cli, osc);
2228                 lu_object_ref_del_at(&obj->co_lu, &link, "check", current);
2229                 cl_object_put(env, obj);
2230
2231                 spin_lock(&cli->cl_loi_list_lock);
2232         }
2233 }
2234
2235 static int osc_io_unplug0(const struct lu_env *env, struct client_obd *cli,
2236                           struct osc_object *osc, int async)
2237 {
2238         int rc = 0;
2239
2240         if (osc != NULL && osc_list_maint(cli, osc) == 0)
2241                 return 0;
2242
2243         if (!async) {
2244                 spin_lock(&cli->cl_loi_list_lock);
2245                 osc_check_rpcs(env, cli);
2246                 spin_unlock(&cli->cl_loi_list_lock);
2247         } else {
2248                 CDEBUG(D_CACHE, "Queue writeback work for client %p.\n", cli);
2249                 LASSERT(cli->cl_writeback_work != NULL);
2250                 rc = ptlrpcd_queue_work(cli->cl_writeback_work);
2251         }
2252         return rc;
2253 }
2254
2255 static int osc_io_unplug_async(const struct lu_env *env,
2256                                 struct client_obd *cli, struct osc_object *osc)
2257 {
2258         return osc_io_unplug0(env, cli, osc, 1);
2259 }
2260
2261 void osc_io_unplug(const struct lu_env *env, struct client_obd *cli,
2262                    struct osc_object *osc)
2263 {
2264         (void)osc_io_unplug0(env, cli, osc, 0);
2265 }
2266
2267 int osc_prep_async_page(struct osc_object *osc, struct osc_page *ops,
2268                         struct page *page, loff_t offset)
2269 {
2270         struct obd_export     *exp = osc_export(osc);
2271         struct osc_async_page *oap = &ops->ops_oap;
2272         ENTRY;
2273
2274         if (!page)
2275                 return cfs_size_round(sizeof(*oap));
2276
2277         oap->oap_magic = OAP_MAGIC;
2278         oap->oap_cli = &exp->exp_obd->u.cli;
2279         oap->oap_obj = osc;
2280
2281         oap->oap_page = page;
2282         oap->oap_obj_off = offset;
2283         LASSERT(!(offset & ~PAGE_MASK));
2284
2285         if (cfs_capable(CFS_CAP_SYS_RESOURCE))
2286                 oap->oap_brw_flags = OBD_BRW_NOQUOTA;
2287
2288         INIT_LIST_HEAD(&oap->oap_pending_item);
2289         INIT_LIST_HEAD(&oap->oap_rpc_item);
2290
2291         spin_lock_init(&oap->oap_lock);
2292         CDEBUG(D_INFO, "oap %p page %p obj off "LPU64"\n",
2293                oap, page, oap->oap_obj_off);
2294         RETURN(0);
2295 }
2296
2297 int osc_queue_async_io(const struct lu_env *env, struct cl_io *io,
2298                        struct osc_page *ops)
2299 {
2300         struct osc_io *oio = osc_env_io(env);
2301         struct osc_extent     *ext = NULL;
2302         struct osc_async_page *oap = &ops->ops_oap;
2303         struct client_obd     *cli = oap->oap_cli;
2304         struct osc_object     *osc = oap->oap_obj;
2305         pgoff_t index;
2306         unsigned int tmp;
2307         unsigned int grants = 0;
2308         u32    brw_flags = OBD_BRW_ASYNC;
2309         int    cmd = OBD_BRW_WRITE;
2310         int    need_release = 0;
2311         int    rc = 0;
2312         ENTRY;
2313
2314         if (oap->oap_magic != OAP_MAGIC)
2315                 RETURN(-EINVAL);
2316
2317         if (cli->cl_import == NULL || cli->cl_import->imp_invalid)
2318                 RETURN(-EIO);
2319
2320         if (!list_empty(&oap->oap_pending_item) ||
2321             !list_empty(&oap->oap_rpc_item))
2322                 RETURN(-EBUSY);
2323
2324         /* Set the OBD_BRW_SRVLOCK before the page is queued. */
2325         brw_flags |= ops->ops_srvlock ? OBD_BRW_SRVLOCK : 0;
2326         if (cfs_capable(CFS_CAP_SYS_RESOURCE)) {
2327                 brw_flags |= OBD_BRW_NOQUOTA;
2328                 cmd |= OBD_BRW_NOQUOTA;
2329         }
2330
2331         /* check if the file's owner/group is over quota */
2332         if (!(cmd & OBD_BRW_NOQUOTA)) {
2333                 struct cl_object *obj;
2334                 struct cl_attr   *attr;
2335                 unsigned int qid[LL_MAXQUOTAS];
2336
2337                 obj = cl_object_top(&osc->oo_cl);
2338                 attr = &osc_env_info(env)->oti_attr;
2339
2340                 cl_object_attr_lock(obj);
2341                 rc = cl_object_attr_get(env, obj, attr);
2342                 cl_object_attr_unlock(obj);
2343
2344                 qid[USRQUOTA] = attr->cat_uid;
2345                 qid[GRPQUOTA] = attr->cat_gid;
2346                 if (rc == 0 && osc_quota_chkdq(cli, qid) == NO_QUOTA)
2347                         rc = -EDQUOT;
2348                 if (rc)
2349                         RETURN(rc);
2350         }
2351
2352         oap->oap_cmd = cmd;
2353         oap->oap_page_off = ops->ops_from;
2354         oap->oap_count = ops->ops_to - ops->ops_from;
2355         /* No need to hold a lock here,
2356          * since this page is not in any list yet. */
2357         oap->oap_async_flags = 0;
2358         oap->oap_brw_flags = brw_flags;
2359
2360         OSC_IO_DEBUG(osc, "oap %p page %p added for cmd %d\n",
2361                      oap, oap->oap_page, oap->oap_cmd & OBD_BRW_RWMASK);
2362
2363         index = osc_index(oap2osc(oap));
2364
2365         /* Add this page into extent by the following steps:
2366          * 1. if there exists an active extent for this IO, mostly this page
2367          *    can be added to the active extent and sometimes we need to
2368          *    expand extent to accomodate this page;
2369          * 2. otherwise, a new extent will be allocated. */
2370
2371         ext = oio->oi_active;
2372         if (ext != NULL && ext->oe_start <= index && ext->oe_max_end >= index) {
2373                 /* one chunk plus extent overhead must be enough to write this
2374                  * page */
2375                 grants = (1 << cli->cl_chunkbits) + cli->cl_grant_extent_tax;
2376                 if (ext->oe_end >= index)
2377                         grants = 0;
2378
2379                 /* it doesn't need any grant to dirty this page */
2380                 spin_lock(&cli->cl_loi_list_lock);
2381                 rc = osc_enter_cache_try(cli, oap, grants, 0);
2382                 spin_unlock(&cli->cl_loi_list_lock);
2383                 if (rc == 0) { /* try failed */
2384                         grants = 0;
2385                         need_release = 1;
2386                 } else if (ext->oe_end < index) {
2387                         tmp = grants;
2388                         /* try to expand this extent */
2389                         rc = osc_extent_expand(ext, index, &tmp);
2390                         if (rc < 0) {
2391                                 need_release = 1;
2392                                 /* don't free reserved grant */
2393                         } else {
2394                                 OSC_EXTENT_DUMP(D_CACHE, ext,
2395                                                 "expanded for %lu.\n", index);
2396                                 osc_unreserve_grant(cli, grants, tmp);
2397                                 grants = 0;
2398                         }
2399                 }
2400                 rc = 0;
2401         } else if (ext != NULL) {
2402                 /* index is located outside of active extent */
2403                 need_release = 1;
2404         }
2405         if (need_release) {
2406                 osc_extent_release(env, ext);
2407                 oio->oi_active = NULL;
2408                 ext = NULL;
2409         }
2410
2411         if (ext == NULL) {
2412                 tmp = (1 << cli->cl_chunkbits) + cli->cl_grant_extent_tax;
2413
2414                 /* try to find new extent to cover this page */
2415                 LASSERT(oio->oi_active == NULL);
2416                 /* we may have allocated grant for this page if we failed
2417                  * to expand the previous active extent. */
2418                 LASSERT(ergo(grants > 0, grants >= tmp));
2419
2420                 rc = 0;
2421                 if (grants == 0) {
2422                         /* we haven't allocated grant for this page. */
2423                         rc = osc_enter_cache(env, cli, oap, tmp);
2424                         if (rc == 0)
2425                                 grants = tmp;
2426                 }
2427
2428                 tmp = grants;
2429                 if (rc == 0) {
2430                         ext = osc_extent_find(env, osc, index, &tmp);
2431                         if (IS_ERR(ext)) {
2432                                 LASSERT(tmp == grants);
2433                                 osc_exit_cache(cli, oap);
2434                                 rc = PTR_ERR(ext);
2435                                 ext = NULL;
2436                         } else {
2437                                 oio->oi_active = ext;
2438                         }
2439                 }
2440                 if (grants > 0)
2441                         osc_unreserve_grant(cli, grants, tmp);
2442         }
2443
2444         LASSERT(ergo(rc == 0, ext != NULL));
2445         if (ext != NULL) {
2446                 EASSERTF(ext->oe_end >= index && ext->oe_start <= index,
2447                          ext, "index = %lu.\n", index);
2448                 LASSERT((oap->oap_brw_flags & OBD_BRW_FROM_GRANT) != 0);
2449
2450                 osc_object_lock(osc);
2451                 if (ext->oe_nr_pages == 0)
2452                         ext->oe_srvlock = ops->ops_srvlock;
2453                 else
2454                         LASSERT(ext->oe_srvlock == ops->ops_srvlock);
2455                 ++ext->oe_nr_pages;
2456                 list_add_tail(&oap->oap_pending_item, &ext->oe_pages);
2457                 osc_object_unlock(osc);
2458         }
2459         RETURN(rc);
2460 }
2461
2462 int osc_teardown_async_page(const struct lu_env *env,
2463                             struct osc_object *obj, struct osc_page *ops)
2464 {
2465         struct osc_async_page *oap = &ops->ops_oap;
2466         int rc = 0;
2467         ENTRY;
2468
2469         LASSERT(oap->oap_magic == OAP_MAGIC);
2470
2471         CDEBUG(D_INFO, "teardown oap %p page %p at index %lu.\n",
2472                oap, ops, osc_index(oap2osc(oap)));
2473
2474         if (!list_empty(&oap->oap_rpc_item)) {
2475                 CDEBUG(D_CACHE, "oap %p is not in cache.\n", oap);
2476                 rc = -EBUSY;
2477         } else if (!list_empty(&oap->oap_pending_item)) {
2478                 struct osc_extent *ext = NULL;
2479
2480                 osc_object_lock(obj);
2481                 ext = osc_extent_lookup(obj, osc_index(oap2osc(oap)));
2482                 osc_object_unlock(obj);
2483                 /* only truncated pages are allowed to be taken out.
2484                  * See osc_extent_truncate() and osc_cache_truncate_start()
2485                  * for details. */
2486                 if (ext != NULL && ext->oe_state != OES_TRUNC) {
2487                         OSC_EXTENT_DUMP(D_ERROR, ext, "trunc at %lu.\n",
2488                                         osc_index(oap2osc(oap)));
2489                         rc = -EBUSY;
2490                 }
2491                 if (ext != NULL)
2492                         osc_extent_put(env, ext);
2493         }
2494         RETURN(rc);
2495 }
2496
2497 /**
2498  * This is called when a page is picked up by kernel to write out.
2499  *
2500  * We should find out the corresponding extent and add the whole extent
2501  * into urgent list. The extent may be being truncated or used, handle it
2502  * carefully.
2503  */
2504 int osc_flush_async_page(const struct lu_env *env, struct cl_io *io,
2505                          struct osc_page *ops)
2506 {
2507         struct osc_extent *ext   = NULL;
2508         struct osc_object *obj   = cl2osc(ops->ops_cl.cpl_obj);
2509         struct cl_page    *cp    = ops->ops_cl.cpl_page;
2510         pgoff_t            index = osc_index(ops);
2511         struct osc_async_page *oap = &ops->ops_oap;
2512         bool unplug = false;
2513         int rc = 0;
2514         ENTRY;
2515
2516         osc_object_lock(obj);
2517         ext = osc_extent_lookup(obj, index);
2518         if (ext == NULL) {
2519                 osc_extent_tree_dump(D_ERROR, obj);
2520                 LASSERTF(0, "page index %lu is NOT covered.\n", index);
2521         }
2522
2523         switch (ext->oe_state) {
2524         case OES_RPC:
2525         case OES_LOCK_DONE:
2526                 CL_PAGE_DEBUG(D_ERROR, env, cp, "flush an in-rpc page?\n");
2527                 LASSERT(0);
2528                 break;
2529         case OES_LOCKING:
2530                 /* If we know this extent is being written out, we should abort
2531                  * so that the writer can make this page ready. Otherwise, there
2532                  * exists a deadlock problem because other process can wait for
2533                  * page writeback bit holding page lock; and meanwhile in
2534                  * vvp_page_make_ready(), we need to grab page lock before
2535                  * really sending the RPC. */
2536         case OES_TRUNC:
2537                 /* race with truncate, page will be redirtied */
2538         case OES_ACTIVE:
2539                 /* The extent is active so we need to abort and let the caller
2540                  * re-dirty the page. If we continued on here, and we were the
2541                  * one making the extent active, we could deadlock waiting for
2542                  * the page writeback to clear but it won't because the extent
2543                  * is active and won't be written out. */
2544                 GOTO(out, rc = -EAGAIN);
2545         default:
2546                 break;
2547         }
2548
2549         rc = cl_page_prep(env, io, cp, CRT_WRITE);
2550         if (rc)
2551                 GOTO(out, rc);
2552
2553         spin_lock(&oap->oap_lock);
2554         oap->oap_async_flags |= ASYNC_READY|ASYNC_URGENT;
2555         spin_unlock(&oap->oap_lock);
2556
2557         if (memory_pressure_get())
2558                 ext->oe_memalloc = 1;
2559
2560         ext->oe_urgent = 1;
2561         if (ext->oe_state == OES_CACHE) {
2562                 OSC_EXTENT_DUMP(D_CACHE, ext,
2563                                 "flush page %p make it urgent.\n", oap);
2564                 if (list_empty(&ext->oe_link))
2565                         list_add_tail(&ext->oe_link, &obj->oo_urgent_exts);
2566                 unplug = true;
2567         }
2568         rc = 0;
2569         EXIT;
2570
2571 out:
2572         osc_object_unlock(obj);
2573         osc_extent_put(env, ext);
2574         if (unplug)
2575                 osc_io_unplug_async(env, osc_cli(obj), obj);
2576         return rc;
2577 }
2578
2579 /**
2580  * this is called when a sync waiter receives an interruption.  Its job is to
2581  * get the caller woken as soon as possible.  If its page hasn't been put in an
2582  * rpc yet it can dequeue immediately.  Otherwise it has to mark the rpc as
2583  * desiring interruption which will forcefully complete the rpc once the rpc
2584  * has timed out.
2585  */
2586 int osc_cancel_async_page(const struct lu_env *env, struct osc_page *ops)
2587 {
2588         struct osc_async_page *oap = &ops->ops_oap;
2589         struct osc_object     *obj = oap->oap_obj;
2590         struct client_obd     *cli = osc_cli(obj);
2591         struct osc_extent     *ext;
2592         struct osc_extent     *found = NULL;
2593         struct list_head            *plist;
2594         pgoff_t index = osc_index(ops);
2595         int     rc = -EBUSY;
2596         int     cmd;
2597         ENTRY;
2598
2599         LASSERT(!oap->oap_interrupted);
2600         oap->oap_interrupted = 1;
2601
2602         /* Find out the caching extent */
2603         osc_object_lock(obj);
2604         if (oap->oap_cmd & OBD_BRW_WRITE) {
2605                 plist = &obj->oo_urgent_exts;
2606                 cmd   = OBD_BRW_WRITE;
2607         } else {
2608                 plist = &obj->oo_reading_exts;
2609                 cmd   = OBD_BRW_READ;
2610         }
2611         list_for_each_entry(ext, plist, oe_link) {
2612                 if (ext->oe_start <= index && ext->oe_end >= index) {
2613                         LASSERT(ext->oe_state == OES_LOCK_DONE);
2614                         /* For OES_LOCK_DONE state extent, it has already held
2615                          * a refcount for RPC. */
2616                         found = osc_extent_get(ext);
2617                         break;
2618                 }
2619         }
2620         if (found != NULL) {
2621                 list_del_init(&found->oe_link);
2622                 osc_update_pending(obj, cmd, -found->oe_nr_pages);
2623                 osc_object_unlock(obj);
2624
2625                 osc_extent_finish(env, found, 0, -EINTR);
2626                 osc_extent_put(env, found);
2627                 rc = 0;
2628         } else {
2629                 osc_object_unlock(obj);
2630                 /* ok, it's been put in an rpc. only one oap gets a request
2631                  * reference */
2632                 if (oap->oap_request != NULL) {
2633                         ptlrpc_mark_interrupted(oap->oap_request);
2634                         ptlrpcd_wake(oap->oap_request);
2635                         ptlrpc_req_finished(oap->oap_request);
2636                         oap->oap_request = NULL;
2637                 }
2638         }
2639
2640         osc_list_maint(cli, obj);
2641         RETURN(rc);
2642 }
2643
2644 int osc_queue_sync_pages(const struct lu_env *env, struct osc_object *obj,
2645                          struct list_head *list, int cmd, int brw_flags)
2646 {
2647         struct client_obd     *cli = osc_cli(obj);
2648         struct osc_extent     *ext;
2649         struct osc_async_page *oap;
2650         int     page_count = 0;
2651         int     mppr       = cli->cl_max_pages_per_rpc;
2652         bool    can_merge   = true;
2653         pgoff_t start      = CL_PAGE_EOF;
2654         pgoff_t end        = 0;
2655         ENTRY;
2656
2657         list_for_each_entry(oap, list, oap_pending_item) {
2658                 struct osc_page *opg = oap2osc_page(oap);
2659                 pgoff_t index = osc_index(opg);
2660
2661                 if (index > end)
2662                         end = index;
2663                 if (index < start)
2664                         start = index;
2665                 ++page_count;
2666                 mppr <<= (page_count > mppr);
2667
2668                 if (unlikely(opg->ops_from > 0 || opg->ops_to < PAGE_SIZE))
2669                         can_merge = false;
2670         }
2671
2672         ext = osc_extent_alloc(obj);
2673         if (ext == NULL) {
2674                 struct osc_async_page *tmp;
2675
2676                 list_for_each_entry_safe(oap, tmp, list, oap_pending_item) {
2677                         list_del_init(&oap->oap_pending_item);
2678                         osc_ap_completion(env, cli, oap, 0, -ENOMEM);
2679                 }
2680                 RETURN(-ENOMEM);
2681         }
2682
2683         ext->oe_rw = !!(cmd & OBD_BRW_READ);
2684         ext->oe_sync = 1;
2685         ext->oe_no_merge = !can_merge;
2686         ext->oe_urgent = 1;
2687         ext->oe_start = start;
2688         ext->oe_end = ext->oe_max_end = end;
2689         ext->oe_obj = obj;
2690         ext->oe_srvlock = !!(brw_flags & OBD_BRW_SRVLOCK);
2691         ext->oe_nr_pages = page_count;
2692         ext->oe_mppr = mppr;
2693         list_splice_init(list, &ext->oe_pages);
2694
2695         osc_object_lock(obj);
2696         /* Reuse the initial refcount for RPC, don't drop it */
2697         osc_extent_state_set(ext, OES_LOCK_DONE);
2698         if (cmd & OBD_BRW_WRITE) {
2699                 list_add_tail(&ext->oe_link, &obj->oo_urgent_exts);
2700                 osc_update_pending(obj, OBD_BRW_WRITE, page_count);
2701         } else {
2702                 list_add_tail(&ext->oe_link, &obj->oo_reading_exts);
2703                 osc_update_pending(obj, OBD_BRW_READ, page_count);
2704         }
2705         osc_object_unlock(obj);
2706
2707         osc_io_unplug_async(env, cli, obj);
2708         RETURN(0);
2709 }
2710
2711 /**
2712  * Called by osc_io_setattr_start() to freeze and destroy covering extents.
2713  */
2714 int osc_cache_truncate_start(const struct lu_env *env, struct osc_object *obj,
2715                              __u64 size, struct osc_extent **extp)
2716 {
2717         struct client_obd *cli = osc_cli(obj);
2718         struct osc_extent *ext;
2719         struct osc_extent *waiting = NULL;
2720         pgoff_t index;
2721         struct list_head list = LIST_HEAD_INIT(list);
2722         int result = 0;
2723         bool partial;
2724         ENTRY;
2725
2726         /* pages with index greater or equal to index will be truncated. */
2727         index = cl_index(osc2cl(obj), size);
2728         partial = size > cl_offset(osc2cl(obj), index);
2729
2730 again:
2731         osc_object_lock(obj);
2732         ext = osc_extent_search(obj, index);
2733         if (ext == NULL)
2734                 ext = first_extent(obj);
2735         else if (ext->oe_end < index)
2736                 ext = next_extent(ext);
2737         while (ext != NULL) {
2738                 EASSERT(ext->oe_state != OES_TRUNC, ext);
2739
2740                 if (ext->oe_state > OES_CACHE || ext->oe_urgent) {
2741                         /* if ext is in urgent state, it means there must exist
2742                          * a page already having been flushed by write_page().
2743                          * We have to wait for this extent because we can't
2744                          * truncate that page. */
2745                         OSC_EXTENT_DUMP(D_CACHE, ext,
2746                                         "waiting for busy extent\n");
2747                         waiting = osc_extent_get(ext);
2748                         break;
2749                 }
2750
2751                 OSC_EXTENT_DUMP(D_CACHE, ext, "try to trunc:"LPU64".\n", size);
2752
2753                 osc_extent_get(ext);
2754                 if (ext->oe_state == OES_ACTIVE) {
2755                         /* though we grab inode mutex for write path, but we
2756                          * release it before releasing extent(in osc_io_end()),
2757                          * so there is a race window that an extent is still
2758                          * in OES_ACTIVE when truncate starts. */
2759                         LASSERT(!ext->oe_trunc_pending);
2760                         ext->oe_trunc_pending = 1;
2761                 } else {
2762                         EASSERT(ext->oe_state == OES_CACHE, ext);
2763                         osc_extent_state_set(ext, OES_TRUNC);
2764                         osc_update_pending(obj, OBD_BRW_WRITE,
2765                                            -ext->oe_nr_pages);
2766                 }
2767                 EASSERT(list_empty(&ext->oe_link), ext);
2768                 list_add_tail(&ext->oe_link, &list);
2769
2770                 ext = next_extent(ext);
2771         }
2772         osc_object_unlock(obj);
2773
2774         osc_list_maint(cli, obj);
2775
2776         while (!list_empty(&list)) {
2777                 int rc;
2778
2779                 ext = list_entry(list.next, struct osc_extent, oe_link);
2780                 list_del_init(&ext->oe_link);
2781
2782                 /* extent may be in OES_ACTIVE state because inode mutex
2783                  * is released before osc_io_end() in file write case */
2784                 if (ext->oe_state != OES_TRUNC)
2785                         osc_extent_wait(env, ext, OES_TRUNC);
2786
2787                 rc = osc_extent_truncate(ext, index, partial);
2788                 if (rc < 0) {
2789                         if (result == 0)
2790                                 result = rc;
2791
2792                         OSC_EXTENT_DUMP(D_ERROR, ext,
2793                                         "truncate error %d\n", rc);
2794                 } else if (ext->oe_nr_pages == 0) {
2795                         osc_extent_remove(ext);
2796                 } else {
2797                         /* this must be an overlapped extent which means only
2798                          * part of pages in this extent have been truncated.
2799                          */
2800                         EASSERTF(ext->oe_start <= index, ext,
2801                                  "trunc index = %lu/%d.\n", index, partial);
2802                         /* fix index to skip this partially truncated extent */
2803                         index = ext->oe_end + 1;
2804                         partial = false;
2805
2806                         /* we need to hold this extent in OES_TRUNC state so
2807                          * that no writeback will happen. This is to avoid
2808                          * BUG 17397.
2809                          * Only partial truncate can reach here, if @size is
2810                          * not zero, the caller should provide a valid @extp. */
2811                         LASSERT(*extp == NULL);
2812                         *extp = osc_extent_get(ext);
2813                         OSC_EXTENT_DUMP(D_CACHE, ext,
2814                                         "trunc at "LPU64"\n", size);
2815                 }
2816                 osc_extent_put(env, ext);
2817         }
2818         if (waiting != NULL) {
2819                 int rc;
2820
2821                 /* ignore the result of osc_extent_wait the write initiator
2822                  * should take care of it. */
2823                 rc = osc_extent_wait(env, waiting, OES_INV);
2824                 if (rc < 0)
2825                         OSC_EXTENT_DUMP(D_CACHE, waiting, "error: %d.\n", rc);
2826
2827                 osc_extent_put(env, waiting);
2828                 waiting = NULL;
2829                 goto again;
2830         }
2831         RETURN(result);
2832 }
2833
2834 /**
2835  * Called after osc_io_setattr_end to add oio->oi_trunc back to cache.
2836  */
2837 void osc_cache_truncate_end(const struct lu_env *env, struct osc_extent *ext)
2838 {
2839         if (ext != NULL) {
2840                 struct osc_object *obj = ext->oe_obj;
2841                 bool unplug = false;
2842
2843                 EASSERT(ext->oe_nr_pages > 0, ext);
2844                 EASSERT(ext->oe_state == OES_TRUNC, ext);
2845                 EASSERT(!ext->oe_urgent, ext);
2846
2847                 OSC_EXTENT_DUMP(D_CACHE, ext, "trunc -> cache.\n");
2848                 osc_object_lock(obj);
2849                 osc_extent_state_set(ext, OES_CACHE);
2850                 if (ext->oe_fsync_wait && !ext->oe_urgent) {
2851                         ext->oe_urgent = 1;
2852                         list_move_tail(&ext->oe_link, &obj->oo_urgent_exts);
2853                         unplug = true;
2854                 }
2855                 osc_update_pending(obj, OBD_BRW_WRITE, ext->oe_nr_pages);
2856                 osc_object_unlock(obj);
2857                 osc_extent_put(env, ext);
2858
2859                 if (unplug)
2860                         osc_io_unplug_async(env, osc_cli(obj), obj);
2861         }
2862 }
2863
2864 /**
2865  * Wait for extents in a specific range to be written out.
2866  * The caller must have called osc_cache_writeback_range() to issue IO
2867  * otherwise it will take a long time for this function to finish.
2868  *
2869  * Caller must hold inode_mutex , or cancel exclusive dlm lock so that
2870  * nobody else can dirty this range of file while we're waiting for
2871  * extents to be written.
2872  */
2873 int osc_cache_wait_range(const struct lu_env *env, struct osc_object *obj,
2874                          pgoff_t start, pgoff_t end)
2875 {
2876         struct osc_extent *ext;
2877         pgoff_t index = start;
2878         int     result = 0;
2879         ENTRY;
2880
2881 again:
2882         osc_object_lock(obj);
2883         ext = osc_extent_search(obj, index);
2884         if (ext == NULL)
2885                 ext = first_extent(obj);
2886         else if (ext->oe_end < index)
2887                 ext = next_extent(ext);
2888         while (ext != NULL) {
2889                 int rc;
2890
2891                 if (ext->oe_start > end)
2892                         break;
2893
2894                 if (!ext->oe_fsync_wait) {
2895                         ext = next_extent(ext);
2896                         continue;
2897                 }
2898
2899                 EASSERT(ergo(ext->oe_state == OES_CACHE,
2900                              ext->oe_hp || ext->oe_urgent), ext);
2901                 EASSERT(ergo(ext->oe_state == OES_ACTIVE,
2902                              !ext->oe_hp && ext->oe_urgent), ext);
2903
2904                 index = ext->oe_end + 1;
2905                 osc_extent_get(ext);
2906                 osc_object_unlock(obj);
2907
2908                 rc = osc_extent_wait(env, ext, OES_INV);
2909                 if (result == 0)
2910                         result = rc;
2911                 osc_extent_put(env, ext);
2912                 goto again;
2913         }
2914         osc_object_unlock(obj);
2915
2916         OSC_IO_DEBUG(obj, "sync file range.\n");
2917         RETURN(result);
2918 }
2919
2920 /**
2921  * Called to write out a range of osc object.
2922  *
2923  * @hp     : should be set this is caused by lock cancel;
2924  * @discard: is set if dirty pages should be dropped - file will be deleted or
2925  *         truncated, this implies there is no partially discarding extents.
2926  *
2927  * Return how many pages will be issued, or error code if error occurred.
2928  */
2929 int osc_cache_writeback_range(const struct lu_env *env, struct osc_object *obj,
2930                               pgoff_t start, pgoff_t end, int hp, int discard)
2931 {
2932         struct osc_extent *ext;
2933         struct list_head discard_list = LIST_HEAD_INIT(discard_list);
2934         bool unplug = false;
2935         int result = 0;
2936         ENTRY;
2937
2938         osc_object_lock(obj);
2939         ext = osc_extent_search(obj, start);
2940         if (ext == NULL)
2941                 ext = first_extent(obj);
2942         else if (ext->oe_end < start)
2943                 ext = next_extent(ext);
2944         while (ext != NULL) {
2945                 if (ext->oe_start > end)
2946                         break;
2947
2948                 ext->oe_fsync_wait = 1;
2949                 switch (ext->oe_state) {
2950                 case OES_CACHE:
2951                         result += ext->oe_nr_pages;
2952                         if (!discard) {
2953                                 struct list_head *list = NULL;
2954                                 if (hp) {
2955                                         EASSERT(!ext->oe_hp, ext);
2956                                         ext->oe_hp = 1;
2957                                         list = &obj->oo_hp_exts;
2958                                 } else if (!ext->oe_urgent) {
2959                                         ext->oe_urgent = 1;
2960                                         list = &obj->oo_urgent_exts;
2961                                 }
2962                                 if (list != NULL)
2963                                         list_move_tail(&ext->oe_link, list);
2964                                 unplug = true;
2965                         } else {
2966                                 /* the only discarder is lock cancelling, so
2967                                  * [start, end] must contain this extent */
2968                                 EASSERT(ext->oe_start >= start &&
2969                                         ext->oe_max_end <= end, ext);
2970                                 osc_extent_state_set(ext, OES_LOCKING);
2971                                 ext->oe_owner = current;
2972                                 list_move_tail(&ext->oe_link,
2973                                                    &discard_list);
2974                                 osc_update_pending(obj, OBD_BRW_WRITE,
2975                                                    -ext->oe_nr_pages);
2976                         }
2977                         break;
2978                 case OES_ACTIVE:
2979                         /* It's pretty bad to wait for ACTIVE extents, because
2980                          * we don't know how long we will wait for it to be
2981                          * flushed since it may be blocked at awaiting more
2982                          * grants. We do this for the correctness of fsync. */
2983                         LASSERT(hp == 0 && discard == 0);
2984                         ext->oe_urgent = 1;
2985                         break;
2986                 case OES_TRUNC:
2987                         /* this extent is being truncated, can't do anything
2988                          * for it now. it will be set to urgent after truncate
2989                          * is finished in osc_cache_truncate_end(). */
2990                 default:
2991                         break;
2992                 }
2993                 ext = next_extent(ext);
2994         }
2995         osc_object_unlock(obj);
2996
2997         LASSERT(ergo(!discard, list_empty(&discard_list)));
2998         if (!list_empty(&discard_list)) {
2999                 struct osc_extent *tmp;
3000                 int rc;
3001
3002                 osc_list_maint(osc_cli(obj), obj);
3003                 list_for_each_entry_safe(ext, tmp, &discard_list, oe_link) {
3004                         list_del_init(&ext->oe_link);
3005                         EASSERT(ext->oe_state == OES_LOCKING, ext);
3006
3007                         /* Discard caching pages. We don't actually write this
3008                          * extent out but we complete it as if we did. */
3009                         rc = osc_extent_make_ready(env, ext);
3010                         if (unlikely(rc < 0)) {
3011                                 OSC_EXTENT_DUMP(D_ERROR, ext,
3012                                                 "make_ready returned %d\n", rc);
3013                                 if (result >= 0)
3014                                         result = rc;
3015                         }
3016
3017                         /* finish the extent as if the pages were sent */
3018                         osc_extent_finish(env, ext, 0, 0);
3019                 }
3020         }
3021
3022         if (unplug)
3023                 osc_io_unplug(env, osc_cli(obj), obj);
3024
3025         if (hp || discard) {
3026                 int rc;
3027                 rc = osc_cache_wait_range(env, obj, start, end);
3028                 if (result >= 0 && rc < 0)
3029                         result = rc;
3030         }
3031
3032         OSC_IO_DEBUG(obj, "pageout [%lu, %lu], %d.\n", start, end, result);
3033         RETURN(result);
3034 }
3035
3036 /**
3037  * Returns a list of pages by a given [start, end] of \a obj.
3038  *
3039  * \param resched If not NULL, then we give up before hogging CPU for too
3040  * long and set *resched = 1, in that case caller should implement a retry
3041  * logic.
3042  *
3043  * Gang tree lookup (radix_tree_gang_lookup()) optimization is absolutely
3044  * crucial in the face of [offset, EOF] locks.
3045  *
3046  * Return at least one page in @queue unless there is no covered page.
3047  */
3048 int osc_page_gang_lookup(const struct lu_env *env, struct cl_io *io,
3049                         struct osc_object *osc, pgoff_t start, pgoff_t end,
3050                         osc_page_gang_cbt cb, void *cbdata)
3051 {
3052         struct osc_page *ops;
3053         void            **pvec;
3054         pgoff_t         idx;
3055         unsigned int    nr;
3056         unsigned int    i;
3057         unsigned int    j;
3058         int             res = CLP_GANG_OKAY;
3059         bool            tree_lock = true;
3060         ENTRY;
3061
3062         idx = start;
3063         pvec = osc_env_info(env)->oti_pvec;
3064         spin_lock(&osc->oo_tree_lock);
3065         while ((nr = radix_tree_gang_lookup(&osc->oo_tree, pvec,
3066                                             idx, OTI_PVEC_SIZE)) > 0) {
3067                 struct cl_page *page;
3068                 bool end_of_region = false;
3069
3070                 for (i = 0, j = 0; i < nr; ++i) {
3071                         ops = pvec[i];
3072                         pvec[i] = NULL;
3073
3074                         idx = osc_index(ops);
3075                         if (idx > end) {
3076                                 end_of_region = true;
3077                                 break;
3078                         }
3079
3080                         page = ops->ops_cl.cpl_page;
3081                         LASSERT(page->cp_type == CPT_CACHEABLE);
3082                         if (page->cp_state == CPS_FREEING)
3083                                 continue;
3084
3085                         cl_page_get(page);
3086                         lu_ref_add_atomic(&page->cp_reference,
3087                                           "gang_lookup", current);
3088                         pvec[j++] = ops;
3089                 }
3090                 ++idx;
3091
3092                 /*
3093                  * Here a delicate locking dance is performed. Current thread
3094                  * holds a reference to a page, but has to own it before it
3095                  * can be placed into queue. Owning implies waiting, so
3096                  * radix-tree lock is to be released. After a wait one has to
3097                  * check that pages weren't truncated (cl_page_own() returns
3098                  * error in the latter case).
3099                  */
3100                 spin_unlock(&osc->oo_tree_lock);
3101                 tree_lock = false;
3102
3103                 for (i = 0; i < j; ++i) {
3104                         ops = pvec[i];
3105                         if (res == CLP_GANG_OKAY)
3106                                 res = (*cb)(env, io, ops, cbdata);
3107
3108                         page = ops->ops_cl.cpl_page;
3109                         lu_ref_del(&page->cp_reference, "gang_lookup", current);
3110                         cl_page_put(env, page);
3111                 }
3112                 if (nr < OTI_PVEC_SIZE || end_of_region)
3113                         break;
3114
3115                 if (res == CLP_GANG_OKAY && need_resched())
3116                         res = CLP_GANG_RESCHED;
3117                 if (res != CLP_GANG_OKAY)
3118                         break;
3119
3120                 spin_lock(&osc->oo_tree_lock);
3121                 tree_lock = true;
3122         }
3123         if (tree_lock)
3124                 spin_unlock(&osc->oo_tree_lock);
3125         RETURN(res);
3126 }
3127
3128 /**
3129  * Check if page @page is covered by an extra lock or discard it.
3130  */
3131 static int check_and_discard_cb(const struct lu_env *env, struct cl_io *io,
3132                                 struct osc_page *ops, void *cbdata)
3133 {
3134         struct osc_thread_info *info = osc_env_info(env);
3135         struct osc_object *osc = cbdata;
3136         pgoff_t index;
3137
3138         index = osc_index(ops);
3139         if (index >= info->oti_fn_index) {
3140                 struct ldlm_lock *tmp;
3141                 struct cl_page *page = ops->ops_cl.cpl_page;
3142
3143                 /* refresh non-overlapped index */
3144                 tmp = osc_dlmlock_at_pgoff(env, osc, index,
3145                                            OSC_DAP_FL_TEST_LOCK);
3146                 if (tmp != NULL) {
3147                         __u64 end = tmp->l_policy_data.l_extent.end;
3148                         /* Cache the first-non-overlapped index so as to skip
3149                          * all pages within [index, oti_fn_index). This is safe
3150                          * because if tmp lock is canceled, it will discard
3151                          * these pages. */
3152                         info->oti_fn_index = cl_index(osc2cl(osc), end + 1);
3153                         if (end == OBD_OBJECT_EOF)
3154                                 info->oti_fn_index = CL_PAGE_EOF;
3155                         LDLM_LOCK_PUT(tmp);
3156                 } else if (cl_page_own(env, io, page) == 0) {
3157                         /* discard the page */
3158                         cl_page_discard(env, io, page);
3159                         cl_page_disown(env, io, page);
3160                 } else {
3161                         LASSERT(page->cp_state == CPS_FREEING);
3162                 }
3163         }
3164
3165         info->oti_next_index = index + 1;
3166         return CLP_GANG_OKAY;
3167 }
3168
3169 static int discard_cb(const struct lu_env *env, struct cl_io *io,
3170                       struct osc_page *ops, void *cbdata)
3171 {
3172         struct osc_thread_info *info = osc_env_info(env);
3173         struct cl_page *page = ops->ops_cl.cpl_page;
3174
3175         /* page is top page. */
3176         info->oti_next_index = osc_index(ops) + 1;
3177         if (cl_page_own(env, io, page) == 0) {
3178                 if (!ergo(page->cp_type == CPT_CACHEABLE,
3179                           !PageDirty(cl_page_vmpage(page))))
3180                         CL_PAGE_DEBUG(D_ERROR, env, page,
3181                                         "discard dirty page?\n");
3182
3183                 /* discard the page */
3184                 cl_page_discard(env, io, page);
3185                 cl_page_disown(env, io, page);
3186         } else {
3187                 LASSERT(page->cp_state == CPS_FREEING);
3188         }
3189
3190         return CLP_GANG_OKAY;
3191 }
3192
3193 /**
3194  * Discard pages protected by the given lock. This function traverses radix
3195  * tree to find all covering pages and discard them. If a page is being covered
3196  * by other locks, it should remain in cache.
3197  *
3198  * If error happens on any step, the process continues anyway (the reasoning
3199  * behind this being that lock cancellation cannot be delayed indefinitely).
3200  */
3201 int osc_lock_discard_pages(const struct lu_env *env, struct osc_object *osc,
3202                            pgoff_t start, pgoff_t end, enum cl_lock_mode mode)
3203 {
3204         struct osc_thread_info *info = osc_env_info(env);
3205         struct cl_io *io = &info->oti_io;
3206         osc_page_gang_cbt cb;
3207         int res;
3208         int result;
3209
3210         ENTRY;
3211
3212         io->ci_obj = cl_object_top(osc2cl(osc));
3213         io->ci_ignore_layout = 1;
3214         result = cl_io_init(env, io, CIT_MISC, io->ci_obj);
3215         if (result != 0)
3216                 GOTO(out, result);
3217
3218         cb = mode == CLM_READ ? check_and_discard_cb : discard_cb;
3219         info->oti_fn_index = info->oti_next_index = start;
3220         do {
3221                 res = osc_page_gang_lookup(env, io, osc,
3222                                            info->oti_next_index, end, cb, osc);
3223                 if (info->oti_next_index > end)
3224                         break;
3225
3226                 if (res == CLP_GANG_RESCHED)
3227                         cond_resched();
3228         } while (res != CLP_GANG_OKAY);
3229 out:
3230         cl_io_fini(env, io);
3231         RETURN(result);
3232 }
3233
3234
3235 /** @} osc */