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