Whamcloud - gitweb
LU-15619 osc: Remove oap lock
[fs/lustre-release.git] / lustre / osc / osc_page.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  *
31  * Implementation of cl_page for OSC layer.
32  *
33  *   Author: Nikita Danilov <nikita.danilov@sun.com>
34  *   Author: Jinshan Xiong <jinshan.xiong@intel.com>
35  */
36
37 #define DEBUG_SUBSYSTEM S_OSC
38 #include <lustre_osc.h>
39
40 #include "osc_internal.h"
41
42 static void osc_lru_del(struct client_obd *cli, struct osc_page *opg);
43 static void osc_lru_use(struct client_obd *cli, struct osc_page *opg);
44 static int osc_lru_alloc(const struct lu_env *env, struct client_obd *cli,
45                          struct osc_page *opg);
46
47 /** \addtogroup osc
48  *  @{
49  */
50
51 /*
52  * Page operations.
53  */
54 static void osc_page_transfer_get(struct osc_page *opg, const char *label)
55 {
56         struct cl_page *page = opg->ops_cl.cpl_page;
57
58         LASSERT(!opg->ops_transfer_pinned);
59         cl_page_get(page);
60         lu_ref_add_atomic(&page->cp_reference, label, page);
61         opg->ops_transfer_pinned = 1;
62 }
63
64 static void osc_page_transfer_put(const struct lu_env *env,
65                                   struct osc_page *opg)
66 {
67         struct cl_page *page = opg->ops_cl.cpl_page;
68
69         if (opg->ops_transfer_pinned) {
70                 opg->ops_transfer_pinned = 0;
71                 lu_ref_del(&page->cp_reference, "transfer", page);
72                 cl_page_put(env, page);
73         }
74 }
75
76 /**
77  * This is called once for every page when it is submitted for a transfer
78  * either opportunistic (osc_page_cache_add()), or immediate
79  * (osc_page_submit()).
80  */
81 static void osc_page_transfer_add(const struct lu_env *env,
82                                   struct osc_page *opg, enum cl_req_type crt)
83 {
84         struct osc_object *obj = osc_page_object(opg);
85
86         osc_lru_use(osc_cli(obj), opg);
87 }
88
89 int osc_page_cache_add(const struct lu_env *env, struct osc_page *opg,
90                        struct cl_io *io, cl_commit_cbt cb)
91 {
92         int result;
93         ENTRY;
94
95         osc_page_transfer_get(opg, "transfer\0cache");
96         result = osc_queue_async_io(env, io, opg, cb);
97         if (result != 0)
98                 osc_page_transfer_put(env, opg);
99         else
100                 osc_page_transfer_add(env, opg, CRT_WRITE);
101
102         RETURN(result);
103 }
104
105 void osc_index2policy(union ldlm_policy_data *policy,
106                       const struct cl_object *obj, pgoff_t start, pgoff_t end)
107 {
108         memset(policy, 0, sizeof *policy);
109         policy->l_extent.start = cl_offset(obj, start);
110         policy->l_extent.end   = cl_offset(obj, end + 1) - 1;
111 }
112
113 static int osc_page_print(const struct lu_env *env,
114                           const struct cl_page_slice *slice,
115                           void *cookie, lu_printer_t printer)
116 {
117         struct osc_page *opg = cl2osc_page(slice);
118         struct osc_async_page *oap = &opg->ops_oap;
119         struct osc_object *obj = osc_page_object(opg);
120         struct client_obd *cli = &osc_export(obj)->exp_obd->u.cli;
121
122         return (*printer)(env, cookie, LUSTRE_OSC_NAME"-page@%p %lu: "
123                           "1< %d %c %c > "
124                           "2< %lld %u %u %#x %#x | %p %p %p > "
125                           "3< %d %d > "
126                           "4< %d %d %d %lu %c | %c %c %c %c > "
127                           "5< %c %c %c %c | %d %c | %d %c %c>\n",
128                           opg, osc_index(opg),
129                           /* 1 */
130                           oap->oap_cmd,
131                           list_empty_marker(&oap->oap_pending_item),
132                           list_empty_marker(&oap->oap_rpc_item),
133                           /* 2 */
134                           oap->oap_obj_off, oap->oap_page_off, oap->oap_count,
135                           oap->oap_async_flags, oap->oap_brw_flags,
136                           oap->oap_request, cli, obj,
137                           /* 3 */
138                           opg->ops_transfer_pinned,
139                           opg->ops_srvlock,
140                           /* 4 */
141                           cli->cl_r_in_flight, cli->cl_w_in_flight,
142                           cli->cl_max_rpcs_in_flight,
143                           cli->cl_avail_grant,
144                           waitqueue_active(&cli->cl_cache_waiters) ? '+' : '-',
145                           list_empty_marker(&cli->cl_loi_ready_list),
146                           list_empty_marker(&cli->cl_loi_hp_ready_list),
147                           list_empty_marker(&cli->cl_loi_write_list),
148                           list_empty_marker(&cli->cl_loi_read_list),
149                           /* 5 */
150                           list_empty_marker(&obj->oo_ready_item),
151                           list_empty_marker(&obj->oo_hp_ready_item),
152                           list_empty_marker(&obj->oo_write_item),
153                           list_empty_marker(&obj->oo_read_item),
154                           atomic_read(&obj->oo_nr_reads),
155                           list_empty_marker(&obj->oo_reading_exts),
156                           atomic_read(&obj->oo_nr_writes),
157                           list_empty_marker(&obj->oo_hp_exts),
158                           list_empty_marker(&obj->oo_urgent_exts));
159 }
160
161 static void osc_page_delete(const struct lu_env *env,
162                             const struct cl_page_slice *slice)
163 {
164         struct osc_page   *opg = cl2osc_page(slice);
165         struct osc_object *obj = osc_page_object(opg);
166         int rc;
167
168         ENTRY;
169         CDEBUG(D_TRACE, "%p\n", opg);
170         osc_page_transfer_put(env, opg);
171         rc = osc_teardown_async_page(env, obj, opg);
172         if (rc) {
173                 CL_PAGE_DEBUG(D_ERROR, env, slice->cpl_page,
174                               "Trying to teardown failed: %d\n", rc);
175                 LASSERT(0);
176         }
177
178         osc_lru_del(osc_cli(obj), opg);
179
180         if (slice->cpl_page->cp_type == CPT_CACHEABLE) {
181                 void *value = NULL;
182
183                 spin_lock(&obj->oo_tree_lock);
184                 if (opg->ops_intree) {
185                         value = radix_tree_delete(&obj->oo_tree,
186                                                   osc_index(opg));
187                         if (value != NULL) {
188                                 --obj->oo_npages;
189                                 opg->ops_intree = 0;
190                         }
191                 }
192                 spin_unlock(&obj->oo_tree_lock);
193
194                 LASSERT(ergo(value != NULL, value == opg));
195         }
196
197         EXIT;
198 }
199
200 static void osc_page_clip(const struct lu_env *env,
201                           const struct cl_page_slice *slice,
202                           int from, int to)
203 {
204         struct osc_page       *opg = cl2osc_page(slice);
205         struct osc_async_page *oap = &opg->ops_oap;
206
207         opg->ops_from = from;
208         /* argument @to is exclusive, but @ops_to is inclusive */
209         opg->ops_to   = to - 1;
210         oap->oap_async_flags |= ASYNC_COUNT_STABLE;
211 }
212
213 static int osc_page_flush(const struct lu_env *env,
214                           const struct cl_page_slice *slice,
215                           struct cl_io *io)
216 {
217         struct osc_page *opg = cl2osc_page(slice);
218         int rc = 0;
219         ENTRY;
220         rc = osc_flush_async_page(env, io, opg);
221         RETURN(rc);
222 }
223
224 static void osc_page_touch(const struct lu_env *env,
225                           const struct cl_page_slice *slice, size_t to)
226 {
227         struct osc_page *opg = cl2osc_page(slice);
228         struct cl_object *obj = osc2cl(osc_page_object(opg));
229
230         osc_page_touch_at(env, obj, osc_index(opg), to);
231 }
232
233 static const struct cl_page_operations osc_page_ops = {
234         .cpo_print         = osc_page_print,
235         .cpo_delete        = osc_page_delete,
236         .cpo_clip           = osc_page_clip,
237         .cpo_flush          = osc_page_flush,
238         .cpo_page_touch    = osc_page_touch,
239 };
240
241 int osc_page_init(const struct lu_env *env, struct cl_object *obj,
242                   struct cl_page *cl_page, pgoff_t index)
243 {
244         struct osc_object *osc = cl2osc(obj);
245         struct osc_page *opg = cl_object_page_slice(obj, cl_page);
246         struct osc_io *oio = osc_env_io(env);
247         int result;
248
249         opg->ops_from = 0;
250         opg->ops_to = PAGE_SIZE - 1;
251
252         INIT_LIST_HEAD(&opg->ops_lru);
253
254         result = osc_prep_async_page(osc, opg, cl_page, cl_offset(obj, index));
255         if (result != 0)
256                 return result;
257
258         opg->ops_srvlock = osc_io_srvlock(oio);
259         cl_page_slice_add(cl_page, &opg->ops_cl, obj, &osc_page_ops);
260
261         /* reserve an LRU space for this page */
262         if (cl_page->cp_type == CPT_CACHEABLE) {
263                 result = osc_lru_alloc(env, osc_cli(osc), opg);
264                 if (result == 0) {
265                         result = radix_tree_preload(GFP_NOFS);
266                         if (result == 0) {
267                                 spin_lock(&osc->oo_tree_lock);
268                                 result = radix_tree_insert(&osc->oo_tree,
269                                                            index, opg);
270                                 if (result == 0) {
271                                         ++osc->oo_npages;
272                                         opg->ops_intree = 1;
273                                 }
274                                 spin_unlock(&osc->oo_tree_lock);
275
276                                 radix_tree_preload_end();
277                         }
278                 }
279         }
280
281         return result;
282 }
283 EXPORT_SYMBOL(osc_page_init);
284
285 /**
286  * Helper function called by osc_io_submit() for every page in an immediate
287  * transfer (i.e., transferred synchronously).
288  */
289 void osc_page_submit(const struct lu_env *env, struct osc_page *opg,
290                      enum cl_req_type crt, int brw_flags)
291 {
292         struct osc_io *oio = osc_env_io(env);
293         struct osc_async_page *oap = &opg->ops_oap;
294
295         LASSERT(oap->oap_async_flags & ASYNC_READY);
296         LASSERT(oap->oap_async_flags & ASYNC_COUNT_STABLE);
297
298         oap->oap_cmd = crt == CRT_WRITE ? OBD_BRW_WRITE : OBD_BRW_READ;
299         oap->oap_page_off = opg->ops_from;
300         oap->oap_count = opg->ops_to - opg->ops_from + 1;
301         oap->oap_brw_flags = OBD_BRW_SYNC | brw_flags;
302
303         if (oio->oi_cap_sys_resource) {
304                 oap->oap_brw_flags |= OBD_BRW_SYS_RESOURCE;
305                 oap->oap_cmd |= OBD_BRW_SYS_RESOURCE;
306         }
307
308         osc_page_transfer_get(opg, "transfer\0imm");
309         osc_page_transfer_add(env, opg, crt);
310 }
311
312 /* --------------- LRU page management ------------------ */
313
314 /* OSC is a natural place to manage LRU pages as applications are specialized
315  * to write OSC by OSC. Ideally, if one OSC is used more frequently it should
316  * occupy more LRU slots. On the other hand, we should avoid using up all LRU
317  * slots (client_obd::cl_lru_left) otherwise process has to be put into sleep
318  * for free LRU slots - this will be very bad so the algorithm requires each
319  * OSC to free slots voluntarily to maintain a reasonable number of free slots
320  * at any time.
321  */
322
323 static DECLARE_WAIT_QUEUE_HEAD(osc_lru_waitq);
324
325 /**
326  * LRU pages are freed in batch mode. OSC should at least free this
327  * number of pages to avoid running out of LRU slots.
328  */
329 static inline int lru_shrink_min(struct client_obd *cli)
330 {
331         return cli->cl_max_pages_per_rpc * 2;
332 }
333
334 /**
335  * free this number at most otherwise it will take too long time to finsih.
336  */
337 static inline int lru_shrink_max(struct client_obd *cli)
338 {
339         return cli->cl_max_pages_per_rpc * cli->cl_max_rpcs_in_flight;
340 }
341
342 /**
343  * Check if we can free LRU slots from this OSC. If there exists LRU waiters,
344  * we should free slots aggressively. In this way, slots are freed in a steady
345  * step to maintain fairness among OSCs.
346  *
347  * Return how many LRU pages should be freed.
348  */
349 static int osc_cache_too_much(struct client_obd *cli)
350 {
351         struct cl_client_cache *cache = cli->cl_cache;
352         long pages = atomic_long_read(&cli->cl_lru_in_list);
353         unsigned long budget;
354
355         LASSERT(cache != NULL);
356         budget = cache->ccc_lru_max / (refcount_read(&cache->ccc_users) - 2);
357
358         /* if it's going to run out LRU slots, we should free some, but not
359          * too much to maintain faireness among OSCs. */
360         if (atomic_long_read(cli->cl_lru_left) < cache->ccc_lru_max >> 2) {
361                 if (pages >= budget)
362                         return lru_shrink_max(cli);
363                 else if (pages >= budget / 2)
364                         return lru_shrink_min(cli);
365         } else {
366                 time64_t duration = ktime_get_real_seconds();
367                 long timediff;
368
369                 /* knock out pages by duration of no IO activity */
370                 duration -= cli->cl_lru_last_used;
371                 /*
372                  * The difference shouldn't be more than 70 years
373                  * so we can safely case to a long. Round to
374                  * approximately 1 minute.
375                  */
376                 timediff = (long)(duration >> 6);
377                 if (timediff > 0 && pages >= budget / timediff)
378                         return lru_shrink_min(cli);
379         }
380         return 0;
381 }
382
383 int lru_queue_work(const struct lu_env *env, void *data)
384 {
385         struct client_obd *cli = data;
386         int count;
387
388         CDEBUG(D_CACHE, "%s: run LRU work for client obd\n", cli_name(cli));
389         count = osc_cache_too_much(cli);
390         if (count > 0) {
391                 int rc = osc_lru_shrink(env, cli, count, false);
392
393                 CDEBUG(D_CACHE, "%s: shrank %d/%d pages from client obd\n",
394                        cli_name(cli), rc, count);
395                 if (rc >= count) {
396                         CDEBUG(D_CACHE, "%s: queue again\n", cli_name(cli));
397                         ptlrpcd_queue_work(cli->cl_lru_work);
398                 }
399         }
400
401         RETURN(0);
402 }
403
404 void osc_lru_add_batch(struct client_obd *cli, struct list_head *plist)
405 {
406         LIST_HEAD(lru);
407         struct osc_async_page *oap;
408         long npages = 0;
409
410         list_for_each_entry(oap, plist, oap_pending_item) {
411                 struct osc_page *opg = oap2osc_page(oap);
412
413                 if (!opg->ops_in_lru)
414                         continue;
415
416                 ++npages;
417                 LASSERT(list_empty(&opg->ops_lru));
418                 list_add(&opg->ops_lru, &lru);
419         }
420
421         if (npages > 0) {
422                 spin_lock(&cli->cl_lru_list_lock);
423                 list_splice_tail(&lru, &cli->cl_lru_list);
424                 atomic_long_sub(npages, &cli->cl_lru_busy);
425                 atomic_long_add(npages, &cli->cl_lru_in_list);
426                 cli->cl_lru_last_used = ktime_get_real_seconds();
427                 spin_unlock(&cli->cl_lru_list_lock);
428
429                 if (waitqueue_active(&osc_lru_waitq))
430                         (void)ptlrpcd_queue_work(cli->cl_lru_work);
431         }
432 }
433
434 static void __osc_lru_del(struct client_obd *cli, struct osc_page *opg)
435 {
436         LASSERT(atomic_long_read(&cli->cl_lru_in_list) > 0);
437         list_del_init(&opg->ops_lru);
438         atomic_long_dec(&cli->cl_lru_in_list);
439 }
440
441 /**
442  * Page is being destroyed. The page may be not in LRU list, if the transfer
443  * has never finished(error occurred).
444  */
445 static void osc_lru_del(struct client_obd *cli, struct osc_page *opg)
446 {
447         if (opg->ops_in_lru) {
448                 spin_lock(&cli->cl_lru_list_lock);
449                 if (!list_empty(&opg->ops_lru)) {
450                         __osc_lru_del(cli, opg);
451                 } else {
452                         LASSERT(atomic_long_read(&cli->cl_lru_busy) > 0);
453                         atomic_long_dec(&cli->cl_lru_busy);
454                 }
455                 spin_unlock(&cli->cl_lru_list_lock);
456
457                 atomic_long_inc(cli->cl_lru_left);
458                 /* this is a great place to release more LRU pages if
459                  * this osc occupies too many LRU pages and kernel is
460                  * stealing one of them. */
461                 if (osc_cache_too_much(cli)) {
462                         CDEBUG(D_CACHE, "%s: queue LRU work\n", cli_name(cli));
463                         (void)ptlrpcd_queue_work(cli->cl_lru_work);
464                 }
465                 wake_up(&osc_lru_waitq);
466         } else {
467                 LASSERT(list_empty(&opg->ops_lru));
468         }
469 }
470
471 /**
472  * Delete page from LRU list for redirty.
473  */
474 static void osc_lru_use(struct client_obd *cli, struct osc_page *opg)
475 {
476         /* If page is being transferred for the first time,
477          * ops_lru should be empty */
478         if (opg->ops_in_lru) {
479                 if (list_empty(&opg->ops_lru))
480                         return;
481                 spin_lock(&cli->cl_lru_list_lock);
482                 if (!list_empty(&opg->ops_lru)) {
483                         __osc_lru_del(cli, opg);
484                         atomic_long_inc(&cli->cl_lru_busy);
485                 }
486                 spin_unlock(&cli->cl_lru_list_lock);
487         }
488 }
489
490 static void discard_pagevec(const struct lu_env *env, struct cl_io *io,
491                                 struct cl_page **pvec, int max_index)
492 {
493         struct pagevec *pagevec = &osc_env_info(env)->oti_pagevec;
494         int i;
495
496         ll_pagevec_init(pagevec, 0);
497         for (i = 0; i < max_index; i++) {
498                 struct cl_page *page = pvec[i];
499
500                 LASSERT(cl_page_is_owned(page, io));
501                 cl_page_delete(env, page);
502                 cl_page_discard(env, io, page);
503                 cl_page_disown(env, io, page);
504                 cl_pagevec_put(env, page, pagevec);
505
506                 pvec[i] = NULL;
507         }
508         pagevec_release(pagevec);
509 }
510
511 /**
512  * Check if a cl_page can be released, i.e, it's not being used.
513  *
514  * If unstable account is turned on, bulk transfer may hold one refcount
515  * for recovery so we need to check vmpage refcount as well; otherwise,
516  * even we can destroy cl_page but the corresponding vmpage can't be reused.
517  */
518 static inline bool lru_page_busy(struct client_obd *cli, struct cl_page *page)
519 {
520         if (cl_page_in_use_noref(page))
521                 return true;
522
523         if (cli->cl_cache->ccc_unstable_check) {
524                 struct page *vmpage = cl_page_vmpage(page);
525
526                 /* this check is racy because the vmpage is not locked, but
527                  * that's OK - the code which does the actual page release
528                  * checks this again before releasing
529                  *
530                  * vmpage have two known users: cl_page and VM page cache
531                  */
532                 if (vmpage_in_use(vmpage, 0))
533                         return true;
534         }
535         return false;
536 }
537
538 /**
539  * Drop @target of pages from LRU at most.
540  */
541 long osc_lru_shrink(const struct lu_env *env, struct client_obd *cli,
542                    long target, bool force)
543 {
544         struct cl_io *io;
545         struct cl_object *clobj = NULL;
546         struct cl_page **pvec;
547         struct osc_page *opg;
548         long count = 0;
549         int maxscan = 0;
550         int index = 0;
551         int rc = 0;
552         ENTRY;
553
554         LASSERT(atomic_long_read(&cli->cl_lru_in_list) >= 0);
555         if (atomic_long_read(&cli->cl_lru_in_list) == 0 || target <= 0)
556                 RETURN(0);
557
558         CDEBUG(D_CACHE, "%s: shrinkers: %d, force: %d\n",
559                cli_name(cli), atomic_read(&cli->cl_lru_shrinkers), force);
560         if (!force) {
561                 if (atomic_read(&cli->cl_lru_shrinkers) > 0)
562                         RETURN(-EBUSY);
563
564                 if (atomic_inc_return(&cli->cl_lru_shrinkers) > 1) {
565                         atomic_dec(&cli->cl_lru_shrinkers);
566                         RETURN(-EBUSY);
567                 }
568         } else {
569                 atomic_inc(&cli->cl_lru_shrinkers);
570         }
571
572         pvec = (struct cl_page **)osc_env_info(env)->oti_pvec;
573         io = osc_env_thread_io(env);
574
575         spin_lock(&cli->cl_lru_list_lock);
576         if (force)
577                 cli->cl_lru_reclaim++;
578         maxscan = min(target << 1, atomic_long_read(&cli->cl_lru_in_list));
579         while (!list_empty(&cli->cl_lru_list)) {
580                 struct cl_page *page;
581                 bool will_free = false;
582
583                 if (!force && atomic_read(&cli->cl_lru_shrinkers) > 1)
584                         break;
585
586                 if (--maxscan < 0)
587                         break;
588
589                 opg = list_first_entry(&cli->cl_lru_list, struct osc_page,
590                                        ops_lru);
591                 page = opg->ops_cl.cpl_page;
592                 if (lru_page_busy(cli, page)) {
593                         list_move_tail(&opg->ops_lru, &cli->cl_lru_list);
594                         continue;
595                 }
596
597                 LASSERT(page->cp_obj != NULL);
598                 if (clobj != page->cp_obj) {
599                         struct cl_object *tmp = page->cp_obj;
600
601                         cl_object_get(tmp);
602                         spin_unlock(&cli->cl_lru_list_lock);
603
604                         if (clobj != NULL) {
605                                 discard_pagevec(env, io, pvec, index);
606                                 index = 0;
607
608                                 cl_io_fini(env, io);
609                                 cl_object_put(env, clobj);
610                                 clobj = NULL;
611                         }
612
613                         clobj = tmp;
614                         io->ci_obj = clobj;
615                         io->ci_ignore_layout = 1;
616                         rc = cl_io_init(env, io, CIT_MISC, clobj);
617
618                         spin_lock(&cli->cl_lru_list_lock);
619
620                         if (rc != 0)
621                                 break;
622
623                         ++maxscan;
624                         continue;
625                 }
626
627                 if (cl_page_own_try(env, io, page) == 0) {
628                         if (!lru_page_busy(cli, page)) {
629                                 /* remove it from lru list earlier to avoid
630                                  * lock contention */
631                                 __osc_lru_del(cli, opg);
632                                 opg->ops_in_lru = 0; /* will be discarded */
633
634                                 cl_page_get(page);
635                                 will_free = true;
636                         } else {
637                                 cl_page_disown(env, io, page);
638                         }
639                 }
640
641                 if (!will_free) {
642                         list_move_tail(&opg->ops_lru, &cli->cl_lru_list);
643                         continue;
644                 }
645
646                 /* Don't discard and free the page with cl_lru_list held */
647                 pvec[index++] = page;
648                 if (unlikely(index == OTI_PVEC_SIZE)) {
649                         spin_unlock(&cli->cl_lru_list_lock);
650                         discard_pagevec(env, io, pvec, index);
651                         index = 0;
652
653                         spin_lock(&cli->cl_lru_list_lock);
654                 }
655
656                 if (++count >= target)
657                         break;
658         }
659         spin_unlock(&cli->cl_lru_list_lock);
660
661         if (clobj != NULL) {
662                 discard_pagevec(env, io, pvec, index);
663
664                 cl_io_fini(env, io);
665                 cl_object_put(env, clobj);
666         }
667
668         atomic_dec(&cli->cl_lru_shrinkers);
669         if (count > 0) {
670                 atomic_long_add(count, cli->cl_lru_left);
671                 wake_up(&osc_lru_waitq);
672         }
673         RETURN(count > 0 ? count : rc);
674 }
675 EXPORT_SYMBOL(osc_lru_shrink);
676
677 /**
678  * Reclaim LRU pages by an IO thread. The caller wants to reclaim at least
679  * \@npages of LRU slots. For performance consideration, it's better to drop
680  * LRU pages in batch. Therefore, the actual number is adjusted at least
681  * max_pages_per_rpc.
682  */
683 static long osc_lru_reclaim(struct client_obd *cli, unsigned long npages)
684 {
685         struct lu_env *env;
686         struct cl_client_cache *cache = cli->cl_cache;
687         struct client_obd *scan;
688         int max_scans;
689         __u16 refcheck;
690         long rc = 0;
691         ENTRY;
692
693         LASSERT(cache != NULL);
694
695         env = cl_env_get(&refcheck);
696         if (IS_ERR(env))
697                 RETURN(rc);
698
699         npages = max_t(int, npages, cli->cl_max_pages_per_rpc);
700         CDEBUG(D_CACHE, "%s: start to reclaim %ld pages from LRU\n",
701                cli_name(cli), npages);
702         rc = osc_lru_shrink(env, cli, npages, true);
703         if (rc >= npages) {
704                 CDEBUG(D_CACHE, "%s: reclaimed %ld/%ld pages from LRU\n",
705                        cli_name(cli), rc, npages);
706                 if (osc_cache_too_much(cli) > 0)
707                         ptlrpcd_queue_work(cli->cl_lru_work);
708                 GOTO(out, rc);
709         } else if (rc > 0) {
710                 npages -= rc;
711         }
712
713         CDEBUG(D_CACHE, "%s: cli %p no free slots, pages: %ld/%ld, want: %ld\n",
714                 cli_name(cli), cli, atomic_long_read(&cli->cl_lru_in_list),
715                 atomic_long_read(&cli->cl_lru_busy), npages);
716
717         /* Reclaim LRU slots from other client_obd as it can't free enough
718          * from its own. This should rarely happen. */
719         spin_lock(&cache->ccc_lru_lock);
720         LASSERT(!list_empty(&cache->ccc_lru));
721
722         cache->ccc_lru_shrinkers++;
723         list_move_tail(&cli->cl_lru_osc, &cache->ccc_lru);
724
725         max_scans = refcount_read(&cache->ccc_users) - 2;
726         while (--max_scans > 0 &&
727                (scan = list_first_entry_or_null(&cache->ccc_lru,
728                                                   struct client_obd,
729                                                   cl_lru_osc)) != NULL) {
730                 CDEBUG(D_CACHE, "%s: cli %p LRU pages: %ld, busy: %ld.\n",
731                        cli_name(scan), scan,
732                        atomic_long_read(&scan->cl_lru_in_list),
733                        atomic_long_read(&scan->cl_lru_busy));
734
735                 list_move_tail(&scan->cl_lru_osc, &cache->ccc_lru);
736                 if (osc_cache_too_much(scan) > 0) {
737                         spin_unlock(&cache->ccc_lru_lock);
738
739                         rc = osc_lru_shrink(env, scan, npages, true);
740                         spin_lock(&cache->ccc_lru_lock);
741                         if (rc >= npages)
742                                 break;
743                         if (rc > 0)
744                                 npages -= rc;
745                 }
746         }
747         spin_unlock(&cache->ccc_lru_lock);
748
749 out:
750         cl_env_put(env, &refcheck);
751         CDEBUG(D_CACHE, "%s: cli %p freed %ld pages.\n",
752                cli_name(cli), cli, rc);
753         return rc;
754 }
755
756 /**
757  * osc_lru_alloc() is called to allocate an LRU slot for a cl_page.
758  *
759  * Usually the LRU slots are reserved in osc_io_iter_rw_init().
760  * Only in the case that the LRU slots are in extreme shortage, it should
761  * have reserved enough slots for an IO.
762  */
763 static int osc_lru_alloc(const struct lu_env *env, struct client_obd *cli,
764                          struct osc_page *opg)
765 {
766         struct osc_io *oio = osc_env_io(env);
767         int rc = 0;
768
769         ENTRY;
770
771         if (cli->cl_cache == NULL) /* shall not be in LRU */
772                 RETURN(0);
773
774         if (oio->oi_lru_reserved > 0) {
775                 --oio->oi_lru_reserved;
776                 goto out;
777         }
778
779         LASSERT(atomic_long_read(cli->cl_lru_left) >= 0);
780         while (!atomic_long_add_unless(cli->cl_lru_left, -1, 0)) {
781                 /* run out of LRU spaces, try to drop some by itself */
782                 rc = osc_lru_reclaim(cli, 1);
783                 if (rc < 0)
784                         break;
785                 if (rc > 0)
786                         continue;
787                 /* IO issued by readahead, don't try hard */
788                 if (oio->oi_is_readahead) {
789                         if (atomic_long_read(cli->cl_lru_left) > 0)
790                                 continue;
791                         rc = -EBUSY;
792                         break;
793                 }
794
795                 cond_resched();
796                 rc = l_wait_event_abortable(
797                         osc_lru_waitq,
798                         atomic_long_read(cli->cl_lru_left) > 0);
799                 if (rc < 0) {
800                         rc = -EINTR;
801                         break;
802                 }
803         }
804
805 out:
806         if (rc >= 0) {
807                 atomic_long_inc(&cli->cl_lru_busy);
808                 opg->ops_in_lru = 1;
809                 rc = 0;
810         }
811
812         RETURN(rc);
813 }
814
815 /**
816  * osc_lru_reserve() is called to reserve enough LRU slots for I/O.
817  *
818  * The benefit of doing this is to reduce contention against atomic counter
819  * cl_lru_left by changing it from per-page access to per-IO access.
820  */
821 unsigned long osc_lru_reserve(struct client_obd *cli, unsigned long npages)
822 {
823         unsigned long reserved = 0;
824         unsigned long max_pages;
825         unsigned long c;
826         int rc;
827
828 again:
829         c = atomic_long_read(cli->cl_lru_left);
830         if (c < npages && osc_lru_reclaim(cli, npages) > 0)
831                 c = atomic_long_read(cli->cl_lru_left);
832
833         if (c < npages) {
834                 /*
835                  * Trigger writeback in the hope some LRU slot could
836                  * be freed.
837                  */
838                 rc = ptlrpcd_queue_work(cli->cl_writeback_work);
839                 if (rc)
840                         return 0;
841         }
842
843         while (c >= npages) {
844                 if (c == atomic_long_cmpxchg(cli->cl_lru_left, c, c - npages)) {
845                         reserved = npages;
846                         break;
847                 }
848                 c = atomic_long_read(cli->cl_lru_left);
849         }
850
851         if (reserved != npages) {
852                 cond_resched();
853                 rc = l_wait_event_abortable(
854                         osc_lru_waitq,
855                         atomic_long_read(cli->cl_lru_left) > 0);
856                 goto again;
857         }
858
859         max_pages = cli->cl_max_pages_per_rpc * cli->cl_max_rpcs_in_flight;
860         if (atomic_long_read(cli->cl_lru_left) < max_pages) {
861                 /* If there aren't enough pages in the per-OSC LRU then
862                  * wake up the LRU thread to try and clear out space, so
863                  * we don't block if pages are being dirtied quickly. */
864                 CDEBUG(D_CACHE, "%s: queue LRU, left: %lu/%ld.\n",
865                        cli_name(cli), atomic_long_read(cli->cl_lru_left),
866                        max_pages);
867                 (void)ptlrpcd_queue_work(cli->cl_lru_work);
868         }
869
870         return reserved;
871 }
872
873 /**
874  * osc_lru_unreserve() is called to unreserve LRU slots.
875  *
876  * LRU slots reserved by osc_lru_reserve() may have entries left due to several
877  * reasons such as page already existing or I/O error. Those reserved slots
878  * should be freed by calling this function.
879  */
880 void osc_lru_unreserve(struct client_obd *cli, unsigned long npages)
881 {
882         atomic_long_add(npages, cli->cl_lru_left);
883         wake_up(&osc_lru_waitq);
884 }
885
886 /**
887  * Atomic operations are expensive. We accumulate the accounting for the
888  * same page zone to get better performance.
889  * In practice this can work pretty good because the pages in the same RPC
890  * are likely from the same page zone.
891  */
892 #ifdef HAVE_NR_UNSTABLE_NFS
893 /* Old kernels use a separate counter for unstable pages,
894  * newer kernels treat them like any other writeback.
895  */
896 #define NR_WRITEBACK NR_UNSTABLE_NFS
897 #endif
898
899 static inline void unstable_page_accounting(struct ptlrpc_bulk_desc *desc,
900                                             struct osc_brw_async_args *aa,
901                                             int factor)
902 {
903         int page_count;
904         void *zone = NULL;
905         int count = 0;
906         int i;
907
908         if (desc != NULL) {
909                 page_count = desc->bd_iov_count;
910         } else {
911                 page_count = aa->aa_page_count;
912         }
913
914         for (i = 0; i < page_count; i++) {
915                 void *pz;
916                 if (desc)
917                         pz = page_zone(desc->bd_vec[i].bv_page);
918                 else
919                         pz = page_zone(aa->aa_ppga[i]->pg);
920
921                 if (likely(pz == zone)) {
922                         ++count;
923                         continue;
924                 }
925
926                 if (count > 0) {
927                         mod_zone_page_state(zone, NR_WRITEBACK,
928                                             factor * count);
929                         count = 0;
930                 }
931                 zone = pz;
932                 ++count;
933         }
934         if (count > 0)
935                 mod_zone_page_state(zone, NR_WRITEBACK, factor * count);
936 }
937
938 static inline void add_unstable_page_accounting(struct ptlrpc_bulk_desc *desc,
939                                                 struct osc_brw_async_args *aa)
940 {
941         unstable_page_accounting(desc, aa, 1);
942 }
943
944 static inline void dec_unstable_page_accounting(struct ptlrpc_bulk_desc *desc,
945                                                 struct osc_brw_async_args *aa)
946 {
947         unstable_page_accounting(desc, aa, -1);
948 }
949
950 /**
951  * Performs "unstable" page accounting. This function balances the
952  * increment operations performed in osc_inc_unstable_pages. It is
953  * registered as the RPC request callback, and is executed when the
954  * bulk RPC is committed on the server. Thus at this point, the pages
955  * involved in the bulk transfer are no longer considered unstable.
956  *
957  * If this function is called, the request should have been committed
958  * or req:rq_unstable must have been set; it implies that the unstable
959  * statistic have been added.
960  */
961 void osc_dec_unstable_pages(struct ptlrpc_request *req)
962 {
963         struct ptlrpc_bulk_desc *desc       = req->rq_bulk;
964         struct osc_brw_async_args *aa = (void *)&req->rq_async_args;
965         struct client_obd       *cli        = &req->rq_import->imp_obd->u.cli;
966         int                      page_count;
967         long                     unstable_count;
968
969         if (desc)
970                 page_count = desc->bd_iov_count;
971         else
972                 page_count = aa->aa_page_count;
973
974         LASSERT(page_count >= 0);
975
976         dec_unstable_page_accounting(desc, aa);
977
978         unstable_count = atomic_long_sub_return(page_count,
979                                                 &cli->cl_unstable_count);
980         LASSERT(unstable_count >= 0);
981
982         unstable_count = atomic_long_sub_return(page_count,
983                                            &cli->cl_cache->ccc_unstable_nr);
984         LASSERT(unstable_count >= 0);
985         if (unstable_count == 0)
986                 wake_up(&cli->cl_cache->ccc_unstable_waitq);
987
988         if (waitqueue_active(&osc_lru_waitq))
989                 (void)ptlrpcd_queue_work(cli->cl_lru_work);
990 }
991
992 /**
993  * "unstable" page accounting. See: osc_dec_unstable_pages.
994  */
995 void osc_inc_unstable_pages(struct ptlrpc_request *req)
996 {
997         struct ptlrpc_bulk_desc *desc = req->rq_bulk;
998         struct osc_brw_async_args *aa = (void *)&req->rq_async_args;
999         struct client_obd       *cli  = &req->rq_import->imp_obd->u.cli;
1000         long                     page_count;
1001
1002         /* No unstable page tracking */
1003         if (cli->cl_cache == NULL || !cli->cl_cache->ccc_unstable_check)
1004                 return;
1005
1006         if (desc)
1007                 page_count = desc->bd_iov_count;
1008         else
1009                 page_count = aa->aa_page_count;
1010
1011         add_unstable_page_accounting(desc, aa);
1012         atomic_long_add(page_count, &cli->cl_unstable_count);
1013         atomic_long_add(page_count, &cli->cl_cache->ccc_unstable_nr);
1014
1015         /* If the request has already been committed (i.e. brw_commit
1016          * called via rq_commit_cb), we need to undo the unstable page
1017          * increments we just performed because rq_commit_cb wont be
1018          * called again. */
1019         spin_lock(&req->rq_lock);
1020         if (unlikely(req->rq_committed)) {
1021                 spin_unlock(&req->rq_lock);
1022
1023                 osc_dec_unstable_pages(req);
1024         } else {
1025                 req->rq_unstable = 1;
1026                 spin_unlock(&req->rq_lock);
1027         }
1028 }
1029
1030 /**
1031  * Check if it piggybacks SOFT_SYNC flag to OST from this OSC.
1032  * This function will be called by every BRW RPC so it's critical
1033  * to make this function fast.
1034  */
1035 bool osc_over_unstable_soft_limit(struct client_obd *cli)
1036 {
1037         long unstable_nr, osc_unstable_count;
1038
1039         /* Can't check cli->cl_unstable_count, therefore, no soft limit */
1040         if (cli->cl_cache == NULL || !cli->cl_cache->ccc_unstable_check)
1041                 return false;
1042
1043         osc_unstable_count = atomic_long_read(&cli->cl_unstable_count);
1044         unstable_nr = atomic_long_read(&cli->cl_cache->ccc_unstable_nr);
1045
1046         CDEBUG(D_CACHE,
1047                "%s: cli: %p unstable pages: %lu, osc unstable pages: %lu\n",
1048                cli_name(cli), cli, unstable_nr, osc_unstable_count);
1049
1050         /* If the LRU slots are in shortage - 25% remaining AND this OSC
1051          * has one full RPC window of unstable pages, it's a good chance
1052          * to piggyback a SOFT_SYNC flag.
1053          * Please notice that the OST won't take immediate response for the
1054          * SOFT_SYNC request so active OSCs will have more chance to carry
1055          * the flag, this is reasonable. */
1056         return unstable_nr > cli->cl_cache->ccc_lru_max >> 2 &&
1057                osc_unstable_count > cli->cl_max_pages_per_rpc *
1058                                     cli->cl_max_rpcs_in_flight;
1059 }
1060
1061 /**
1062  * Return how many LRU pages in the cache of all OSC devices
1063  *
1064  * \retval      return # of cached LRU pages times reclaimation tendency
1065  * \retval      SHRINK_STOP if it cannot do any scanning in this time
1066  */
1067 unsigned long osc_cache_shrink_count(struct shrinker *sk,
1068                                      struct shrink_control *sc)
1069 {
1070         struct client_obd *cli;
1071         unsigned long cached = 0;
1072
1073         spin_lock(&osc_shrink_lock);
1074         list_for_each_entry(cli, &osc_shrink_list, cl_shrink_list)
1075                 cached += atomic_long_read(&cli->cl_lru_in_list);
1076         spin_unlock(&osc_shrink_lock);
1077
1078         return (cached  * sysctl_vfs_cache_pressure) / 100;
1079 }
1080
1081 /**
1082  * Scan and try to reclaim sc->nr_to_scan cached LRU pages
1083  *
1084  * \retval      number of cached LRU pages reclaimed
1085  * \retval      SHRINK_STOP if it cannot do any scanning in this time
1086  *
1087  * Linux kernel will loop calling this shrinker scan routine with
1088  * sc->nr_to_scan = SHRINK_BATCH(128 for now) until kernel got enough memory.
1089  *
1090  * If sc->nr_to_scan is 0, the VM is querying the cache size, we don't need
1091  * to scan and try to reclaim LRU pages, just return 0 and
1092  * osc_cache_shrink_count() will report the LRU page number.
1093  */
1094 unsigned long osc_cache_shrink_scan(struct shrinker *sk,
1095                                     struct shrink_control *sc)
1096 {
1097         struct client_obd *cli;
1098         struct client_obd *stop_anchor = NULL;
1099         struct lu_env *env;
1100         long shrank = 0;
1101         int rc;
1102         __u16 refcheck;
1103
1104         if (sc->nr_to_scan == 0)
1105                 return 0;
1106
1107         if (!(sc->gfp_mask & __GFP_FS))
1108                 return SHRINK_STOP;
1109
1110         env = cl_env_get(&refcheck);
1111         if (IS_ERR(env))
1112                 return SHRINK_STOP;
1113
1114         spin_lock(&osc_shrink_lock);
1115         while ((cli = list_first_entry_or_null(&osc_shrink_list,
1116                                                struct client_obd,
1117                                                cl_shrink_list)) != NULL) {
1118                 if (stop_anchor == NULL)
1119                         stop_anchor = cli;
1120                 else if (cli == stop_anchor)
1121                         break;
1122
1123                 list_move_tail(&cli->cl_shrink_list, &osc_shrink_list);
1124                 spin_unlock(&osc_shrink_lock);
1125
1126                 /* shrink no more than max_pages_per_rpc for an OSC */
1127                 rc = osc_lru_shrink(env, cli, (sc->nr_to_scan - shrank) >
1128                                     cli->cl_max_pages_per_rpc ?
1129                                     cli->cl_max_pages_per_rpc :
1130                                     sc->nr_to_scan - shrank, true);
1131                 if (rc > 0)
1132                         shrank += rc;
1133
1134                 if (shrank >= sc->nr_to_scan)
1135                         goto out;
1136
1137                 spin_lock(&osc_shrink_lock);
1138         }
1139         spin_unlock(&osc_shrink_lock);
1140
1141 out:
1142         cl_env_put(env, &refcheck);
1143
1144         return shrank;
1145 }
1146
1147 /** @} osc */