4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
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.
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).
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
23 * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
24 * Use is subject to license terms.
26 * Copyright (c) 2012, 2017, Intel Corporation.
30 * This file is part of Lustre, http://www.lustre.org/
31 * Lustre is a trademark of Sun Microsystems, Inc.
33 * osc cache management.
35 * Author: Jinshan Xiong <jinshan.xiong@whamcloud.com>
38 #define DEBUG_SUBSYSTEM S_OSC
40 #include <lustre_osc.h>
42 #include "osc_internal.h"
44 static int extent_debug; /* set it to be true for more debug */
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,
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);
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__)
65 static void osc_unreserve_grant(struct client_obd *cli, unsigned int reserved,
72 /* ------------------ osc extent ------------------ */
73 static inline char *ext_flags(struct osc_extent *ext, char *flags)
76 *buf++ = ext->oe_rw ? 'r' : 'w';
89 if (ext->oe_trunc_pending)
91 if (ext->oe_fsync_wait)
97 static inline char list_empty_marker(struct list_head *list)
99 return list_empty(list) ? '-' : '+';
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 };
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); \
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), \
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 ----- */ \
130 if (mask == D_ERROR && __ext->oe_dlmlock != NULL) \
131 LDLM_ERROR(__ext->oe_dlmlock, "extent: %p", __ext); \
133 LDLM_DEBUG(__ext->oe_dlmlock, "extent: %p", __ext); \
136 #define OSC_EXTENT_DUMP(mask, ext, fmt, ...) \
137 OSC_EXTENT_DUMP_WITH_LOC(__FILE__, __func__, __LINE__, \
138 mask, ext, fmt, ## __VA_ARGS__)
141 #define EASSERTF(expr, ext, fmt, args...) do { \
143 OSC_EXTENT_DUMP(D_ERROR, (ext), fmt, ##args); \
144 osc_extent_tree_dump(D_ERROR, (ext)->oe_obj); \
150 #define EASSERT(expr, ext) EASSERTF(expr, ext, "\n")
152 static inline struct osc_extent *rb_extent(struct rb_node *n)
157 return container_of(n, struct osc_extent, oe_node);
160 static inline struct osc_extent *next_extent(struct osc_extent *ext)
165 LASSERT(ext->oe_intree);
166 return rb_extent(rb_next(&ext->oe_node));
169 static inline struct osc_extent *prev_extent(struct osc_extent *ext)
174 LASSERT(ext->oe_intree);
175 return rb_extent(rb_prev(&ext->oe_node));
178 static inline struct osc_extent *first_extent(struct osc_object *obj)
180 return rb_extent(rb_first(&obj->oo_root));
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)
187 struct osc_object *obj = ext->oe_obj;
188 struct osc_async_page *oap;
192 if (!osc_object_is_locked(obj))
195 if (ext->oe_state >= OES_STATE_MAX)
198 if (atomic_read(&ext->oe_refc) <= 0)
201 if (atomic_read(&ext->oe_refc) < atomic_read(&ext->oe_users))
204 switch (ext->oe_state) {
206 if (ext->oe_nr_pages > 0 || !list_empty(&ext->oe_pages))
211 if (atomic_read(&ext->oe_users) == 0)
215 if (ext->oe_fsync_wait && !ext->oe_urgent)
219 if (ext->oe_grants == 0)
221 if (ext->oe_fsync_wait && !ext->oe_urgent && !ext->oe_hp)
225 if (atomic_read(&ext->oe_users) > 0)
229 if (ext->oe_max_end < ext->oe_end || ext->oe_end < ext->oe_start)
232 if (ext->oe_sync && ext->oe_grants > 0)
235 if (ext->oe_dlmlock != NULL &&
236 ext->oe_dlmlock->l_resource->lr_type == LDLM_EXTENT &&
237 !ldlm_is_failed(ext->oe_dlmlock)) {
238 struct ldlm_extent *extent;
240 extent = &ext->oe_dlmlock->l_policy_data.l_extent;
241 if (!(extent->start <= cl_offset(osc2cl(obj), ext->oe_start) &&
242 extent->end >= cl_offset(osc2cl(obj), ext->oe_max_end)))
245 if (!(ext->oe_dlmlock->l_granted_mode & (LCK_PW | LCK_GROUP)))
249 if (ext->oe_nr_pages > ext->oe_mppr)
252 /* Do not verify page list if extent is in RPC. This is because an
253 * in-RPC extent is supposed to be exclusively accessible w/o lock. */
254 if (ext->oe_state > OES_CACHE)
261 list_for_each_entry(oap, &ext->oe_pages, oap_pending_item) {
262 pgoff_t index = osc_index(oap2osc(oap));
264 if (index > ext->oe_end || index < ext->oe_start)
267 if (page_count != ext->oe_nr_pages)
272 OSC_EXTENT_DUMP_WITH_LOC(__FILE__, func, line, D_ERROR, ext,
273 "sanity check %p failed: rc = %d\n",
278 #define sanity_check_nolock(ext) \
279 osc_extent_sanity_check0(ext, __func__, __LINE__)
281 #define sanity_check(ext) ({ \
283 osc_object_lock((ext)->oe_obj); \
284 __res = sanity_check_nolock(ext); \
285 osc_object_unlock((ext)->oe_obj); \
291 * sanity check - to make sure there is no overlapped extent in the tree.
293 static int osc_extent_is_overlapped(struct osc_object *obj,
294 struct osc_extent *ext)
296 struct osc_extent *tmp;
298 LASSERT(osc_object_is_locked(obj));
303 for (tmp = first_extent(obj); tmp != NULL; tmp = next_extent(tmp)) {
306 if (tmp->oe_end >= ext->oe_start &&
307 tmp->oe_start <= ext->oe_end)
313 static void osc_extent_state_set(struct osc_extent *ext, int state)
315 LASSERT(osc_object_is_locked(ext->oe_obj));
316 LASSERT(state >= OES_INV && state < OES_STATE_MAX);
318 /* Never try to sanity check a state changing extent :-) */
319 /* LASSERT(sanity_check_nolock(ext) == 0); */
321 /* TODO: validate the state machine */
322 ext->oe_state = state;
323 wake_up_all(&ext->oe_waitq);
326 static struct osc_extent *osc_extent_alloc(struct osc_object *obj)
328 struct osc_extent *ext;
330 OBD_SLAB_ALLOC_PTR_GFP(ext, osc_extent_kmem, GFP_NOFS);
334 RB_CLEAR_NODE(&ext->oe_node);
336 cl_object_get(osc2cl(obj));
337 atomic_set(&ext->oe_refc, 1);
338 atomic_set(&ext->oe_users, 0);
339 INIT_LIST_HEAD(&ext->oe_link);
340 ext->oe_state = OES_INV;
341 INIT_LIST_HEAD(&ext->oe_pages);
342 init_waitqueue_head(&ext->oe_waitq);
343 ext->oe_dlmlock = NULL;
348 static void osc_extent_free(struct osc_extent *ext)
350 OBD_SLAB_FREE_PTR(ext, osc_extent_kmem);
353 static struct osc_extent *osc_extent_get(struct osc_extent *ext)
355 LASSERT(atomic_read(&ext->oe_refc) >= 0);
356 atomic_inc(&ext->oe_refc);
360 static void osc_extent_put(const struct lu_env *env, struct osc_extent *ext)
362 LASSERT(atomic_read(&ext->oe_refc) > 0);
363 if (atomic_dec_and_test(&ext->oe_refc)) {
364 LASSERT(list_empty(&ext->oe_link));
365 LASSERT(atomic_read(&ext->oe_users) == 0);
366 LASSERT(ext->oe_state == OES_INV);
367 LASSERT(!ext->oe_intree);
369 if (ext->oe_dlmlock != NULL) {
370 lu_ref_add(&ext->oe_dlmlock->l_reference,
372 LDLM_LOCK_PUT(ext->oe_dlmlock);
373 ext->oe_dlmlock = NULL;
375 cl_object_put(env, osc2cl(ext->oe_obj));
376 osc_extent_free(ext);
381 * osc_extent_put_trust() is a special version of osc_extent_put() when
382 * it's known that the caller is not the last user. This is to address the
383 * problem of lacking of lu_env ;-).
385 static void osc_extent_put_trust(struct osc_extent *ext)
387 LASSERT(atomic_read(&ext->oe_refc) > 1);
388 LASSERT(osc_object_is_locked(ext->oe_obj));
389 atomic_dec(&ext->oe_refc);
393 * Return the extent which includes pgoff @index, or return the greatest
394 * previous extent in the tree.
396 static struct osc_extent *osc_extent_search(struct osc_object *obj,
399 struct rb_node *n = obj->oo_root.rb_node;
400 struct osc_extent *tmp, *p = NULL;
402 LASSERT(osc_object_is_locked(obj));
405 if (index < tmp->oe_start) {
407 } else if (index > tmp->oe_end) {
418 * Return the extent covering @index, otherwise return NULL.
419 * caller must have held object lock.
421 static struct osc_extent *osc_extent_lookup(struct osc_object *obj,
424 struct osc_extent *ext;
426 ext = osc_extent_search(obj, index);
427 if (ext != NULL && ext->oe_start <= index && index <= ext->oe_end)
428 return osc_extent_get(ext);
432 /* caller must have held object lock. */
433 static void osc_extent_insert(struct osc_object *obj, struct osc_extent *ext)
435 struct rb_node **n = &obj->oo_root.rb_node;
436 struct rb_node *parent = NULL;
437 struct osc_extent *tmp;
439 LASSERT(ext->oe_intree == 0);
440 LASSERT(ext->oe_obj == obj);
441 LASSERT(osc_object_is_locked(obj));
446 if (ext->oe_end < tmp->oe_start)
448 else if (ext->oe_start > tmp->oe_end)
451 EASSERTF(0, tmp, EXTSTR"\n", EXTPARA(ext));
453 rb_link_node(&ext->oe_node, parent, n);
454 rb_insert_color(&ext->oe_node, &obj->oo_root);
459 /* caller must have held object lock. */
460 static void osc_extent_erase(struct osc_extent *ext)
462 struct osc_object *obj = ext->oe_obj;
463 LASSERT(osc_object_is_locked(obj));
464 if (ext->oe_intree) {
465 rb_erase(&ext->oe_node, &obj->oo_root);
467 /* rbtree held a refcount */
468 osc_extent_put_trust(ext);
472 static struct osc_extent *osc_extent_hold(struct osc_extent *ext)
474 struct osc_object *obj = ext->oe_obj;
476 LASSERT(osc_object_is_locked(obj));
477 LASSERT(ext->oe_state == OES_ACTIVE || ext->oe_state == OES_CACHE);
478 if (ext->oe_state == OES_CACHE) {
479 osc_extent_state_set(ext, OES_ACTIVE);
480 osc_update_pending(obj, OBD_BRW_WRITE, -ext->oe_nr_pages);
482 atomic_inc(&ext->oe_users);
483 list_del_init(&ext->oe_link);
484 return osc_extent_get(ext);
487 static void __osc_extent_remove(struct osc_extent *ext)
489 LASSERT(osc_object_is_locked(ext->oe_obj));
490 LASSERT(list_empty(&ext->oe_pages));
491 osc_extent_erase(ext);
492 list_del_init(&ext->oe_link);
493 osc_extent_state_set(ext, OES_INV);
494 OSC_EXTENT_DUMP(D_CACHE, ext, "destroyed.\n");
497 static void osc_extent_remove(struct osc_extent *ext)
499 struct osc_object *obj = ext->oe_obj;
501 osc_object_lock(obj);
502 __osc_extent_remove(ext);
503 osc_object_unlock(obj);
507 * This function is used to merge extents to get better performance. It checks
508 * if @cur and @victim are contiguous at block level.
510 static int osc_extent_merge(const struct lu_env *env, struct osc_extent *cur,
511 struct osc_extent *victim)
513 struct osc_object *obj = cur->oe_obj;
514 struct client_obd *cli = osc_cli(obj);
519 LASSERT(cur->oe_state == OES_CACHE);
520 LASSERT(osc_object_is_locked(obj));
524 if (victim->oe_state != OES_CACHE || victim->oe_fsync_wait)
527 if (cur->oe_max_end != victim->oe_max_end)
530 LASSERT(cur->oe_dlmlock == victim->oe_dlmlock);
531 ppc_bits = osc_cli(obj)->cl_chunkbits - PAGE_SHIFT;
532 chunk_start = cur->oe_start >> ppc_bits;
533 chunk_end = cur->oe_end >> ppc_bits;
534 if (chunk_start != (victim->oe_end >> ppc_bits) + 1 &&
535 chunk_end + 1 != victim->oe_start >> ppc_bits)
538 /* overall extent size should not exceed the max supported limit
539 * reported by the server */
540 if (cur->oe_end - cur->oe_start + 1 +
541 victim->oe_end - victim->oe_start + 1 > cli->cl_max_extent_pages)
544 OSC_EXTENT_DUMP(D_CACHE, victim, "will be merged by %p.\n", cur);
546 cur->oe_start = min(cur->oe_start, victim->oe_start);
547 cur->oe_end = max(cur->oe_end, victim->oe_end);
548 /* per-extent tax should be accounted only once for the whole extent */
549 cur->oe_grants += victim->oe_grants - cli->cl_grant_extent_tax;
550 cur->oe_nr_pages += victim->oe_nr_pages;
551 /* only the following bits are needed to merge */
552 cur->oe_urgent |= victim->oe_urgent;
553 cur->oe_memalloc |= victim->oe_memalloc;
554 list_splice_init(&victim->oe_pages, &cur->oe_pages);
555 list_del_init(&victim->oe_link);
556 victim->oe_nr_pages = 0;
558 osc_extent_get(victim);
559 __osc_extent_remove(victim);
560 osc_extent_put(env, victim);
562 OSC_EXTENT_DUMP(D_CACHE, cur, "after merging %p.\n", victim);
567 * Drop user count of osc_extent, and unplug IO asynchronously.
569 int osc_extent_release(const struct lu_env *env, struct osc_extent *ext)
571 struct osc_object *obj = ext->oe_obj;
572 struct client_obd *cli = osc_cli(obj);
576 LASSERT(atomic_read(&ext->oe_users) > 0);
577 LASSERT(sanity_check(ext) == 0);
578 LASSERT(ext->oe_grants > 0);
580 if (atomic_dec_and_lock(&ext->oe_users, &obj->oo_lock)) {
581 LASSERT(ext->oe_state == OES_ACTIVE);
582 if (ext->oe_trunc_pending) {
583 /* a truncate process is waiting for this extent.
584 * This may happen due to a race, check
585 * osc_cache_truncate_start(). */
586 osc_extent_state_set(ext, OES_TRUNC);
587 ext->oe_trunc_pending = 0;
588 osc_object_unlock(obj);
592 osc_extent_state_set(ext, OES_CACHE);
593 osc_update_pending(obj, OBD_BRW_WRITE,
596 /* try to merge the previous and next extent. */
597 if (osc_extent_merge(env, ext, prev_extent(ext)) == 0)
598 grant += cli->cl_grant_extent_tax;
599 if (osc_extent_merge(env, ext, next_extent(ext)) == 0)
600 grant += cli->cl_grant_extent_tax;
603 list_move_tail(&ext->oe_link,
604 &obj->oo_urgent_exts);
605 else if (ext->oe_nr_pages == ext->oe_mppr) {
606 list_move_tail(&ext->oe_link,
609 osc_object_unlock(obj);
611 osc_unreserve_grant(cli, 0, grant);
614 osc_io_unplug_async(env, cli, obj);
616 osc_extent_put(env, ext);
620 static inline int overlapped(struct osc_extent *ex1, struct osc_extent *ex2)
622 return !(ex1->oe_end < ex2->oe_start || ex2->oe_end < ex1->oe_start);
626 * Find or create an extent which includes @index, core function to manage
629 static struct osc_extent *osc_extent_find(const struct lu_env *env,
630 struct osc_object *obj, pgoff_t index,
631 unsigned int *grants)
633 struct client_obd *cli = osc_cli(obj);
634 struct osc_lock *olck;
635 struct cl_lock_descr *descr;
636 struct osc_extent *cur;
637 struct osc_extent *ext;
638 struct osc_extent *conflict = NULL;
639 struct osc_extent *found = NULL;
642 unsigned int max_pages; /* max_pages_per_rpc */
643 unsigned int chunksize;
644 int ppc_bits; /* pages per chunk bits */
649 cur = osc_extent_alloc(obj);
651 RETURN(ERR_PTR(-ENOMEM));
653 olck = osc_env_io(env)->oi_write_osclock;
654 LASSERTF(olck != NULL, "page %lu is not covered by lock\n", index);
655 LASSERT(olck->ols_state == OLS_GRANTED);
657 descr = &olck->ols_cl.cls_lock->cll_descr;
658 LASSERT(descr->cld_mode >= CLM_WRITE);
660 LASSERTF(cli->cl_chunkbits >= PAGE_SHIFT,
661 "chunkbits: %u\n", cli->cl_chunkbits);
662 ppc_bits = cli->cl_chunkbits - PAGE_SHIFT;
663 chunk_mask = ~((1 << ppc_bits) - 1);
664 chunksize = 1 << cli->cl_chunkbits;
665 chunk = index >> ppc_bits;
667 /* align end to RPC edge. */
668 max_pages = cli->cl_max_pages_per_rpc;
669 if ((max_pages & ~chunk_mask) != 0) {
670 CERROR("max_pages: %#x chunkbits: %u chunk_mask: %#lx\n",
671 max_pages, cli->cl_chunkbits, chunk_mask);
672 RETURN(ERR_PTR(-EINVAL));
674 max_end = index - (index % max_pages) + max_pages - 1;
675 max_end = min_t(pgoff_t, max_end, descr->cld_end);
677 /* initialize new extent by parameters so far */
678 cur->oe_max_end = max_end;
679 cur->oe_start = index & chunk_mask;
680 cur->oe_end = ((index + ~chunk_mask + 1) & chunk_mask) - 1;
681 if (cur->oe_start < descr->cld_start)
682 cur->oe_start = descr->cld_start;
683 if (cur->oe_end > max_end)
684 cur->oe_end = max_end;
686 cur->oe_mppr = max_pages;
687 if (olck->ols_dlmlock != NULL) {
688 LASSERT(olck->ols_hold);
689 cur->oe_dlmlock = LDLM_LOCK_GET(olck->ols_dlmlock);
690 lu_ref_add(&olck->ols_dlmlock->l_reference, "osc_extent", cur);
693 /* grants has been allocated by caller */
694 LASSERTF(*grants >= chunksize + cli->cl_grant_extent_tax,
695 "%u/%u/%u.\n", *grants, chunksize, cli->cl_grant_extent_tax);
696 LASSERTF((max_end - cur->oe_start) < max_pages, EXTSTR"\n",
700 osc_object_lock(obj);
701 ext = osc_extent_search(obj, cur->oe_start);
703 ext = first_extent(obj);
704 while (ext != NULL) {
705 pgoff_t ext_chk_start = ext->oe_start >> ppc_bits;
706 pgoff_t ext_chk_end = ext->oe_end >> ppc_bits;
708 LASSERT(sanity_check_nolock(ext) == 0);
709 if (chunk > ext_chk_end + 1 || chunk < ext_chk_start)
712 /* if covering by different locks, no chance to match */
713 if (olck->ols_dlmlock != ext->oe_dlmlock) {
714 EASSERTF(!overlapped(ext, cur), ext,
715 EXTSTR"\n", EXTPARA(cur));
717 ext = next_extent(ext);
721 /* discontiguous chunks? */
722 if (chunk + 1 < ext_chk_start) {
723 ext = next_extent(ext);
727 /* ok, from now on, ext and cur have these attrs:
728 * 1. covered by the same lock
729 * 2. contiguous at chunk level or overlapping. */
731 if (overlapped(ext, cur)) {
732 /* cur is the minimum unit, so overlapping means
734 EASSERTF((ext->oe_start <= cur->oe_start &&
735 ext->oe_end >= cur->oe_end),
736 ext, EXTSTR"\n", EXTPARA(cur));
738 if (ext->oe_state > OES_CACHE || ext->oe_fsync_wait) {
739 /* for simplicity, we wait for this extent to
740 * finish before going forward. */
741 conflict = osc_extent_get(ext);
745 found = osc_extent_hold(ext);
749 /* non-overlapped extent */
750 if (ext->oe_state != OES_CACHE || ext->oe_fsync_wait) {
751 /* we can't do anything for a non OES_CACHE extent, or
752 * if there is someone waiting for this extent to be
753 * flushed, try next one. */
754 ext = next_extent(ext);
758 /* check if they belong to the same rpc slot before trying to
759 * merge. the extents are not overlapped and contiguous at
760 * chunk level to get here. */
761 if (ext->oe_max_end != max_end) {
762 /* if they don't belong to the same RPC slot or
763 * max_pages_per_rpc has ever changed, do not merge. */
764 ext = next_extent(ext);
768 /* check whether maximum extent size will be hit */
769 if ((ext_chk_end - ext_chk_start + 1 + 1) << ppc_bits >
770 cli->cl_max_extent_pages) {
771 ext = next_extent(ext);
775 /* it's required that an extent must be contiguous at chunk
776 * level so that we know the whole extent is covered by grant
777 * (the pages in the extent are NOT required to be contiguous).
778 * Otherwise, it will be too much difficult to know which
779 * chunks have grants allocated. */
781 /* try to do front merge - extend ext's start */
782 if (chunk + 1 == ext_chk_start) {
783 /* ext must be chunk size aligned */
784 EASSERT((ext->oe_start & ~chunk_mask) == 0, ext);
786 /* pull ext's start back to cover cur */
787 ext->oe_start = cur->oe_start;
788 ext->oe_grants += chunksize;
789 LASSERT(*grants >= chunksize);
790 *grants -= chunksize;
792 found = osc_extent_hold(ext);
793 } else if (chunk == ext_chk_end + 1) {
795 ext->oe_end = cur->oe_end;
796 ext->oe_grants += chunksize;
797 LASSERT(*grants >= chunksize);
798 *grants -= chunksize;
800 /* try to merge with the next one because we just fill
802 if (osc_extent_merge(env, ext, next_extent(ext)) == 0)
803 /* we can save extent tax from next extent */
804 *grants += cli->cl_grant_extent_tax;
806 found = osc_extent_hold(ext);
811 ext = next_extent(ext);
814 osc_extent_tree_dump(D_CACHE, obj);
816 LASSERT(conflict == NULL);
817 if (!IS_ERR(found)) {
818 LASSERT(found->oe_dlmlock == cur->oe_dlmlock);
819 OSC_EXTENT_DUMP(D_CACHE, found,
820 "found caching ext for %lu.\n", index);
822 } else if (conflict == NULL) {
823 /* create a new extent */
824 EASSERT(osc_extent_is_overlapped(obj, cur) == 0, cur);
825 cur->oe_grants = chunksize + cli->cl_grant_extent_tax;
826 LASSERT(*grants >= cur->oe_grants);
827 *grants -= cur->oe_grants;
829 cur->oe_state = OES_CACHE;
830 found = osc_extent_hold(cur);
831 osc_extent_insert(obj, cur);
832 OSC_EXTENT_DUMP(D_CACHE, cur, "add into tree %lu/%lu.\n",
833 index, descr->cld_end);
835 osc_object_unlock(obj);
837 if (conflict != NULL) {
838 LASSERT(found == NULL);
840 /* waiting for IO to finish. Please notice that it's impossible
841 * to be an OES_TRUNC extent. */
842 rc = osc_extent_wait(env, conflict, OES_INV);
843 osc_extent_put(env, conflict);
846 GOTO(out, found = ERR_PTR(rc));
853 osc_extent_put(env, cur);
858 * Called when IO is finished to an extent.
860 int osc_extent_finish(const struct lu_env *env, struct osc_extent *ext,
863 struct client_obd *cli = osc_cli(ext->oe_obj);
864 struct osc_async_page *oap;
865 struct osc_async_page *tmp;
866 int nr_pages = ext->oe_nr_pages;
868 int blocksize = cli->cl_import->imp_obd->obd_osfs.os_bsize ? : 4096;
873 OSC_EXTENT_DUMP(D_CACHE, ext, "extent finished.\n");
875 ext->oe_rc = rc ?: ext->oe_nr_pages;
876 EASSERT(ergo(rc == 0, ext->oe_state == OES_RPC), ext);
878 osc_lru_add_batch(cli, &ext->oe_pages);
879 list_for_each_entry_safe(oap, tmp, &ext->oe_pages,
881 list_del_init(&oap->oap_rpc_item);
882 list_del_init(&oap->oap_pending_item);
883 if (last_off <= oap->oap_obj_off) {
884 last_off = oap->oap_obj_off;
885 last_count = oap->oap_count;
889 osc_ap_completion(env, cli, oap, sent, rc);
891 EASSERT(ext->oe_nr_pages == 0, ext);
894 lost_grant = ext->oe_grants;
895 } else if (blocksize < PAGE_SIZE &&
896 last_count != PAGE_SIZE) {
897 /* For short writes we shouldn't count parts of pages that
898 * span a whole chunk on the OST side, or our accounting goes
899 * wrong. Should match the code in filter_grant_check. */
900 int offset = last_off & ~PAGE_MASK;
901 int count = last_count + (offset & (blocksize - 1));
902 int end = (offset + last_count) & (blocksize - 1);
904 count += blocksize - end;
906 lost_grant = PAGE_SIZE - count;
908 if (ext->oe_grants > 0)
909 osc_free_grant(cli, nr_pages, lost_grant, ext->oe_grants);
911 osc_extent_remove(ext);
912 /* put the refcount for RPC */
913 osc_extent_put(env, ext);
917 static int extent_wait_cb(struct osc_extent *ext, enum osc_extent_state state)
921 osc_object_lock(ext->oe_obj);
922 ret = ext->oe_state == state;
923 osc_object_unlock(ext->oe_obj);
929 * Wait for the extent's state to become @state.
931 static int osc_extent_wait(const struct lu_env *env, struct osc_extent *ext,
932 enum osc_extent_state state)
934 struct osc_object *obj = ext->oe_obj;
938 osc_object_lock(obj);
939 LASSERT(sanity_check_nolock(ext) == 0);
940 /* `Kick' this extent only if the caller is waiting for it to be
942 if (state == OES_INV && !ext->oe_urgent && !ext->oe_hp) {
943 if (ext->oe_state == OES_ACTIVE) {
945 } else if (ext->oe_state == OES_CACHE) {
947 osc_extent_hold(ext);
951 osc_object_unlock(obj);
953 osc_extent_release(env, ext);
955 /* wait for the extent until its state becomes @state */
956 rc = wait_event_idle_timeout(ext->oe_waitq, extent_wait_cb(ext, state),
957 cfs_time_seconds(600));
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);
963 wait_event_idle(ext->oe_waitq, extent_wait_cb(ext, state));
973 * Discard pages with index greater than @size. If @ext is overlapped with
974 * @size, then partial truncate happens.
976 static int osc_extent_truncate(struct osc_extent *ext, pgoff_t trunc_index,
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 -
989 __u64 trunc_chunk = trunc_index >> ppc_bits;
996 LASSERT(sanity_check(ext) == 0);
997 LASSERT(ext->oe_state == OES_TRUNC);
998 LASSERT(!ext->oe_urgent);
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);
1005 RETURN(PTR_ERR(env));
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);
1016 /* discard all pages with index greater than trunc_index */
1017 list_for_each_entry_safe(oap, tmp, &ext->oe_pages,
1019 pgoff_t index = osc_index(oap2osc(oap));
1020 struct cl_page *page = oap2cl_page(oap);
1022 LASSERT(list_empty(&oap->oap_rpc_item));
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)
1035 list_del_init(&oap->oap_pending_item);
1038 lu_ref_add(&page->cp_reference, "truncate", current);
1040 if (cl_page_own(env, io, page) == 0) {
1041 cl_page_discard(env, io, page);
1042 cl_page_disown(env, io, page);
1044 LASSERT(page->cp_state == CPS_FREEING);
1048 lu_ref_del(&page->cp_reference, "truncate", current);
1049 cl_pagevec_put(env, page, pvec);
1054 pagevec_release(pvec);
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);
1060 osc_object_lock(obj);
1061 if (ext->oe_nr_pages == 0) {
1062 LASSERT(pages_in_chunk == 0);
1063 grants = ext->oe_grants;
1065 } else { /* calculate how many grants we can free */
1066 int chunks = (ext->oe_end >> ppc_bits) - trunc_chunk;
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);
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);
1089 osc_object_unlock(obj);
1091 if (grants > 0 || nr_pages > 0)
1092 osc_free_grant(cli, nr_pages, grants, grants);
1095 cl_io_fini(env, io);
1096 cl_env_put(env, &refcheck);
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.
1104 static int osc_extent_make_ready(const struct lu_env *env,
1105 struct osc_extent *ext)
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;
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);
1120 OSC_EXTENT_DUMP(D_CACHE, ext, "make ready\n");
1122 list_for_each_entry(oap, &ext->oe_pages, oap_pending_item) {
1124 if (last == NULL || last->oap_obj_off < oap->oap_obj_off)
1127 /* checking ASYNC_READY is race safe */
1128 if ((oap->oap_async_flags & ASYNC_READY) != 0)
1131 rc = osc_make_ready(env, oap, OBD_BRW_WRITE);
1134 spin_lock(&oap->oap_lock);
1135 oap->oap_async_flags |= ASYNC_READY;
1136 spin_unlock(&oap->oap_lock);
1139 LASSERT((oap->oap_async_flags & ASYNC_READY) != 0);
1142 LASSERTF(0, "unknown return code: %d\n", rc);
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);
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);
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);
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.
1185 static int osc_extent_expand(struct osc_extent *ext, pgoff_t index,
1186 unsigned int *grants)
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;
1195 unsigned int chunksize = 1 << cli->cl_chunkbits;
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);
1206 if (end_chunk >= chunk)
1209 LASSERT(end_chunk + 1 == chunk);
1211 /* try to expand this extent to cover @index */
1212 end_index = min(ext->oe_max_end, ((chunk + 1) << ppc_bits) - 1);
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);
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);
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);
1233 osc_object_unlock(obj);
1237 static void osc_extent_tree_dump0(int mask, struct osc_object *obj,
1238 const char *func, int line)
1240 struct osc_extent *ext;
1243 if (!cfs_cdebug_show(mask, DEBUG_SUBSYSTEM))
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);
1249 /* osc_object_lock(obj); */
1251 for (ext = first_extent(obj); ext != NULL; ext = next_extent(ext))
1252 OSC_EXTENT_DUMP(mask, ext, "in tree %d.\n", cnt++);
1255 list_for_each_entry(ext, &obj->oo_hp_exts, oe_link)
1256 OSC_EXTENT_DUMP(mask, ext, "hp %d.\n", cnt++);
1259 list_for_each_entry(ext, &obj->oo_urgent_exts, oe_link)
1260 OSC_EXTENT_DUMP(mask, ext, "urgent %d.\n", cnt++);
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); */
1268 /* ------------------ osc extent end ------------------ */
1270 static inline int osc_is_ready(struct osc_object *osc)
1272 return !list_empty(&osc->oo_ready_item) ||
1273 !list_empty(&osc->oo_hp_ready_item);
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), \
1288 static int osc_make_ready(const struct lu_env *env, struct osc_async_page *oap,
1291 struct osc_page *opg = oap2osc_page(oap);
1292 struct cl_page *page = oap2cl_page(oap);
1295 LASSERT(cmd == OBD_BRW_WRITE); /* no cached reads */
1298 result = cl_page_make_ready(env, page, CRT_WRITE);
1300 opg->ops_submit_time = ktime_get();
1304 static int osc_refresh_count(const struct lu_env *env,
1305 struct osc_async_page *oap, int cmd)
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;
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;
1319 cl_object_attr_lock(obj);
1320 result = cl_object_attr_get(env, obj, attr);
1321 cl_object_attr_unlock(obj);
1324 kms = attr->cat_kms;
1325 if (cl_offset(obj, index) >= kms)
1326 /* catch race with truncate */
1328 else if (cl_offset(obj, index + 1) > kms)
1329 /* catch sub-page write at end of file */
1330 return kms % PAGE_SIZE;
1335 static int osc_completion(const struct lu_env *env, struct osc_async_page *oap,
1338 struct osc_page *opg = oap2osc_page(oap);
1339 struct cl_page *page = oap2cl_page(oap);
1340 enum cl_req_type crt;
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);
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;
1356 opg->ops_submit_time = ktime_set(0, 0);
1357 srvlock = oap->oap_brw_flags & OBD_BRW_SRVLOCK;
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;
1365 if (crt == CRT_READ)
1366 stats->os_lockless_reads += bytes;
1368 stats->os_lockless_writes += bytes;
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.
1376 lu_ref_del(&page->cp_reference, "transfer", page);
1378 cl_page_completion(env, page, crt, rc);
1379 cl_page_put(env, page);
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", \
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); \
1401 /* caller must hold loi_list_lock */
1402 static void osc_consume_write_grant(struct client_obd *cli,
1403 struct brw_page *pga)
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);
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)
1421 assert_spin_locked(&cli->cl_loi_list_lock);
1422 if (!(pga->flag & OBD_BRW_FROM_GRANT)) {
1427 pga->flag &= ~OBD_BRW_FROM_GRANT;
1428 atomic_long_dec(&obd_dirty_pages);
1429 cli->cl_dirty_pages--;
1434 * To avoid sleeping with object lock held, it's good for us allocate enough
1435 * grants before entering into critical section.
1437 * client_obd_list_lock held by caller
1439 static int osc_reserve_grant(struct client_obd *cli, unsigned int bytes)
1443 if (cli->cl_avail_grant >= bytes) {
1444 cli->cl_avail_grant -= bytes;
1445 cli->cl_reserved_grant += bytes;
1451 static void __osc_unreserve_grant(struct client_obd *cli,
1452 unsigned int reserved, unsigned int unused)
1454 /* it's quite normal for us to get more grant than reserved.
1455 * Thinking about a case that two extents merged by adding a new
1456 * chunk, we can save one extent tax. If extent tax is greater than
1457 * one chunk, we can save more grant by adding a new chunk */
1458 cli->cl_reserved_grant -= reserved;
1459 if (unused > reserved) {
1460 cli->cl_avail_grant += reserved;
1461 cli->cl_lost_grant += unused - reserved;
1462 cli->cl_dirty_grant -= unused - reserved;
1464 cli->cl_avail_grant += unused;
1465 cli->cl_dirty_grant += reserved - unused;
1469 static void osc_unreserve_grant_nolock(struct client_obd *cli,
1470 unsigned int reserved,
1471 unsigned int unused)
1473 __osc_unreserve_grant(cli, reserved, unused);
1475 osc_wake_cache_waiters(cli);
1478 static void osc_unreserve_grant(struct client_obd *cli,
1479 unsigned int reserved, unsigned int unused)
1481 spin_lock(&cli->cl_loi_list_lock);
1482 osc_unreserve_grant_nolock(cli, reserved, unused);
1483 spin_unlock(&cli->cl_loi_list_lock);
1487 * Free grant after IO is finished or canceled.
1489 * @lost_grant is used to remember how many grants we have allocated but not
1490 * used, we should return these grants to OST. There're two cases where grants
1493 * 2. blocksize at OST is less than PAGE_SIZE and a partial page was
1494 * written. In this case OST may use less chunks to serve this partial
1495 * write. OSTs don't actually know the page size on the client side. so
1496 * clients have to calculate lost grant by the blocksize on the OST.
1497 * See filter_grant_check() for details.
1499 static void osc_free_grant(struct client_obd *cli, unsigned int nr_pages,
1500 unsigned int lost_grant, unsigned int dirty_grant)
1502 unsigned long grant;
1504 grant = (1 << cli->cl_chunkbits) + cli->cl_grant_extent_tax;
1506 spin_lock(&cli->cl_loi_list_lock);
1507 atomic_long_sub(nr_pages, &obd_dirty_pages);
1508 cli->cl_dirty_pages -= nr_pages;
1509 cli->cl_lost_grant += lost_grant;
1510 cli->cl_dirty_grant -= dirty_grant;
1511 if (cli->cl_avail_grant < grant && cli->cl_lost_grant >= grant) {
1512 /* borrow some grant from truncate to avoid the case that
1513 * truncate uses up all avail grant */
1514 cli->cl_lost_grant -= grant;
1515 cli->cl_avail_grant += grant;
1517 osc_wake_cache_waiters(cli);
1518 spin_unlock(&cli->cl_loi_list_lock);
1519 CDEBUG(D_CACHE, "lost %u grant: %lu avail: %lu dirty: %lu/%lu\n",
1520 lost_grant, cli->cl_lost_grant,
1521 cli->cl_avail_grant, cli->cl_dirty_pages << PAGE_SHIFT,
1522 cli->cl_dirty_grant);
1526 * The companion to osc_enter_cache(), called when @oap is no longer part of
1527 * the dirty accounting due to error.
1529 static void osc_exit_cache(struct client_obd *cli, struct osc_async_page *oap)
1531 spin_lock(&cli->cl_loi_list_lock);
1532 osc_release_write_grant(cli, &oap->oap_brw_page);
1533 spin_unlock(&cli->cl_loi_list_lock);
1537 * Non-blocking version of osc_enter_cache() that consumes grant only when it
1540 static int osc_enter_cache_try(struct client_obd *cli,
1541 struct osc_async_page *oap,
1546 OSC_DUMP_GRANT(D_CACHE, cli, "need:%d\n", bytes);
1548 rc = osc_reserve_grant(cli, bytes);
1552 if (cli->cl_dirty_pages < cli->cl_dirty_max_pages) {
1553 if (atomic_long_add_return(1, &obd_dirty_pages) <=
1554 obd_max_dirty_pages) {
1555 osc_consume_write_grant(cli, &oap->oap_brw_page);
1559 atomic_long_dec(&obd_dirty_pages);
1561 __osc_unreserve_grant(cli, bytes, bytes);
1567 static int ocw_granted(struct client_obd *cli, struct osc_cache_waiter *ocw)
1570 spin_lock(&cli->cl_loi_list_lock);
1571 rc = list_empty(&ocw->ocw_entry);
1572 spin_unlock(&cli->cl_loi_list_lock);
1577 * The main entry to reserve dirty page accounting. Usually the grant reserved
1578 * in this function will be freed in bulk in osc_free_grant() unless it fails
1579 * to add osc cache, in that case, it will be freed in osc_exit_cache().
1581 * The process will be put into sleep if it's already run out of grant.
1583 static int osc_enter_cache(const struct lu_env *env, struct client_obd *cli,
1584 struct osc_async_page *oap, int bytes)
1586 struct osc_object *osc = oap->oap_obj;
1587 struct lov_oinfo *loi = osc->oo_oinfo;
1588 struct osc_cache_waiter ocw;
1592 OSC_DUMP_GRANT(D_CACHE, cli, "need:%d\n", bytes);
1594 spin_lock(&cli->cl_loi_list_lock);
1596 /* force the caller to try sync io. this can jump the list
1597 * of queued writes and create a discontiguous rpc stream */
1598 if (OBD_FAIL_CHECK(OBD_FAIL_OSC_NO_GRANT) ||
1599 cli->cl_dirty_max_pages == 0 ||
1600 cli->cl_ar.ar_force_sync || loi->loi_ar.ar_force_sync) {
1601 OSC_DUMP_GRANT(D_CACHE, cli, "forced sync i/o\n");
1602 GOTO(out, rc = -EDQUOT);
1605 /* Hopefully normal case - cache space and write credits available */
1606 if (list_empty(&cli->cl_cache_waiters) &&
1607 osc_enter_cache_try(cli, oap, bytes)) {
1608 OSC_DUMP_GRANT(D_CACHE, cli, "granted from cache\n");
1612 /* We can get here for two reasons: too many dirty pages in cache, or
1613 * run out of grants. In both cases we should write dirty pages out.
1614 * Adding a cache waiter will trigger urgent write-out no matter what
1616 * The exiting condition is no avail grants and no dirty pages caching,
1617 * that really means there is no space on the OST. */
1618 init_waitqueue_head(&ocw.ocw_waitq);
1620 ocw.ocw_grant = bytes;
1621 while (cli->cl_dirty_pages > 0 || cli->cl_w_in_flight > 0) {
1622 list_add_tail(&ocw.ocw_entry, &cli->cl_cache_waiters);
1624 spin_unlock(&cli->cl_loi_list_lock);
1626 osc_io_unplug_async(env, cli, NULL);
1628 CDEBUG(D_CACHE, "%s: sleeping for cache space @ %p for %p\n",
1629 cli_name(cli), &ocw, oap);
1631 rc = wait_event_idle_timeout(ocw.ocw_waitq,
1632 ocw_granted(cli, &ocw),
1633 cfs_time_seconds(AT_OFF ?
1637 spin_lock(&cli->cl_loi_list_lock);
1640 /* l_wait_event is interrupted by signal or timed out */
1641 list_del_init(&ocw.ocw_entry);
1646 LASSERT(list_empty(&ocw.ocw_entry));
1651 if (osc_enter_cache_try(cli, oap, bytes)) {
1659 OSC_DUMP_GRANT(D_CACHE, cli, "finally got grant space\n");
1662 OSC_DUMP_GRANT(D_CACHE, cli,
1663 "timeout, fall back to sync i/o\n");
1664 osc_extent_tree_dump(D_CACHE, osc);
1665 /* fall back to synchronous I/O */
1669 /* Ensures restartability - LU-3581 */
1670 OSC_DUMP_GRANT(D_CACHE, cli, "interrupted\n");
1674 OSC_DUMP_GRANT(D_CACHE, cli,
1675 "no grant space, fall back to sync i/o\n");
1678 CDEBUG(D_CACHE, "%s: event for cache space @ %p never arrived "
1679 "due to %d, fall back to sync i/o\n",
1680 cli_name(cli), &ocw, rc);
1685 spin_unlock(&cli->cl_loi_list_lock);
1689 /* caller must hold loi_list_lock */
1690 void osc_wake_cache_waiters(struct client_obd *cli)
1692 struct list_head *l, *tmp;
1693 struct osc_cache_waiter *ocw;
1696 list_for_each_safe(l, tmp, &cli->cl_cache_waiters) {
1697 ocw = list_entry(l, struct osc_cache_waiter, ocw_entry);
1699 ocw->ocw_rc = -EDQUOT;
1701 if (osc_enter_cache_try(cli, ocw->ocw_oap, ocw->ocw_grant))
1704 if (ocw->ocw_rc == 0 ||
1705 !(cli->cl_dirty_pages > 0 || cli->cl_w_in_flight > 0)) {
1706 list_del_init(&ocw->ocw_entry);
1707 CDEBUG(D_CACHE, "wake up %p for oap %p, avail grant "
1708 "%ld, %d\n", ocw, ocw->ocw_oap,
1709 cli->cl_avail_grant, ocw->ocw_rc);
1711 wake_up(&ocw->ocw_waitq);
1717 EXPORT_SYMBOL(osc_wake_cache_waiters);
1719 static int osc_max_rpc_in_flight(struct client_obd *cli, struct osc_object *osc)
1721 int hprpc = !!list_empty(&osc->oo_hp_exts);
1722 return rpcs_in_flight(cli) >= cli->cl_max_rpcs_in_flight + hprpc;
1725 /* This maintains the lists of pending pages to read/write for a given object
1726 * (lop). This is used by osc_check_rpcs->osc_next_obj() and osc_list_maint()
1727 * to quickly find objects that are ready to send an RPC. */
1728 static int osc_makes_rpc(struct client_obd *cli, struct osc_object *osc,
1731 int invalid_import = 0;
1734 /* if we have an invalid import we want to drain the queued pages
1735 * by forcing them through rpcs that immediately fail and complete
1736 * the pages. recovery relies on this to empty the queued pages
1737 * before canceling the locks and evicting down the llite pages */
1738 if ((cli->cl_import == NULL || cli->cl_import->imp_invalid))
1741 if (cmd & OBD_BRW_WRITE) {
1742 if (atomic_read(&osc->oo_nr_writes) == 0)
1744 if (invalid_import) {
1745 CDEBUG(D_CACHE, "invalid import forcing RPC\n");
1748 if (!list_empty(&osc->oo_hp_exts)) {
1749 CDEBUG(D_CACHE, "high prio request forcing RPC\n");
1752 if (!list_empty(&osc->oo_urgent_exts)) {
1753 CDEBUG(D_CACHE, "urgent request forcing RPC\n");
1756 /* trigger a write rpc stream as long as there are dirtiers
1757 * waiting for space. as they're waiting, they're not going to
1758 * create more pages to coalesce with what's waiting.. */
1759 if (!list_empty(&cli->cl_cache_waiters)) {
1760 CDEBUG(D_CACHE, "cache waiters forcing RPC\n");
1763 if (!list_empty(&osc->oo_full_exts)) {
1764 CDEBUG(D_CACHE, "full extent ready, make an RPC\n");
1768 if (atomic_read(&osc->oo_nr_reads) == 0)
1770 if (invalid_import) {
1771 CDEBUG(D_CACHE, "invalid import forcing RPC\n");
1774 /* all read are urgent. */
1775 if (!list_empty(&osc->oo_reading_exts))
1782 static void osc_update_pending(struct osc_object *obj, int cmd, int delta)
1784 struct client_obd *cli = osc_cli(obj);
1785 if (cmd & OBD_BRW_WRITE) {
1786 atomic_add(delta, &obj->oo_nr_writes);
1787 atomic_add(delta, &cli->cl_pending_w_pages);
1788 LASSERT(atomic_read(&obj->oo_nr_writes) >= 0);
1790 atomic_add(delta, &obj->oo_nr_reads);
1791 atomic_add(delta, &cli->cl_pending_r_pages);
1792 LASSERT(atomic_read(&obj->oo_nr_reads) >= 0);
1794 OSC_IO_DEBUG(obj, "update pending cmd %d delta %d.\n", cmd, delta);
1797 static int osc_makes_hprpc(struct osc_object *obj)
1799 return !list_empty(&obj->oo_hp_exts);
1802 static void on_list(struct list_head *item, struct list_head *list,
1805 if (list_empty(item) && should_be_on)
1806 list_add_tail(item, list);
1807 else if (!list_empty(item) && !should_be_on)
1808 list_del_init(item);
1811 /* maintain the osc's cli list membership invariants so that osc_send_oap_rpc
1812 * can find pages to build into rpcs quickly */
1813 static int __osc_list_maint(struct client_obd *cli, struct osc_object *osc)
1815 if (osc_makes_hprpc(osc)) {
1817 on_list(&osc->oo_ready_item, &cli->cl_loi_ready_list, 0);
1818 on_list(&osc->oo_hp_ready_item, &cli->cl_loi_hp_ready_list, 1);
1820 on_list(&osc->oo_hp_ready_item, &cli->cl_loi_hp_ready_list, 0);
1821 on_list(&osc->oo_ready_item, &cli->cl_loi_ready_list,
1822 osc_makes_rpc(cli, osc, OBD_BRW_WRITE) ||
1823 osc_makes_rpc(cli, osc, OBD_BRW_READ));
1826 on_list(&osc->oo_write_item, &cli->cl_loi_write_list,
1827 atomic_read(&osc->oo_nr_writes) > 0);
1829 on_list(&osc->oo_read_item, &cli->cl_loi_read_list,
1830 atomic_read(&osc->oo_nr_reads) > 0);
1832 return osc_is_ready(osc);
1835 static int osc_list_maint(struct client_obd *cli, struct osc_object *osc)
1839 spin_lock(&cli->cl_loi_list_lock);
1840 is_ready = __osc_list_maint(cli, osc);
1841 spin_unlock(&cli->cl_loi_list_lock);
1846 /* this is trying to propogate async writeback errors back up to the
1847 * application. As an async write fails we record the error code for later if
1848 * the app does an fsync. As long as errors persist we force future rpcs to be
1849 * sync so that the app can get a sync error and break the cycle of queueing
1850 * pages for which writeback will fail. */
1851 static void osc_process_ar(struct osc_async_rc *ar, __u64 xid,
1858 ar->ar_force_sync = 1;
1859 ar->ar_min_xid = ptlrpc_sample_next_xid();
1864 if (ar->ar_force_sync && (xid >= ar->ar_min_xid))
1865 ar->ar_force_sync = 0;
1868 /* this must be called holding the loi list lock to give coverage to exit_cache,
1869 * async_flag maintenance, and oap_request */
1870 static void osc_ap_completion(const struct lu_env *env, struct client_obd *cli,
1871 struct osc_async_page *oap, int sent, int rc)
1873 struct osc_object *osc = oap->oap_obj;
1874 struct lov_oinfo *loi = osc->oo_oinfo;
1878 if (oap->oap_request != NULL) {
1879 xid = ptlrpc_req_xid(oap->oap_request);
1880 ptlrpc_req_finished(oap->oap_request);
1881 oap->oap_request = NULL;
1884 /* As the transfer for this page is being done, clear the flags */
1885 spin_lock(&oap->oap_lock);
1886 oap->oap_async_flags = 0;
1887 spin_unlock(&oap->oap_lock);
1888 oap->oap_interrupted = 0;
1890 if (oap->oap_cmd & OBD_BRW_WRITE && xid > 0) {
1891 spin_lock(&cli->cl_loi_list_lock);
1892 osc_process_ar(&cli->cl_ar, xid, rc);
1893 osc_process_ar(&loi->loi_ar, xid, rc);
1894 spin_unlock(&cli->cl_loi_list_lock);
1897 rc = osc_completion(env, oap, oap->oap_cmd, rc);
1899 CERROR("completion on oap %p obj %p returns %d.\n",
1905 struct extent_rpc_data {
1906 struct list_head *erd_rpc_list;
1907 unsigned int erd_page_count;
1908 unsigned int erd_max_pages;
1909 unsigned int erd_max_chunks;
1910 unsigned int erd_max_extents;
1913 static inline unsigned osc_extent_chunks(const struct osc_extent *ext)
1915 struct client_obd *cli = osc_cli(ext->oe_obj);
1916 unsigned ppc_bits = cli->cl_chunkbits - PAGE_SHIFT;
1918 return (ext->oe_end >> ppc_bits) - (ext->oe_start >> ppc_bits) + 1;
1922 * Try to add extent to one RPC. We need to think about the following things:
1923 * - # of pages must not be over max_pages_per_rpc
1924 * - extent must be compatible with previous ones
1926 static int try_to_add_extent_for_io(struct client_obd *cli,
1927 struct osc_extent *ext,
1928 struct extent_rpc_data *data)
1930 struct osc_extent *tmp;
1931 unsigned int chunk_count;
1932 struct osc_async_page *oap = list_first_entry(&ext->oe_pages,
1933 struct osc_async_page,
1937 EASSERT((ext->oe_state == OES_CACHE || ext->oe_state == OES_LOCK_DONE),
1939 OSC_EXTENT_DUMP(D_CACHE, ext, "trying to add this extent\n");
1941 if (data->erd_max_extents == 0)
1944 chunk_count = osc_extent_chunks(ext);
1945 EASSERTF(data->erd_page_count != 0 ||
1946 chunk_count <= data->erd_max_chunks, ext,
1947 "The first extent to be fit in a RPC contains %u chunks, "
1948 "which is over the limit %u.\n", chunk_count,
1949 data->erd_max_chunks);
1950 if (chunk_count > data->erd_max_chunks)
1953 data->erd_max_pages = max(ext->oe_mppr, data->erd_max_pages);
1954 EASSERTF(data->erd_page_count != 0 ||
1955 ext->oe_nr_pages <= data->erd_max_pages, ext,
1956 "The first extent to be fit in a RPC contains %u pages, "
1957 "which is over the limit %u.\n", ext->oe_nr_pages,
1958 data->erd_max_pages);
1959 if (data->erd_page_count + ext->oe_nr_pages > data->erd_max_pages)
1962 list_for_each_entry(tmp, data->erd_rpc_list, oe_link) {
1963 struct osc_async_page *oap2;
1964 oap2 = list_first_entry(&tmp->oe_pages, struct osc_async_page,
1966 EASSERT(tmp->oe_owner == current, tmp);
1968 if (overlapped(tmp, ext)) {
1969 OSC_EXTENT_DUMP(D_ERROR, tmp, "overlapped %p.\n", ext);
1973 if (oap2cl_page(oap)->cp_type != oap2cl_page(oap2)->cp_type) {
1974 CDEBUG(D_CACHE, "Do not permit different types of IO "
1979 if (tmp->oe_srvlock != ext->oe_srvlock ||
1980 !tmp->oe_grants != !ext->oe_grants ||
1981 tmp->oe_ndelay != ext->oe_ndelay ||
1982 tmp->oe_no_merge || ext->oe_no_merge)
1985 /* remove break for strict check */
1989 data->erd_max_extents--;
1990 data->erd_max_chunks -= chunk_count;
1991 data->erd_page_count += ext->oe_nr_pages;
1992 list_move_tail(&ext->oe_link, data->erd_rpc_list);
1993 ext->oe_owner = current;
1998 * In order to prevent multiple ptlrpcd from breaking contiguous extents,
1999 * get_write_extent() takes all appropriate extents in atomic.
2001 * The following policy is used to collect extents for IO:
2002 * 1. Add as many HP extents as possible;
2003 * 2. Add the first urgent extent in urgent extent list and take it out of
2005 * 3. Add subsequent extents of this urgent extent;
2006 * 4. If urgent list is not empty, goto 2;
2007 * 5. Traverse the extent tree from the 1st extent;
2008 * 6. Above steps exit if there is no space in this RPC.
2010 static unsigned int get_write_extents(struct osc_object *obj,
2011 struct list_head *rpclist)
2013 struct client_obd *cli = osc_cli(obj);
2014 struct osc_extent *ext;
2015 struct extent_rpc_data data = {
2016 .erd_rpc_list = rpclist,
2017 .erd_page_count = 0,
2018 .erd_max_pages = cli->cl_max_pages_per_rpc,
2019 .erd_max_chunks = osc_max_write_chunks(cli),
2020 .erd_max_extents = 256,
2023 LASSERT(osc_object_is_locked(obj));
2024 while (!list_empty(&obj->oo_hp_exts)) {
2025 ext = list_entry(obj->oo_hp_exts.next, struct osc_extent,
2027 LASSERT(ext->oe_state == OES_CACHE);
2028 if (!try_to_add_extent_for_io(cli, ext, &data))
2029 return data.erd_page_count;
2030 EASSERT(ext->oe_nr_pages <= data.erd_max_pages, ext);
2032 if (data.erd_page_count == data.erd_max_pages)
2033 return data.erd_page_count;
2035 while (!list_empty(&obj->oo_urgent_exts)) {
2036 ext = list_entry(obj->oo_urgent_exts.next,
2037 struct osc_extent, oe_link);
2038 if (!try_to_add_extent_for_io(cli, ext, &data))
2039 return data.erd_page_count;
2041 if (data.erd_page_count == data.erd_max_pages)
2042 return data.erd_page_count;
2044 /* One key difference between full extents and other extents: full
2045 * extents can usually only be added if the rpclist was empty, so if we
2046 * can't add one, we continue on to trying to add normal extents. This
2047 * is so we don't miss adding extra extents to an RPC containing high
2048 * priority or urgent extents. */
2049 while (!list_empty(&obj->oo_full_exts)) {
2050 ext = list_entry(obj->oo_full_exts.next,
2051 struct osc_extent, oe_link);
2052 if (!try_to_add_extent_for_io(cli, ext, &data))
2055 if (data.erd_page_count == data.erd_max_pages)
2056 return data.erd_page_count;
2058 ext = first_extent(obj);
2059 while (ext != NULL) {
2060 if ((ext->oe_state != OES_CACHE) ||
2061 /* this extent may be already in current rpclist */
2062 (!list_empty(&ext->oe_link) && ext->oe_owner != NULL)) {
2063 ext = next_extent(ext);
2067 if (!try_to_add_extent_for_io(cli, ext, &data))
2068 return data.erd_page_count;
2070 ext = next_extent(ext);
2072 return data.erd_page_count;
2076 osc_send_write_rpc(const struct lu_env *env, struct client_obd *cli,
2077 struct osc_object *osc)
2081 struct osc_extent *ext;
2082 struct osc_extent *tmp;
2083 struct osc_extent *first = NULL;
2084 unsigned int page_count = 0;
2089 LASSERT(osc_object_is_locked(osc));
2091 page_count = get_write_extents(osc, &rpclist);
2092 LASSERT(equi(page_count == 0, list_empty(&rpclist)));
2094 if (list_empty(&rpclist))
2097 osc_update_pending(osc, OBD_BRW_WRITE, -page_count);
2099 list_for_each_entry(ext, &rpclist, oe_link) {
2100 LASSERT(ext->oe_state == OES_CACHE ||
2101 ext->oe_state == OES_LOCK_DONE);
2102 if (ext->oe_state == OES_CACHE)
2103 osc_extent_state_set(ext, OES_LOCKING);
2105 osc_extent_state_set(ext, OES_RPC);
2108 /* we're going to grab page lock, so release object lock because
2109 * lock order is page lock -> object lock. */
2110 osc_object_unlock(osc);
2112 list_for_each_entry_safe(ext, tmp, &rpclist, oe_link) {
2113 if (ext->oe_state == OES_LOCKING) {
2114 rc = osc_extent_make_ready(env, ext);
2115 if (unlikely(rc < 0)) {
2116 list_del_init(&ext->oe_link);
2117 osc_extent_finish(env, ext, 0, rc);
2121 if (first == NULL) {
2123 srvlock = ext->oe_srvlock;
2125 LASSERT(srvlock == ext->oe_srvlock);
2129 if (!list_empty(&rpclist)) {
2130 LASSERT(page_count > 0);
2131 rc = osc_build_rpc(env, cli, &rpclist, OBD_BRW_WRITE);
2132 LASSERT(list_empty(&rpclist));
2135 osc_object_lock(osc);
2140 * prepare pages for ASYNC io and put pages in send queue.
2142 * \param cmd OBD_BRW_* macroses
2143 * \param lop pending pages
2145 * \return zero if no page added to send queue.
2146 * \return 1 if pages successfully added to send queue.
2147 * \return negative on errors.
2150 osc_send_read_rpc(const struct lu_env *env, struct client_obd *cli,
2151 struct osc_object *osc)
2154 struct osc_extent *ext;
2155 struct osc_extent *next;
2157 struct extent_rpc_data data = {
2158 .erd_rpc_list = &rpclist,
2159 .erd_page_count = 0,
2160 .erd_max_pages = cli->cl_max_pages_per_rpc,
2161 .erd_max_chunks = UINT_MAX,
2162 .erd_max_extents = UINT_MAX,
2167 LASSERT(osc_object_is_locked(osc));
2168 list_for_each_entry_safe(ext, next, &osc->oo_reading_exts, oe_link) {
2169 EASSERT(ext->oe_state == OES_LOCK_DONE, ext);
2170 if (!try_to_add_extent_for_io(cli, ext, &data))
2172 osc_extent_state_set(ext, OES_RPC);
2173 EASSERT(ext->oe_nr_pages <= data.erd_max_pages, ext);
2175 LASSERT(data.erd_page_count <= data.erd_max_pages);
2177 osc_update_pending(osc, OBD_BRW_READ, -data.erd_page_count);
2179 if (!list_empty(&rpclist)) {
2180 osc_object_unlock(osc);
2182 rc = osc_build_rpc(env, cli, &rpclist, OBD_BRW_READ);
2183 LASSERT(list_empty(&rpclist));
2185 osc_object_lock(osc);
2190 #define list_to_obj(list, item) ({ \
2191 struct list_head *__tmp = (list)->next; \
2192 list_del_init(__tmp); \
2193 list_entry(__tmp, struct osc_object, oo_##item); \
2196 /* This is called by osc_check_rpcs() to find which objects have pages that
2197 * we could be sending. These lists are maintained by osc_makes_rpc(). */
2198 static struct osc_object *osc_next_obj(struct client_obd *cli)
2202 /* First return objects that have blocked locks so that they
2203 * will be flushed quickly and other clients can get the lock,
2204 * then objects which have pages ready to be stuffed into RPCs */
2205 if (!list_empty(&cli->cl_loi_hp_ready_list))
2206 RETURN(list_to_obj(&cli->cl_loi_hp_ready_list, hp_ready_item));
2207 if (!list_empty(&cli->cl_loi_ready_list))
2208 RETURN(list_to_obj(&cli->cl_loi_ready_list, ready_item));
2210 /* then if we have cache waiters, return all objects with queued
2211 * writes. This is especially important when many small files
2212 * have filled up the cache and not been fired into rpcs because
2213 * they don't pass the nr_pending/object threshhold */
2214 if (!list_empty(&cli->cl_cache_waiters) &&
2215 !list_empty(&cli->cl_loi_write_list))
2216 RETURN(list_to_obj(&cli->cl_loi_write_list, write_item));
2218 /* then return all queued objects when we have an invalid import
2219 * so that they get flushed */
2220 if (cli->cl_import == NULL || cli->cl_import->imp_invalid) {
2221 if (!list_empty(&cli->cl_loi_write_list))
2222 RETURN(list_to_obj(&cli->cl_loi_write_list,
2224 if (!list_empty(&cli->cl_loi_read_list))
2225 RETURN(list_to_obj(&cli->cl_loi_read_list,
2231 /* called with the loi list lock held */
2232 static void osc_check_rpcs(const struct lu_env *env, struct client_obd *cli)
2233 __must_hold(&cli->cl_loi_list_lock)
2235 struct osc_object *osc;
2239 while ((osc = osc_next_obj(cli)) != NULL) {
2240 struct cl_object *obj = osc2cl(osc);
2241 struct lu_ref_link link;
2243 OSC_IO_DEBUG(osc, "%lu in flight\n", rpcs_in_flight(cli));
2245 if (osc_max_rpc_in_flight(cli, osc)) {
2246 __osc_list_maint(cli, osc);
2251 spin_unlock(&cli->cl_loi_list_lock);
2252 lu_object_ref_add_at(&obj->co_lu, &link, "check", current);
2254 /* attempt some read/write balancing by alternating between
2255 * reads and writes in an object. The makes_rpc checks here
2256 * would be redundant if we were getting read/write work items
2257 * instead of objects. we don't want send_oap_rpc to drain a
2258 * partial read pending queue when we're given this object to
2259 * do io on writes while there are cache waiters */
2260 osc_object_lock(osc);
2261 if (osc_makes_rpc(cli, osc, OBD_BRW_WRITE)) {
2262 rc = osc_send_write_rpc(env, cli, osc);
2264 CERROR("Write request failed with %d\n", rc);
2266 /* osc_send_write_rpc failed, mostly because of
2269 * It can't break here, because if:
2270 * - a page was submitted by osc_io_submit, so
2272 * - no request in flight
2273 * - no subsequent request
2274 * The system will be in live-lock state,
2275 * because there is no chance to call
2276 * osc_io_unplug() and osc_check_rpcs() any
2277 * more. pdflush can't help in this case,
2278 * because it might be blocked at grabbing
2279 * the page lock as we mentioned.
2281 * Anyway, continue to drain pages. */
2285 if (osc_makes_rpc(cli, osc, OBD_BRW_READ)) {
2286 rc = osc_send_read_rpc(env, cli, osc);
2288 CERROR("Read request failed with %d\n", rc);
2290 osc_object_unlock(osc);
2292 osc_list_maint(cli, osc);
2293 lu_object_ref_del_at(&obj->co_lu, &link, "check", current);
2294 cl_object_put(env, obj);
2296 spin_lock(&cli->cl_loi_list_lock);
2300 int osc_io_unplug0(const struct lu_env *env, struct client_obd *cli,
2301 struct osc_object *osc, int async)
2305 if (osc != NULL && osc_list_maint(cli, osc) == 0)
2309 spin_lock(&cli->cl_loi_list_lock);
2310 osc_check_rpcs(env, cli);
2311 spin_unlock(&cli->cl_loi_list_lock);
2313 CDEBUG(D_CACHE, "Queue writeback work for client %p.\n", cli);
2314 LASSERT(cli->cl_writeback_work != NULL);
2315 rc = ptlrpcd_queue_work(cli->cl_writeback_work);
2319 EXPORT_SYMBOL(osc_io_unplug0);
2321 int osc_prep_async_page(struct osc_object *osc, struct osc_page *ops,
2322 struct page *page, loff_t offset)
2324 struct obd_export *exp = osc_export(osc);
2325 struct osc_async_page *oap = &ops->ops_oap;
2329 return cfs_size_round(sizeof(*oap));
2331 oap->oap_magic = OAP_MAGIC;
2332 oap->oap_cli = &exp->exp_obd->u.cli;
2335 oap->oap_page = page;
2336 oap->oap_obj_off = offset;
2337 LASSERT(!(offset & ~PAGE_MASK));
2339 INIT_LIST_HEAD(&oap->oap_pending_item);
2340 INIT_LIST_HEAD(&oap->oap_rpc_item);
2342 spin_lock_init(&oap->oap_lock);
2343 CDEBUG(D_INFO, "oap %p page %p obj off %llu\n",
2344 oap, page, oap->oap_obj_off);
2347 EXPORT_SYMBOL(osc_prep_async_page);
2349 int osc_queue_async_io(const struct lu_env *env, struct cl_io *io,
2350 struct osc_page *ops, cl_commit_cbt cb)
2352 struct osc_io *oio = osc_env_io(env);
2353 struct osc_extent *ext = NULL;
2354 struct osc_async_page *oap = &ops->ops_oap;
2355 struct client_obd *cli = oap->oap_cli;
2356 struct osc_object *osc = oap->oap_obj;
2357 struct pagevec *pvec = &osc_env_info(env)->oti_pagevec;
2360 unsigned int grants = 0;
2361 u32 brw_flags = OBD_BRW_ASYNC;
2362 int cmd = OBD_BRW_WRITE;
2363 int need_release = 0;
2367 if (oap->oap_magic != OAP_MAGIC)
2370 if (cli->cl_import == NULL || cli->cl_import->imp_invalid)
2373 if (!list_empty(&oap->oap_pending_item) ||
2374 !list_empty(&oap->oap_rpc_item))
2377 /* Set the OBD_BRW_SRVLOCK before the page is queued. */
2378 brw_flags |= ops->ops_srvlock ? OBD_BRW_SRVLOCK : 0;
2379 if (oio->oi_cap_sys_resource) {
2380 brw_flags |= OBD_BRW_NOQUOTA;
2381 cmd |= OBD_BRW_NOQUOTA;
2384 /* check if the file's owner/group is over quota */
2385 if (!(cmd & OBD_BRW_NOQUOTA)) {
2386 struct cl_object *obj;
2387 struct cl_attr *attr;
2388 unsigned int qid[LL_MAXQUOTAS];
2390 obj = cl_object_top(&osc->oo_cl);
2391 attr = &osc_env_info(env)->oti_attr;
2393 cl_object_attr_lock(obj);
2394 rc = cl_object_attr_get(env, obj, attr);
2395 cl_object_attr_unlock(obj);
2397 qid[USRQUOTA] = attr->cat_uid;
2398 qid[GRPQUOTA] = attr->cat_gid;
2399 qid[PRJQUOTA] = attr->cat_projid;
2400 if (rc == 0 && osc_quota_chkdq(cli, qid) == NO_QUOTA)
2407 oap->oap_page_off = ops->ops_from;
2408 oap->oap_count = ops->ops_to - ops->ops_from;
2409 /* No need to hold a lock here,
2410 * since this page is not in any list yet. */
2411 oap->oap_async_flags = 0;
2412 oap->oap_brw_flags = brw_flags;
2414 OSC_IO_DEBUG(osc, "oap %p page %p added for cmd %d\n",
2415 oap, oap->oap_page, oap->oap_cmd & OBD_BRW_RWMASK);
2417 index = osc_index(oap2osc(oap));
2419 /* Add this page into extent by the following steps:
2420 * 1. if there exists an active extent for this IO, mostly this page
2421 * can be added to the active extent and sometimes we need to
2422 * expand extent to accomodate this page;
2423 * 2. otherwise, a new extent will be allocated. */
2425 ext = oio->oi_active;
2426 if (ext != NULL && ext->oe_start <= index && ext->oe_max_end >= index) {
2427 /* one chunk plus extent overhead must be enough to write this
2429 grants = (1 << cli->cl_chunkbits) + cli->cl_grant_extent_tax;
2430 if (ext->oe_end >= index)
2433 /* it doesn't need any grant to dirty this page */
2434 spin_lock(&cli->cl_loi_list_lock);
2435 rc = osc_enter_cache_try(cli, oap, grants);
2436 if (rc == 0) { /* try failed */
2439 } else if (ext->oe_end < index) {
2441 /* try to expand this extent */
2442 rc = osc_extent_expand(ext, index, &tmp);
2445 /* don't free reserved grant */
2447 OSC_EXTENT_DUMP(D_CACHE, ext,
2448 "expanded for %lu.\n", index);
2449 osc_unreserve_grant_nolock(cli, grants, tmp);
2453 spin_unlock(&cli->cl_loi_list_lock);
2455 } else if (ext != NULL) {
2456 /* index is located outside of active extent */
2460 osc_extent_release(env, ext);
2461 oio->oi_active = NULL;
2466 tmp = (1 << cli->cl_chunkbits) + cli->cl_grant_extent_tax;
2468 /* try to find new extent to cover this page */
2469 LASSERT(oio->oi_active == NULL);
2470 /* we may have allocated grant for this page if we failed
2471 * to expand the previous active extent. */
2472 LASSERT(ergo(grants > 0, grants >= tmp));
2476 /* We haven't allocated grant for this page, and we
2477 * must not hold a page lock while we do enter_cache,
2478 * so we must mark dirty & unlock any pages in the
2479 * write commit pagevec. */
2480 if (pagevec_count(pvec)) {
2482 pagevec_reinit(pvec);
2484 rc = osc_enter_cache(env, cli, oap, tmp);
2491 ext = osc_extent_find(env, osc, index, &tmp);
2493 LASSERT(tmp == grants);
2494 osc_exit_cache(cli, oap);
2498 oio->oi_active = ext;
2502 osc_unreserve_grant(cli, grants, tmp);
2505 LASSERT(ergo(rc == 0, 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);
2511 osc_object_lock(osc);
2512 if (ext->oe_nr_pages == 0)
2513 ext->oe_srvlock = ops->ops_srvlock;
2515 LASSERT(ext->oe_srvlock == ops->ops_srvlock);
2517 list_add_tail(&oap->oap_pending_item, &ext->oe_pages);
2518 osc_object_unlock(osc);
2520 if (!ext->oe_layout_version)
2521 ext->oe_layout_version = io->ci_layout_version;
2527 int osc_teardown_async_page(const struct lu_env *env,
2528 struct osc_object *obj, struct osc_page *ops)
2530 struct osc_async_page *oap = &ops->ops_oap;
2534 LASSERT(oap->oap_magic == OAP_MAGIC);
2536 CDEBUG(D_INFO, "teardown oap %p page %p at index %lu.\n",
2537 oap, ops, osc_index(oap2osc(oap)));
2539 if (!list_empty(&oap->oap_rpc_item)) {
2540 CDEBUG(D_CACHE, "oap %p is not in cache.\n", oap);
2542 } else if (!list_empty(&oap->oap_pending_item)) {
2543 struct osc_extent *ext = NULL;
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()
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)));
2557 osc_extent_put(env, ext);
2563 * This is called when a page is picked up by kernel to write out.
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
2569 int osc_flush_async_page(const struct lu_env *env, struct cl_io *io,
2570 struct osc_page *ops)
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;
2581 osc_object_lock(obj);
2582 ext = osc_extent_lookup(obj, index);
2584 osc_extent_tree_dump(D_ERROR, obj);
2585 LASSERTF(0, "page index %lu is NOT covered.\n", index);
2588 switch (ext->oe_state) {
2591 CL_PAGE_DEBUG(D_ERROR, env, cp, "flush an in-rpc page?\n");
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. */
2602 /* race with truncate, page will be redirtied */
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);
2614 rc = cl_page_prep(env, io, cp, CRT_WRITE);
2618 spin_lock(&oap->oap_lock);
2619 oap->oap_async_flags |= ASYNC_READY|ASYNC_URGENT;
2620 spin_unlock(&oap->oap_lock);
2622 if (memory_pressure_get())
2623 ext->oe_memalloc = 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);
2637 osc_object_unlock(obj);
2638 osc_extent_put(env, ext);
2640 osc_io_unplug_async(env, osc_cli(obj), obj);
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
2651 int osc_cancel_async_page(const struct lu_env *env, struct osc_page *ops)
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);
2664 LASSERT(!oap->oap_interrupted);
2665 oap->oap_interrupted = 1;
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;
2673 plist = &obj->oo_reading_exts;
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);
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);
2690 osc_extent_finish(env, found, 0, -EINTR);
2691 osc_extent_put(env, found);
2694 osc_object_unlock(obj);
2695 /* ok, it's been put in an rpc. only one oap gets a request
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;
2705 osc_list_maint(cli, obj);
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,
2713 struct client_obd *cli = osc_cli(obj);
2714 struct osc_extent *ext;
2715 struct osc_async_page *oap;
2717 int mppr = cli->cl_max_pages_per_rpc;
2718 bool can_merge = true;
2719 pgoff_t start = CL_PAGE_EOF;
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);
2732 mppr <<= (page_count > mppr);
2734 if (unlikely(opg->ops_from > 0 || opg->ops_to < PAGE_SIZE))
2738 ext = osc_extent_alloc(obj);
2740 struct osc_async_page *tmp;
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);
2749 ext->oe_rw = !!(brw_flags & OBD_BRW_READ);
2751 ext->oe_no_merge = !can_merge;
2753 ext->oe_start = start;
2754 ext->oe_end = ext->oe_max_end = end;
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;
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);
2770 list_add_tail(&ext->oe_link, &obj->oo_reading_exts);
2771 osc_update_pending(obj, OBD_BRW_READ, page_count);
2773 osc_object_unlock(obj);
2775 osc_io_unplug_async(env, cli, obj);
2780 * Called by osc_io_setattr_start() to freeze and destroy covering extents.
2782 int osc_cache_truncate_start(const struct lu_env *env, struct osc_object *obj,
2783 __u64 size, struct osc_extent **extp)
2785 struct client_obd *cli = osc_cli(obj);
2786 struct osc_extent *ext;
2787 struct osc_extent *waiting = NULL;
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);
2799 osc_object_lock(obj);
2800 ext = osc_extent_search(obj, index);
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);
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);
2819 OSC_EXTENT_DUMP(D_CACHE, ext, "try to trunc:%llu.\n", size);
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;
2830 EASSERT(ext->oe_state == OES_CACHE, ext);
2831 osc_extent_state_set(ext, OES_TRUNC);
2832 osc_update_pending(obj, OBD_BRW_WRITE,
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);
2840 list_add_tail(&ext->oe_link, &list);
2842 ext = next_extent(ext);
2844 osc_object_unlock(obj);
2846 osc_list_maint(cli, obj);
2848 while (!list_empty(&list)) {
2851 ext = list_entry(list.next, struct osc_extent, oe_link);
2852 list_del_init(&ext->oe_link);
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);
2859 rc = osc_extent_truncate(ext, index, partial);
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);
2869 /* this must be an overlapped extent which means only
2870 * part of pages in this extent have been truncated.
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;
2878 /* we need to hold this extent in OES_TRUNC state so
2879 * that no writeback will happen. This is to avoid
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);
2888 osc_extent_put(env, ext);
2890 if (waiting != NULL) {
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);
2897 OSC_EXTENT_DUMP(D_CACHE, waiting, "error: %d.\n", rc);
2899 osc_extent_put(env, waiting);
2905 EXPORT_SYMBOL(osc_cache_truncate_start);
2908 * Called after osc_io_setattr_end to add oio->oi_trunc back to cache.
2910 void osc_cache_truncate_end(const struct lu_env *env, struct osc_extent *ext)
2913 struct osc_object *obj = ext->oe_obj;
2914 bool unplug = false;
2916 EASSERT(ext->oe_nr_pages > 0, ext);
2917 EASSERT(ext->oe_state == OES_TRUNC, ext);
2918 EASSERT(!ext->oe_urgent, ext);
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) {
2925 list_move_tail(&ext->oe_link, &obj->oo_urgent_exts);
2928 osc_update_pending(obj, OBD_BRW_WRITE, ext->oe_nr_pages);
2929 osc_object_unlock(obj);
2930 osc_extent_put(env, ext);
2933 osc_io_unplug_async(env, osc_cli(obj), obj);
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.
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.
2946 int osc_cache_wait_range(const struct lu_env *env, struct osc_object *obj,
2947 pgoff_t start, pgoff_t end)
2949 struct osc_extent *ext;
2950 pgoff_t index = start;
2955 osc_object_lock(obj);
2956 ext = osc_extent_search(obj, index);
2958 ext = first_extent(obj);
2959 else if (ext->oe_end < index)
2960 ext = next_extent(ext);
2961 while (ext != NULL) {
2964 if (ext->oe_start > end)
2967 if (!ext->oe_fsync_wait) {
2968 ext = next_extent(ext);
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);
2977 index = ext->oe_end + 1;
2978 osc_extent_get(ext);
2979 osc_object_unlock(obj);
2981 rc = osc_extent_wait(env, ext, OES_INV);
2984 osc_extent_put(env, ext);
2987 osc_object_unlock(obj);
2989 OSC_IO_DEBUG(obj, "sync file range.\n");
2992 EXPORT_SYMBOL(osc_cache_wait_range);
2995 * Called to write out a range of osc object.
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.
3001 * Return how many pages will be issued, or error code if error occurred.
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)
3006 struct osc_extent *ext;
3007 LIST_HEAD(discard_list);
3008 bool unplug = false;
3012 osc_object_lock(obj);
3013 ext = osc_extent_search(obj, start);
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)
3022 ext->oe_fsync_wait = 1;
3023 switch (ext->oe_state) {
3025 result += ext->oe_nr_pages;
3027 struct list_head *list = NULL;
3029 EASSERT(!ext->oe_hp, ext);
3031 list = &obj->oo_hp_exts;
3032 } else if (!ext->oe_urgent) {
3034 list = &obj->oo_urgent_exts;
3037 list_move_tail(&ext->oe_link, list);
3040 struct client_obd *cli = osc_cli(obj);
3041 int pcc_bits = cli->cl_chunkbits - PAGE_SHIFT;
3042 pgoff_t align_by = (1 << pcc_bits);
3043 pgoff_t a_start = round_down(start, align_by);
3044 pgoff_t a_end = round_up(end, align_by);
3048 a_end = CL_PAGE_EOF;
3049 /* the only discarder is lock cancelling, so
3050 * [start, end], aligned by chunk size, must
3051 * contain this extent */
3052 LASSERTF(ext->oe_start >= a_start &&
3053 ext->oe_end <= a_end,
3054 "ext [%lu, %lu] reg [%lu, %lu] "
3055 "orig [%lu %lu] align %lu bits "
3056 "%d\n", ext->oe_start, ext->oe_end,
3057 a_start, a_end, start, end,
3058 align_by, pcc_bits);
3059 osc_extent_state_set(ext, OES_LOCKING);
3060 ext->oe_owner = current;
3061 list_move_tail(&ext->oe_link,
3063 osc_update_pending(obj, OBD_BRW_WRITE,
3068 /* It's pretty bad to wait for ACTIVE extents, because
3069 * we don't know how long we will wait for it to be
3070 * flushed since it may be blocked at awaiting more
3071 * grants. We do this for the correctness of fsync. */
3072 LASSERT(hp == 0 && discard == 0);
3076 /* this extent is being truncated, can't do anything
3077 * for it now. it will be set to urgent after truncate
3078 * is finished in osc_cache_truncate_end(). */
3082 ext = next_extent(ext);
3084 osc_object_unlock(obj);
3086 LASSERT(ergo(!discard, list_empty(&discard_list)));
3087 if (!list_empty(&discard_list)) {
3088 struct osc_extent *tmp;
3091 osc_list_maint(osc_cli(obj), obj);
3092 list_for_each_entry_safe(ext, tmp, &discard_list, oe_link) {
3093 list_del_init(&ext->oe_link);
3094 EASSERT(ext->oe_state == OES_LOCKING, ext);
3096 /* Discard caching pages. We don't actually write this
3097 * extent out but we complete it as if we did. */
3098 rc = osc_extent_make_ready(env, ext);
3099 if (unlikely(rc < 0)) {
3100 OSC_EXTENT_DUMP(D_ERROR, ext,
3101 "make_ready returned %d\n", rc);
3106 /* finish the extent as if the pages were sent */
3107 osc_extent_finish(env, ext, 0, 0);
3112 osc_io_unplug(env, osc_cli(obj), obj);
3114 if (hp || discard) {
3116 rc = osc_cache_wait_range(env, obj, start, end);
3117 if (result >= 0 && rc < 0)
3121 OSC_IO_DEBUG(obj, "pageout [%lu, %lu], %d.\n", start, end, result);
3124 EXPORT_SYMBOL(osc_cache_writeback_range);
3127 * Returns a list of pages by a given [start, end] of \a obj.
3129 * \param resched If not NULL, then we give up before hogging CPU for too
3130 * long and set *resched = 1, in that case caller should implement a retry
3133 * Gang tree lookup (radix_tree_gang_lookup()) optimization is absolutely
3134 * crucial in the face of [offset, EOF] locks.
3136 * Return at least one page in @queue unless there is no covered page.
3138 int osc_page_gang_lookup(const struct lu_env *env, struct cl_io *io,
3139 struct osc_object *osc, pgoff_t start, pgoff_t end,
3140 osc_page_gang_cbt cb, void *cbdata)
3142 struct osc_page *ops;
3143 struct pagevec *pagevec;
3149 int res = CLP_GANG_OKAY;
3150 bool tree_lock = true;
3154 pvec = osc_env_info(env)->oti_pvec;
3155 pagevec = &osc_env_info(env)->oti_pagevec;
3156 ll_pagevec_init(pagevec, 0);
3157 spin_lock(&osc->oo_tree_lock);
3158 while ((nr = radix_tree_gang_lookup(&osc->oo_tree, pvec,
3159 idx, OTI_PVEC_SIZE)) > 0) {
3160 struct cl_page *page;
3161 bool end_of_region = false;
3163 for (i = 0, j = 0; i < nr; ++i) {
3167 idx = osc_index(ops);
3169 end_of_region = true;
3173 page = ops->ops_cl.cpl_page;
3174 LASSERT(page->cp_type == CPT_CACHEABLE);
3175 if (page->cp_state == CPS_FREEING)
3179 lu_ref_add_atomic(&page->cp_reference,
3180 "gang_lookup", current);
3186 * Here a delicate locking dance is performed. Current thread
3187 * holds a reference to a page, but has to own it before it
3188 * can be placed into queue. Owning implies waiting, so
3189 * radix-tree lock is to be released. After a wait one has to
3190 * check that pages weren't truncated (cl_page_own() returns
3191 * error in the latter case).
3193 spin_unlock(&osc->oo_tree_lock);
3196 for (i = 0; i < j; ++i) {
3198 if (res == CLP_GANG_OKAY)
3199 res = (*cb)(env, io, ops, cbdata);
3201 page = ops->ops_cl.cpl_page;
3202 lu_ref_del(&page->cp_reference, "gang_lookup", current);
3203 cl_pagevec_put(env, page, pagevec);
3205 pagevec_release(pagevec);
3207 if (nr < OTI_PVEC_SIZE || end_of_region)
3210 if (res == CLP_GANG_OKAY && need_resched())
3211 res = CLP_GANG_RESCHED;
3212 if (res != CLP_GANG_OKAY)
3215 spin_lock(&osc->oo_tree_lock);
3219 spin_unlock(&osc->oo_tree_lock);
3222 EXPORT_SYMBOL(osc_page_gang_lookup);
3225 * Check if page @page is covered by an extra lock or discard it.
3227 static int check_and_discard_cb(const struct lu_env *env, struct cl_io *io,
3228 struct osc_page *ops, void *cbdata)
3230 struct osc_thread_info *info = osc_env_info(env);
3231 struct osc_object *osc = cbdata;
3234 index = osc_index(ops);
3235 if (index >= info->oti_fn_index) {
3236 struct ldlm_lock *tmp;
3237 struct cl_page *page = ops->ops_cl.cpl_page;
3239 /* refresh non-overlapped index */
3240 tmp = osc_dlmlock_at_pgoff(env, osc, index,
3241 OSC_DAP_FL_TEST_LOCK);
3243 __u64 end = tmp->l_policy_data.l_extent.end;
3244 /* Cache the first-non-overlapped index so as to skip
3245 * all pages within [index, oti_fn_index). This is safe
3246 * because if tmp lock is canceled, it will discard
3248 info->oti_fn_index = cl_index(osc2cl(osc), end + 1);
3249 if (end == OBD_OBJECT_EOF)
3250 info->oti_fn_index = CL_PAGE_EOF;
3252 } else if (cl_page_own(env, io, page) == 0) {
3253 /* discard the page */
3254 cl_page_discard(env, io, page);
3255 cl_page_disown(env, io, page);
3257 LASSERT(page->cp_state == CPS_FREEING);
3261 info->oti_next_index = index + 1;
3262 return CLP_GANG_OKAY;
3265 int osc_discard_cb(const struct lu_env *env, struct cl_io *io,
3266 struct osc_page *ops, void *cbdata)
3268 struct osc_thread_info *info = osc_env_info(env);
3269 struct cl_page *page = ops->ops_cl.cpl_page;
3271 /* page is top page. */
3272 info->oti_next_index = osc_index(ops) + 1;
3273 if (cl_page_own(env, io, page) == 0) {
3274 if (!ergo(page->cp_type == CPT_CACHEABLE,
3275 !PageDirty(cl_page_vmpage(page))))
3276 CL_PAGE_DEBUG(D_ERROR, env, page,
3277 "discard dirty page?\n");
3279 /* discard the page */
3280 cl_page_discard(env, io, page);
3281 cl_page_disown(env, io, page);
3283 LASSERT(page->cp_state == CPS_FREEING);
3286 return CLP_GANG_OKAY;
3288 EXPORT_SYMBOL(osc_discard_cb);
3291 * Discard pages protected by the given lock. This function traverses radix
3292 * tree to find all covering pages and discard them. If a page is being covered
3293 * by other locks, it should remain in cache.
3295 * If error happens on any step, the process continues anyway (the reasoning
3296 * behind this being that lock cancellation cannot be delayed indefinitely).
3298 int osc_lock_discard_pages(const struct lu_env *env, struct osc_object *osc,
3299 pgoff_t start, pgoff_t end, bool discard)
3301 struct osc_thread_info *info = osc_env_info(env);
3302 struct cl_io *io = osc_env_thread_io(env);
3303 osc_page_gang_cbt cb;
3309 io->ci_obj = cl_object_top(osc2cl(osc));
3310 io->ci_ignore_layout = 1;
3311 result = cl_io_init(env, io, CIT_MISC, io->ci_obj);
3315 cb = discard ? osc_discard_cb : check_and_discard_cb;
3316 info->oti_fn_index = info->oti_next_index = start;
3318 res = osc_page_gang_lookup(env, io, osc,
3319 info->oti_next_index, end, cb, osc);
3320 if (info->oti_next_index > end)
3323 if (res == CLP_GANG_RESCHED)
3325 } while (res != CLP_GANG_OKAY);
3327 cl_io_fini(env, io);