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