Whamcloud - gitweb
LU-6142 llite: Fix style issues for llite/statahead.c
[fs/lustre-release.git] / lustre / llite / statahead.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  * Lustre is a trademark of Sun Microsystems, Inc.
31  */
32
33 #include <linux/fs.h>
34 #include <linux/sched.h>
35 #include <linux/kthread.h>
36 #include <linux/mm.h>
37 #include <linux/highmem.h>
38 #include <linux/pagemap.h>
39 #include <linux/delay.h>
40
41 #define DEBUG_SUBSYSTEM S_LLITE
42
43 #include <obd_support.h>
44 #include <lustre_dlm.h>
45 #include "llite_internal.h"
46
47 #define SA_OMITTED_ENTRY_MAX 8ULL
48
49 typedef enum {
50         /** negative values are for error cases */
51         SA_ENTRY_INIT = 0,      /** init entry */
52         SA_ENTRY_SUCC = 1,      /** stat succeed */
53         SA_ENTRY_INVA = 2,      /** invalid entry */
54 } se_state_t;
55
56 /*
57  * sa_entry is not refcounted: statahead thread allocates it and do async stat,
58  * and in async stat callback ll_statahead_interpret() will add it into
59  * sai_interim_entries, later statahead thread will call sa_handle_callback() to
60  * instantiate entry and move it into sai_entries, and then only scanner process
61  * can access and free it.
62  */
63 struct sa_entry {
64         /* link into sai_interim_entries or sai_entries */
65         struct list_head        se_list;
66         /* link into sai hash table locally */
67         struct list_head        se_hash;
68         /* entry index in the sai */
69         __u64                   se_index;
70         /* low layer ldlm lock handle */
71         __u64                   se_handle;
72         /* entry status */
73         se_state_t              se_state;
74         /* entry size, contains name */
75         int                     se_size;
76         /* pointer to async getattr enqueue info */
77         struct md_enqueue_info *se_minfo;
78         /* pointer to the async getattr request */
79         struct ptlrpc_request  *se_req;
80         /* pointer to the target inode */
81         struct inode           *se_inode;
82         /* entry name */
83         struct qstr             se_qstr;
84         /* entry fid */
85         struct lu_fid           se_fid;
86 };
87
88 static unsigned int sai_generation;
89 static DEFINE_SPINLOCK(sai_generation_lock);
90
91 static inline int sa_unhashed(struct sa_entry *entry)
92 {
93         return list_empty(&entry->se_hash);
94 }
95
96 /* sa_entry is ready to use */
97 static inline int sa_ready(struct sa_entry *entry)
98 {
99         /* Make sure sa_entry is updated and ready to use */
100         smp_rmb();
101         return (entry->se_state != SA_ENTRY_INIT);
102 }
103
104 /* hash value to put in sai_cache */
105 static inline int sa_hash(int val)
106 {
107         return val & LL_SA_CACHE_MASK;
108 }
109
110 /* hash entry into sai_cache */
111 static inline void
112 sa_rehash(struct ll_statahead_info *sai, struct sa_entry *entry)
113 {
114         int i = sa_hash(entry->se_qstr.hash);
115
116         spin_lock(&sai->sai_cache_lock[i]);
117         list_add_tail(&entry->se_hash, &sai->sai_cache[i]);
118         spin_unlock(&sai->sai_cache_lock[i]);
119 }
120
121 /* unhash entry from sai_cache */
122 static inline void
123 sa_unhash(struct ll_statahead_info *sai, struct sa_entry *entry)
124 {
125         int i = sa_hash(entry->se_qstr.hash);
126
127         spin_lock(&sai->sai_cache_lock[i]);
128         list_del_init(&entry->se_hash);
129         spin_unlock(&sai->sai_cache_lock[i]);
130 }
131
132 static inline int agl_should_run(struct ll_statahead_info *sai,
133                                  struct inode *inode)
134 {
135         return (inode && S_ISREG(inode->i_mode) && sai->sai_agl_valid);
136 }
137
138 static inline struct ll_inode_info *
139 agl_first_entry(struct ll_statahead_info *sai)
140 {
141         return list_entry(sai->sai_agls.next, struct ll_inode_info,
142                           lli_agl_list);
143 }
144
145 /* statahead window is full */
146 static inline int sa_sent_full(struct ll_statahead_info *sai)
147 {
148         return atomic_read(&sai->sai_cache_count) >= sai->sai_max;
149 }
150
151 /* got async stat replies */
152 static inline int sa_has_callback(struct ll_statahead_info *sai)
153 {
154         return !list_empty(&sai->sai_interim_entries);
155 }
156
157 static inline int agl_list_empty(struct ll_statahead_info *sai)
158 {
159         return list_empty(&sai->sai_agls);
160 }
161
162 /**
163  * (1) hit ratio less than 80%
164  * or
165  * (2) consecutive miss more than 8
166  * then means low hit.
167  */
168 static inline int sa_low_hit(struct ll_statahead_info *sai)
169 {
170         return ((sai->sai_hit > 7 && sai->sai_hit < 4 * sai->sai_miss) ||
171                 (sai->sai_consecutive_miss > 8));
172 }
173
174 /*
175  * if the given index is behind of statahead window more than
176  * SA_OMITTED_ENTRY_MAX, then it is old.
177  */
178 static inline int is_omitted_entry(struct ll_statahead_info *sai, __u64 index)
179 {
180         return ((__u64)sai->sai_max + index + SA_OMITTED_ENTRY_MAX <
181                 sai->sai_index);
182 }
183
184 /* allocate sa_entry and hash it to allow scanner process to find it */
185 static struct sa_entry *
186 sa_alloc(struct dentry *parent, struct ll_statahead_info *sai, __u64 index,
187          const char *name, int len, const struct lu_fid *fid)
188 {
189         struct ll_inode_info *lli;
190         struct sa_entry *entry;
191         int entry_size;
192         char *dname;
193
194         ENTRY;
195
196         entry_size = sizeof(struct sa_entry) + (len & ~3) + 4;
197         OBD_ALLOC(entry, entry_size);
198         if (unlikely(!entry))
199                 RETURN(ERR_PTR(-ENOMEM));
200
201         CDEBUG(D_READA, "alloc sa entry %.*s(%p) index %llu\n",
202                len, name, entry, index);
203
204         entry->se_index = index;
205
206         entry->se_state = SA_ENTRY_INIT;
207         entry->se_size = entry_size;
208         dname = (char *)entry + sizeof(struct sa_entry);
209         memcpy(dname, name, len);
210         dname[len] = 0;
211         entry->se_qstr.hash = ll_full_name_hash(parent, name, len);
212         entry->se_qstr.len = len;
213         entry->se_qstr.name = dname;
214         entry->se_fid = *fid;
215
216         lli = ll_i2info(sai->sai_dentry->d_inode);
217
218         spin_lock(&lli->lli_sa_lock);
219         INIT_LIST_HEAD(&entry->se_list);
220         sa_rehash(sai, entry);
221         spin_unlock(&lli->lli_sa_lock);
222
223         atomic_inc(&sai->sai_cache_count);
224
225         RETURN(entry);
226 }
227
228 /* free sa_entry, which should have been unhashed and not in any list */
229 static void sa_free(struct ll_statahead_info *sai, struct sa_entry *entry)
230 {
231         CDEBUG(D_READA, "free sa entry %.*s(%p) index %llu\n",
232                entry->se_qstr.len, entry->se_qstr.name, entry,
233                entry->se_index);
234
235         LASSERT(list_empty(&entry->se_list));
236         LASSERT(sa_unhashed(entry));
237
238         OBD_FREE(entry, entry->se_size);
239         atomic_dec(&sai->sai_cache_count);
240 }
241
242 /*
243  * find sa_entry by name, used by directory scanner, lock is not needed because
244  * only scanner can remove the entry from cache.
245  */
246 static struct sa_entry *
247 sa_get(struct ll_statahead_info *sai, const struct qstr *qstr)
248 {
249         struct sa_entry *entry;
250         int i = sa_hash(qstr->hash);
251
252         list_for_each_entry(entry, &sai->sai_cache[i], se_hash) {
253                 if (entry->se_qstr.hash == qstr->hash &&
254                     entry->se_qstr.len == qstr->len &&
255                     memcmp(entry->se_qstr.name, qstr->name, qstr->len) == 0)
256                         return entry;
257         }
258         return NULL;
259 }
260
261 /* unhash and unlink sa_entry, and then free it */
262 static inline void
263 sa_kill(struct ll_statahead_info *sai, struct sa_entry *entry)
264 {
265         struct ll_inode_info *lli = ll_i2info(sai->sai_dentry->d_inode);
266
267         LASSERT(!sa_unhashed(entry));
268         LASSERT(!list_empty(&entry->se_list));
269         LASSERT(sa_ready(entry));
270
271         sa_unhash(sai, entry);
272
273         spin_lock(&lli->lli_sa_lock);
274         list_del_init(&entry->se_list);
275         spin_unlock(&lli->lli_sa_lock);
276
277         if (entry->se_inode)
278                 iput(entry->se_inode);
279
280         sa_free(sai, entry);
281 }
282
283 /* called by scanner after use, sa_entry will be killed */
284 static void
285 sa_put(struct ll_statahead_info *sai, struct sa_entry *entry)
286 {
287         struct sa_entry *tmp, *next;
288
289         if (entry && entry->se_state == SA_ENTRY_SUCC) {
290                 struct ll_sb_info *sbi = ll_i2sbi(sai->sai_dentry->d_inode);
291
292                 sai->sai_hit++;
293                 sai->sai_consecutive_miss = 0;
294                 sai->sai_max = min(2 * sai->sai_max, sbi->ll_sa_max);
295         } else {
296                 sai->sai_miss++;
297                 sai->sai_consecutive_miss++;
298         }
299
300         if (entry)
301                 sa_kill(sai, entry);
302
303         /*
304          * kill old completed entries, only scanner process does this, no need
305          * to lock
306          */
307         list_for_each_entry_safe(tmp, next, &sai->sai_entries, se_list) {
308                 if (!is_omitted_entry(sai, tmp->se_index))
309                         break;
310                 sa_kill(sai, tmp);
311         }
312 }
313
314 /*
315  * update state and sort add entry to sai_entries by index, return true if
316  * scanner is waiting on this entry.
317  */
318 static bool
319 __sa_make_ready(struct ll_statahead_info *sai, struct sa_entry *entry, int ret)
320 {
321         struct sa_entry *se;
322         struct list_head *pos = &sai->sai_entries;
323         __u64 index = entry->se_index;
324
325         LASSERT(!sa_ready(entry));
326         LASSERT(list_empty(&entry->se_list));
327
328         list_for_each_entry_reverse(se, &sai->sai_entries, se_list) {
329                 if (se->se_index < entry->se_index) {
330                         pos = &se->se_list;
331                         break;
332                 }
333         }
334         list_add(&entry->se_list, pos);
335         /*
336          * LU-9210: ll_statahead_interpet must be able to see this before
337          * we wake it up
338          */
339         smp_store_release(&entry->se_state,
340                           ret < 0 ? SA_ENTRY_INVA : SA_ENTRY_SUCC);
341
342         return (index == sai->sai_index_wait);
343 }
344
345 /* finish async stat RPC arguments */
346 static void sa_fini_data(struct md_enqueue_info *minfo)
347 {
348         ll_unlock_md_op_lsm(&minfo->mi_data);
349         iput(minfo->mi_dir);
350         OBD_FREE_PTR(minfo);
351 }
352
353 static int ll_statahead_interpret(struct ptlrpc_request *req,
354                                   struct md_enqueue_info *minfo, int rc);
355
356 /*
357  * prepare arguments for async stat RPC.
358  */
359 static struct md_enqueue_info *
360 sa_prep_data(struct inode *dir, struct inode *child, struct sa_entry *entry)
361 {
362         struct md_enqueue_info   *minfo;
363         struct ldlm_enqueue_info *einfo;
364         struct md_op_data        *op_data;
365
366         OBD_ALLOC_PTR(minfo);
367         if (!minfo)
368                 return ERR_PTR(-ENOMEM);
369
370         op_data = ll_prep_md_op_data(&minfo->mi_data, dir, child,
371                                      entry->se_qstr.name, entry->se_qstr.len, 0,
372                                      LUSTRE_OPC_ANY, NULL);
373         if (IS_ERR(op_data)) {
374                 OBD_FREE_PTR(minfo);
375                 return (struct md_enqueue_info *)op_data;
376         }
377
378         if (!child)
379                 op_data->op_fid2 = entry->se_fid;
380
381         minfo->mi_it.it_op = IT_GETATTR;
382         minfo->mi_dir = igrab(dir);
383         minfo->mi_cb = ll_statahead_interpret;
384         minfo->mi_cbdata = entry;
385
386         einfo = &minfo->mi_einfo;
387         einfo->ei_type   = LDLM_IBITS;
388         einfo->ei_mode   = it_to_lock_mode(&minfo->mi_it);
389         einfo->ei_cb_bl  = ll_md_blocking_ast;
390         einfo->ei_cb_cp  = ldlm_completion_ast;
391         einfo->ei_cb_gl  = NULL;
392         einfo->ei_cbdata = NULL;
393
394         return minfo;
395 }
396
397 /*
398  * release resources used in async stat RPC, update entry state and wakeup if
399  * scanner process it waiting on this entry.
400  */
401 static void
402 sa_make_ready(struct ll_statahead_info *sai, struct sa_entry *entry, int ret)
403 {
404         struct ll_inode_info *lli = ll_i2info(sai->sai_dentry->d_inode);
405         struct md_enqueue_info *minfo = entry->se_minfo;
406         struct ptlrpc_request *req = entry->se_req;
407         bool wakeup;
408
409         /* release resources used in RPC */
410         if (minfo) {
411                 entry->se_minfo = NULL;
412                 ll_intent_release(&minfo->mi_it);
413                 sa_fini_data(minfo);
414         }
415
416         if (req) {
417                 entry->se_req = NULL;
418                 ptlrpc_req_finished(req);
419         }
420
421         spin_lock(&lli->lli_sa_lock);
422         wakeup = __sa_make_ready(sai, entry, ret);
423         spin_unlock(&lli->lli_sa_lock);
424
425         if (wakeup)
426                 wake_up(&sai->sai_waitq);
427 }
428
429 /* insert inode into the list of sai_agls */
430 static void ll_agl_add(struct ll_statahead_info *sai,
431                        struct inode *inode, int index)
432 {
433         struct ll_inode_info *child  = ll_i2info(inode);
434         struct ll_inode_info *parent = ll_i2info(sai->sai_dentry->d_inode);
435         int                   added  = 0;
436
437         spin_lock(&child->lli_agl_lock);
438         if (child->lli_agl_index == 0) {
439                 child->lli_agl_index = index;
440                 spin_unlock(&child->lli_agl_lock);
441
442                 LASSERT(list_empty(&child->lli_agl_list));
443
444                 igrab(inode);
445                 spin_lock(&parent->lli_agl_lock);
446                 if (agl_list_empty(sai))
447                         added = 1;
448                 list_add_tail(&child->lli_agl_list, &sai->sai_agls);
449                 if (added && sai->sai_agl_task)
450                         wake_up_process(sai->sai_agl_task);
451                 spin_unlock(&parent->lli_agl_lock);
452         } else {
453                 spin_unlock(&child->lli_agl_lock);
454         }
455 }
456
457 /* allocate sai */
458 static struct ll_statahead_info *ll_sai_alloc(struct dentry *dentry)
459 {
460         struct ll_statahead_info *sai;
461         struct ll_inode_info *lli = ll_i2info(dentry->d_inode);
462         int i;
463
464         ENTRY;
465
466         OBD_ALLOC_PTR(sai);
467         if (!sai)
468                 RETURN(NULL);
469
470         sai->sai_dentry = dget(dentry);
471         atomic_set(&sai->sai_refcount, 1);
472         sai->sai_max = LL_SA_RPC_MIN;
473         sai->sai_index = 1;
474         init_waitqueue_head(&sai->sai_waitq);
475
476         INIT_LIST_HEAD(&sai->sai_interim_entries);
477         INIT_LIST_HEAD(&sai->sai_entries);
478         INIT_LIST_HEAD(&sai->sai_agls);
479
480         for (i = 0; i < LL_SA_CACHE_SIZE; i++) {
481                 INIT_LIST_HEAD(&sai->sai_cache[i]);
482                 spin_lock_init(&sai->sai_cache_lock[i]);
483         }
484         atomic_set(&sai->sai_cache_count, 0);
485
486         spin_lock(&sai_generation_lock);
487         lli->lli_sa_generation = ++sai_generation;
488         if (unlikely(sai_generation == 0))
489                 lli->lli_sa_generation = ++sai_generation;
490         spin_unlock(&sai_generation_lock);
491
492         RETURN(sai);
493 }
494
495 /* free sai */
496 static inline void ll_sai_free(struct ll_statahead_info *sai)
497 {
498         LASSERT(sai->sai_dentry != NULL);
499         dput(sai->sai_dentry);
500         OBD_FREE_PTR(sai);
501 }
502
503 /*
504  * take refcount of sai if sai for @dir exists, which means statahead is on for
505  * this directory.
506  */
507 static inline struct ll_statahead_info *ll_sai_get(struct inode *dir)
508 {
509         struct ll_inode_info *lli = ll_i2info(dir);
510         struct ll_statahead_info *sai = NULL;
511
512         spin_lock(&lli->lli_sa_lock);
513         sai = lli->lli_sai;
514         if (sai)
515                 atomic_inc(&sai->sai_refcount);
516         spin_unlock(&lli->lli_sa_lock);
517
518         return sai;
519 }
520
521 /*
522  * put sai refcount after use, if refcount reaches zero, free sai and sa_entries
523  * attached to it.
524  */
525 static void ll_sai_put(struct ll_statahead_info *sai)
526 {
527         struct ll_inode_info *lli = ll_i2info(sai->sai_dentry->d_inode);
528
529         if (atomic_dec_and_lock(&sai->sai_refcount, &lli->lli_sa_lock)) {
530                 struct sa_entry *entry, *next;
531                 struct ll_sb_info *sbi = ll_i2sbi(sai->sai_dentry->d_inode);
532
533                 lli->lli_sai = NULL;
534                 spin_unlock(&lli->lli_sa_lock);
535
536                 LASSERT(!sai->sai_task);
537                 LASSERT(!sai->sai_agl_task);
538                 LASSERT(sai->sai_sent == sai->sai_replied);
539                 LASSERT(!sa_has_callback(sai));
540
541                 list_for_each_entry_safe(entry, next, &sai->sai_entries,
542                                          se_list)
543                         sa_kill(sai, entry);
544
545                 LASSERT(atomic_read(&sai->sai_cache_count) == 0);
546                 LASSERT(agl_list_empty(sai));
547
548                 ll_sai_free(sai);
549                 atomic_dec(&sbi->ll_sa_running);
550         }
551 }
552
553 /* Do NOT forget to drop inode refcount when into sai_agls. */
554 static void ll_agl_trigger(struct inode *inode, struct ll_statahead_info *sai)
555 {
556         struct ll_inode_info *lli = ll_i2info(inode);
557         u64 index = lli->lli_agl_index;
558         ktime_t expire;
559         int rc;
560
561         ENTRY;
562
563         LASSERT(list_empty(&lli->lli_agl_list));
564
565         /* AGL maybe fall behind statahead with one entry */
566         if (is_omitted_entry(sai, index + 1)) {
567                 lli->lli_agl_index = 0;
568                 iput(inode);
569                 RETURN_EXIT;
570         }
571
572         /*
573          * In case of restore, the MDT has the right size and has already
574          * sent it back without granting the layout lock, inode is up-to-date.
575          * Then AGL (async glimpse lock) is useless.
576          * Also to glimpse we need the layout, in case of a runninh restore
577          * the MDT holds the layout lock so the glimpse will block up to the
578          * end of restore (statahead/agl will block)
579          */
580         if (ll_file_test_flag(lli, LLIF_FILE_RESTORING)) {
581                 lli->lli_agl_index = 0;
582                 iput(inode);
583                 RETURN_EXIT;
584         }
585
586         /* Someone is in glimpse (sync or async), do nothing. */
587         rc = down_write_trylock(&lli->lli_glimpse_sem);
588         if (rc == 0) {
589                 lli->lli_agl_index = 0;
590                 iput(inode);
591                 RETURN_EXIT;
592         }
593
594         /*
595          * Someone triggered glimpse within 1 sec before.
596          * 1) The former glimpse succeeded with glimpse lock granted by OST, and
597          *    if the lock is still cached on client, AGL needs to do nothing. If
598          *    it is cancelled by other client, AGL maybe cannot obtaion new lock
599          *    for no glimpse callback triggered by AGL.
600          * 2) The former glimpse succeeded, but OST did not grant glimpse lock.
601          *    Under such case, it is quite possible that the OST will not grant
602          *    glimpse lock for AGL also.
603          * 3) The former glimpse failed, compared with other two cases, it is
604          *    relative rare. AGL can ignore such case, and it will not muchly
605          *    affect the performance.
606          */
607         expire = ktime_sub_ns(ktime_get(), NSEC_PER_SEC);
608         if (ktime_to_ns(lli->lli_glimpse_time) &&
609             ktime_before(expire, lli->lli_glimpse_time)) {
610                 up_write(&lli->lli_glimpse_sem);
611                 lli->lli_agl_index = 0;
612                 iput(inode);
613                 RETURN_EXIT;
614         }
615
616         CDEBUG(D_READA,
617                "Handling (init) async glimpse: inode = " DFID", idx = %llu\n",
618                PFID(&lli->lli_fid), index);
619
620         cl_agl(inode);
621         lli->lli_agl_index = 0;
622         lli->lli_glimpse_time = ktime_get();
623         up_write(&lli->lli_glimpse_sem);
624
625         CDEBUG(D_READA,
626                "Handled (init) async glimpse: inode= " DFID", idx = %llu, rc = %d\n",
627                PFID(&lli->lli_fid), index, rc);
628
629         iput(inode);
630
631         EXIT;
632 }
633
634 /*
635  * prepare inode for sa entry, add it into agl list, now sa_entry is ready
636  * to be used by scanner process.
637  */
638 static void sa_instantiate(struct ll_statahead_info *sai,
639                            struct sa_entry *entry)
640 {
641         struct inode *dir = sai->sai_dentry->d_inode;
642         struct inode *child;
643         struct md_enqueue_info *minfo;
644         struct lookup_intent *it;
645         struct ptlrpc_request *req;
646         struct mdt_body *body;
647         int rc = 0;
648
649         ENTRY;
650
651         LASSERT(entry->se_handle != 0);
652
653         minfo = entry->se_minfo;
654         it = &minfo->mi_it;
655         req = entry->se_req;
656         body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
657         if (!body)
658                 GOTO(out, rc = -EFAULT);
659
660         child = entry->se_inode;
661         if (child) {
662                 /* revalidate; unlinked and re-created with the same name */
663                 if (unlikely(!lu_fid_eq(&minfo->mi_data.op_fid2,
664                                         &body->mbo_fid1))) {
665                         entry->se_inode = NULL;
666                         iput(child);
667                         child = NULL;
668                 }
669         }
670
671         it->it_lock_handle = entry->se_handle;
672         rc = md_revalidate_lock(ll_i2mdexp(dir), it, ll_inode2fid(dir), NULL);
673         if (rc != 1)
674                 GOTO(out, rc = -EAGAIN);
675
676         rc = ll_prep_inode(&child, req, dir->i_sb, it);
677         if (rc)
678                 GOTO(out, rc);
679
680         CDEBUG(D_READA, "%s: setting %.*s"DFID" l_data to inode %p\n",
681                ll_i2sbi(dir)->ll_fsname, entry->se_qstr.len,
682                entry->se_qstr.name, PFID(ll_inode2fid(child)), child);
683         ll_set_lock_data(ll_i2sbi(dir)->ll_md_exp, child, it, NULL);
684
685         entry->se_inode = child;
686
687         if (agl_should_run(sai, child))
688                 ll_agl_add(sai, child, entry->se_index);
689
690         EXIT;
691
692 out:
693         /*
694          * sa_make_ready() will drop ldlm ibits lock refcount by calling
695          * ll_intent_drop_lock() in spite of failures. Do not worry about
696          * calling ll_intent_drop_lock() more than once.
697          */
698         sa_make_ready(sai, entry, rc);
699 }
700
701 /* once there are async stat replies, instantiate sa_entry from replies */
702 static void sa_handle_callback(struct ll_statahead_info *sai)
703 {
704         struct ll_inode_info *lli;
705
706         lli = ll_i2info(sai->sai_dentry->d_inode);
707
708         spin_lock(&lli->lli_sa_lock);
709         while (sa_has_callback(sai)) {
710                 struct sa_entry *entry;
711
712                 entry = list_entry(sai->sai_interim_entries.next,
713                                    struct sa_entry, se_list);
714                 list_del_init(&entry->se_list);
715                 spin_unlock(&lli->lli_sa_lock);
716
717                 sa_instantiate(sai, entry);
718                 spin_lock(&lli->lli_sa_lock);
719         }
720         spin_unlock(&lli->lli_sa_lock);
721 }
722
723 /*
724  * callback for async stat RPC, because this is called in ptlrpcd context, we
725  * only put sa_entry in sai_interim_entries, and wake up statahead thread to
726  * really prepare inode and instantiate sa_entry later.
727  */
728 static int ll_statahead_interpret(struct ptlrpc_request *req,
729                                   struct md_enqueue_info *minfo, int rc)
730 {
731         struct lookup_intent *it = &minfo->mi_it;
732         struct inode *dir = minfo->mi_dir;
733         struct ll_inode_info *lli = ll_i2info(dir);
734         struct ll_statahead_info *sai = lli->lli_sai;
735         struct sa_entry *entry = (struct sa_entry *)minfo->mi_cbdata;
736         __u64 handle = 0;
737
738         ENTRY;
739
740         if (it_disposition(it, DISP_LOOKUP_NEG))
741                 rc = -ENOENT;
742
743         /*
744          * because statahead thread will wait for all inflight RPC to finish,
745          * sai should be always valid, no need to refcount
746          */
747         LASSERT(sai != NULL);
748         LASSERT(entry != NULL);
749
750         CDEBUG(D_READA, "sa_entry %.*s rc %d\n",
751                entry->se_qstr.len, entry->se_qstr.name, rc);
752
753         if (rc != 0) {
754                 ll_intent_release(it);
755                 sa_fini_data(minfo);
756         } else {
757                 /*
758                  * release ibits lock ASAP to avoid deadlock when statahead
759                  * thread enqueues lock on parent in readdir and another
760                  * process enqueues lock on child with parent lock held, eg.
761                  * unlink.
762                  */
763                 handle = it->it_lock_handle;
764                 ll_intent_drop_lock(it);
765                 ll_unlock_md_op_lsm(&minfo->mi_data);
766         }
767
768         spin_lock(&lli->lli_sa_lock);
769         if (rc != 0) {
770                 if (__sa_make_ready(sai, entry, rc))
771                         wake_up(&sai->sai_waitq);
772         } else {
773                 int first = 0;
774
775                 entry->se_minfo = minfo;
776                 entry->se_req = ptlrpc_request_addref(req);
777                 /*
778                  * Release the async ibits lock ASAP to avoid deadlock
779                  * when statahead thread tries to enqueue lock on parent
780                  * for readpage and other tries to enqueue lock on child
781                  * with parent's lock held, for example: unlink.
782                  */
783                 entry->se_handle = handle;
784                 if (!sa_has_callback(sai))
785                         first = 1;
786
787                 list_add_tail(&entry->se_list, &sai->sai_interim_entries);
788                 if (first && sai->sai_task)
789                         wake_up_process(sai->sai_task);
790         }
791         sai->sai_replied++;
792
793         spin_unlock(&lli->lli_sa_lock);
794
795         RETURN(rc);
796 }
797
798 /* async stat for file not found in dcache */
799 static int sa_lookup(struct inode *dir, struct sa_entry *entry)
800 {
801         struct md_enqueue_info   *minfo;
802         int                       rc;
803
804         ENTRY;
805
806         minfo = sa_prep_data(dir, NULL, entry);
807         if (IS_ERR(minfo))
808                 RETURN(PTR_ERR(minfo));
809
810         rc = md_intent_getattr_async(ll_i2mdexp(dir), minfo);
811         if (rc < 0)
812                 sa_fini_data(minfo);
813
814         RETURN(rc);
815 }
816
817 /**
818  * async stat for file found in dcache, similar to .revalidate
819  *
820  * \retval      1 dentry valid, no RPC sent
821  * \retval      0 dentry invalid, will send async stat RPC
822  * \retval      negative number upon error
823  */
824 static int sa_revalidate(struct inode *dir, struct sa_entry *entry,
825                          struct dentry *dentry)
826 {
827         struct inode *inode = dentry->d_inode;
828         struct lookup_intent it = { .it_op = IT_GETATTR,
829                                     .it_lock_handle = 0 };
830         struct md_enqueue_info *minfo;
831         int rc;
832
833         ENTRY;
834
835         if (unlikely(!inode))
836                 RETURN(1);
837
838         if (d_mountpoint(dentry))
839                 RETURN(1);
840
841         minfo = sa_prep_data(dir, inode, entry);
842         if (IS_ERR(minfo))
843                 RETURN(PTR_ERR(minfo));
844
845         entry->se_inode = igrab(inode);
846         rc = md_revalidate_lock(ll_i2mdexp(dir), &it, ll_inode2fid(inode),
847                                 NULL);
848         if (rc == 1) {
849                 entry->se_handle = it.it_lock_handle;
850                 ll_intent_release(&it);
851                 sa_fini_data(minfo);
852                 RETURN(1);
853         }
854
855         rc = md_intent_getattr_async(ll_i2mdexp(dir), minfo);
856         if (rc < 0) {
857                 entry->se_inode = NULL;
858                 iput(inode);
859                 sa_fini_data(minfo);
860         }
861
862         RETURN(rc);
863 }
864
865 /* async stat for file with @name */
866 static void sa_statahead(struct dentry *parent, const char *name, int len,
867                          const struct lu_fid *fid)
868 {
869         struct inode *dir = parent->d_inode;
870         struct ll_inode_info *lli = ll_i2info(dir);
871         struct ll_statahead_info *sai = lli->lli_sai;
872         struct dentry *dentry = NULL;
873         struct sa_entry *entry;
874         int rc;
875
876         ENTRY;
877
878         entry = sa_alloc(parent, sai, sai->sai_index, name, len, fid);
879         if (IS_ERR(entry))
880                 RETURN_EXIT;
881
882         dentry = d_lookup(parent, &entry->se_qstr);
883         if (!dentry) {
884                 rc = sa_lookup(dir, entry);
885         } else {
886                 rc = sa_revalidate(dir, entry, dentry);
887                 if (rc == 1 && agl_should_run(sai, dentry->d_inode))
888                         ll_agl_add(sai, dentry->d_inode, entry->se_index);
889         }
890
891         if (dentry)
892                 dput(dentry);
893
894         if (rc != 0)
895                 sa_make_ready(sai, entry, rc);
896         else
897                 sai->sai_sent++;
898
899         sai->sai_index++;
900
901         EXIT;
902 }
903
904 #ifndef TASK_IDLE
905 #define TASK_IDLE TASK_INTERRUPTIBLE
906 #endif
907
908 /* async glimpse (agl) thread main function */
909 static int ll_agl_thread(void *arg)
910 {
911         struct dentry *parent = (struct dentry *)arg;
912         struct inode *dir = parent->d_inode;
913         struct ll_inode_info *plli = ll_i2info(dir);
914         struct ll_inode_info *clli;
915         /*
916          * We already own this reference, so it is safe to take it
917          * without a lock.
918          */
919         struct ll_statahead_info *sai = plli->lli_sai;
920
921         ENTRY;
922
923         CDEBUG(D_READA, "agl thread started: sai %p, parent %.*s\n",
924                sai, parent->d_name.len, parent->d_name.name);
925
926         while (({set_current_state(TASK_IDLE);
927                  !kthread_should_stop(); })) {
928                 spin_lock(&plli->lli_agl_lock);
929                 if (!agl_list_empty(sai)) {
930                         __set_current_state(TASK_RUNNING);
931                         clli = agl_first_entry(sai);
932                         list_del_init(&clli->lli_agl_list);
933                         spin_unlock(&plli->lli_agl_lock);
934                         ll_agl_trigger(&clli->lli_vfs_inode, sai);
935                         cond_resched();
936                 } else {
937                         spin_unlock(&plli->lli_agl_lock);
938                         schedule();
939                 }
940         }
941         __set_current_state(TASK_RUNNING);
942         RETURN(0);
943 }
944
945 static void ll_stop_agl(struct ll_statahead_info *sai)
946 {
947         struct dentry *parent = sai->sai_dentry;
948         struct ll_inode_info *plli = ll_i2info(parent->d_inode);
949         struct ll_inode_info *clli;
950         struct task_struct *agl_task;
951
952         spin_lock(&plli->lli_agl_lock);
953         agl_task = sai->sai_agl_task;
954         sai->sai_agl_task = NULL;
955         spin_unlock(&plli->lli_agl_lock);
956         if (!agl_task)
957                 return;
958
959         CDEBUG(D_READA, "stop agl thread: sai %p pid %u\n",
960                sai, (unsigned int)agl_task->pid);
961         kthread_stop(agl_task);
962
963         spin_lock(&plli->lli_agl_lock);
964         sai->sai_agl_valid = 0;
965         while (!agl_list_empty(sai)) {
966                 clli = agl_first_entry(sai);
967                 list_del_init(&clli->lli_agl_list);
968                 spin_unlock(&plli->lli_agl_lock);
969                 clli->lli_agl_index = 0;
970                 iput(&clli->lli_vfs_inode);
971                 spin_lock(&plli->lli_agl_lock);
972         }
973         spin_unlock(&plli->lli_agl_lock);
974         CDEBUG(D_READA, "agl thread stopped: sai %p, parent %.*s\n",
975                sai, parent->d_name.len, parent->d_name.name);
976         ll_sai_put(sai);
977 }
978
979 /* start agl thread */
980 static void ll_start_agl(struct dentry *parent, struct ll_statahead_info *sai)
981 {
982         struct ll_inode_info  *plli;
983         struct task_struct    *task;
984
985         ENTRY;
986
987         CDEBUG(D_READA, "start agl thread: sai %p, parent %.*s\n",
988                sai, parent->d_name.len, parent->d_name.name);
989
990         plli = ll_i2info(parent->d_inode);
991         task = kthread_create(ll_agl_thread, parent,
992                               "ll_agl_%u", plli->lli_opendir_pid);
993         if (IS_ERR(task)) {
994                 CERROR("can't start ll_agl thread, rc: %ld\n", PTR_ERR(task));
995                 RETURN_EXIT;
996         }
997         sai->sai_agl_task = task;
998         sai->sai_agl_valid = 1;
999         atomic_inc(&ll_i2sbi(d_inode(parent))->ll_agl_total);
1000         /* Get an extra reference that the thread holds */
1001         ll_sai_get(d_inode(parent));
1002
1003         wake_up_process(task);
1004
1005         EXIT;
1006 }
1007
1008 /* statahead thread main function */
1009 static int ll_statahead_thread(void *arg)
1010 {
1011         struct dentry *parent = (struct dentry *)arg;
1012         struct inode *dir = parent->d_inode;
1013         struct ll_inode_info *lli = ll_i2info(dir);
1014         struct ll_sb_info *sbi = ll_i2sbi(dir);
1015         struct ll_statahead_info *sai = lli->lli_sai;
1016         int first = 0;
1017         struct md_op_data *op_data;
1018         struct ll_dir_chain chain;
1019         struct page *page = NULL;
1020         __u64 pos = 0;
1021         int rc = 0;
1022
1023         ENTRY;
1024
1025         CDEBUG(D_READA, "statahead thread starting: sai %p, parent %.*s\n",
1026                sai, parent->d_name.len, parent->d_name.name);
1027
1028         OBD_ALLOC_PTR(op_data);
1029         if (!op_data)
1030                 GOTO(out, rc = -ENOMEM);
1031
1032         ll_dir_chain_init(&chain);
1033         while (pos != MDS_DIR_END_OFF && sai->sai_task) {
1034                 struct lu_dirpage *dp;
1035                 struct lu_dirent  *ent;
1036
1037                 op_data = ll_prep_md_op_data(op_data, dir, dir, NULL, 0, 0,
1038                                              LUSTRE_OPC_ANY, dir);
1039                 if (IS_ERR(op_data)) {
1040                         rc = PTR_ERR(op_data);
1041                         break;
1042                 }
1043
1044                 sai->sai_in_readpage = 1;
1045                 page = ll_get_dir_page(dir, op_data, pos, &chain);
1046                 ll_unlock_md_op_lsm(op_data);
1047                 sai->sai_in_readpage = 0;
1048                 if (IS_ERR(page)) {
1049                         rc = PTR_ERR(page);
1050                         CDEBUG(D_READA,
1051                                "error reading dir "DFID" at %llu /%llu opendir_pid = %u: rc = %d\n",
1052                                PFID(ll_inode2fid(dir)), pos, sai->sai_index,
1053                                lli->lli_opendir_pid, rc);
1054                         break;
1055                 }
1056
1057                 dp = page_address(page);
1058                 for (ent = lu_dirent_start(dp);
1059                      ent != NULL && sai->sai_task &&
1060                      !sa_low_hit(sai);
1061                      ent = lu_dirent_next(ent)) {
1062                         __u64 hash;
1063                         int namelen;
1064                         char *name;
1065                         struct lu_fid fid;
1066
1067                         hash = le64_to_cpu(ent->lde_hash);
1068                         if (unlikely(hash < pos))
1069                                 /*
1070                                  * Skip until we find target hash value.
1071                                  */
1072                                 continue;
1073
1074                         namelen = le16_to_cpu(ent->lde_namelen);
1075                         if (unlikely(namelen == 0))
1076                                 /*
1077                                  * Skip dummy record.
1078                                  */
1079                                 continue;
1080
1081                         name = ent->lde_name;
1082                         if (name[0] == '.') {
1083                                 if (namelen == 1) {
1084                                         /*
1085                                          * skip "."
1086                                          */
1087                                         continue;
1088                                 } else if (name[1] == '.' && namelen == 2) {
1089                                         /*
1090                                          * skip ".."
1091                                          */
1092                                         continue;
1093                                 } else if (!sai->sai_ls_all) {
1094                                         /*
1095                                          * skip hidden files.
1096                                          */
1097                                         sai->sai_skip_hidden++;
1098                                         continue;
1099                                 }
1100                         }
1101
1102                         /*
1103                          * don't stat-ahead first entry.
1104                          */
1105                         if (unlikely(++first == 1))
1106                                 continue;
1107
1108                         fid_le_to_cpu(&fid, &ent->lde_fid);
1109
1110                         while (({set_current_state(TASK_IDLE);
1111                                  sai->sai_task; })) {
1112                                 if (sa_has_callback(sai)) {
1113                                         __set_current_state(TASK_RUNNING);
1114                                         sa_handle_callback(sai);
1115                                 }
1116
1117                                 spin_lock(&lli->lli_agl_lock);
1118                                 while (sa_sent_full(sai) &&
1119                                        !agl_list_empty(sai)) {
1120                                         struct ll_inode_info *clli;
1121
1122                                         __set_current_state(TASK_RUNNING);
1123                                         clli = agl_first_entry(sai);
1124                                         list_del_init(&clli->lli_agl_list);
1125                                         spin_unlock(&lli->lli_agl_lock);
1126
1127                                         ll_agl_trigger(&clli->lli_vfs_inode,
1128                                                        sai);
1129                                         cond_resched();
1130                                         spin_lock(&lli->lli_agl_lock);
1131                                 }
1132                                 spin_unlock(&lli->lli_agl_lock);
1133
1134                                 if (!sa_sent_full(sai))
1135                                         break;
1136                                 schedule();
1137                         }
1138                         __set_current_state(TASK_RUNNING);
1139
1140                         sa_statahead(parent, name, namelen, &fid);
1141                 }
1142
1143                 pos = le64_to_cpu(dp->ldp_hash_end);
1144                 ll_release_page(dir, page,
1145                                 le32_to_cpu(dp->ldp_flags) & LDF_COLLIDE);
1146
1147                 if (sa_low_hit(sai)) {
1148                         rc = -EFAULT;
1149                         atomic_inc(&sbi->ll_sa_wrong);
1150                         CDEBUG(D_READA,
1151                                "Statahead for dir "DFID" hit ratio too low: hit/miss %llu/%llu, sent/replied %llu/%llu, stoppingstatahead thread: pid %d\n",
1152                                PFID(&lli->lli_fid), sai->sai_hit,
1153                                sai->sai_miss, sai->sai_sent,
1154                                sai->sai_replied, current->pid);
1155                         break;
1156                 }
1157         }
1158         ll_dir_chain_fini(&chain);
1159         ll_finish_md_op_data(op_data);
1160
1161         if (rc < 0) {
1162                 spin_lock(&lli->lli_sa_lock);
1163                 sai->sai_task = NULL;
1164                 lli->lli_sa_enabled = 0;
1165                 spin_unlock(&lli->lli_sa_lock);
1166         }
1167
1168         /*
1169          * statahead is finished, but statahead entries need to be cached, wait
1170          * for file release to stop me.
1171          */
1172         while (({set_current_state(TASK_IDLE);
1173                  sai->sai_task; })) {
1174                 if (sa_has_callback(sai)) {
1175                         __set_current_state(TASK_RUNNING);
1176                         sa_handle_callback(sai);
1177                 } else {
1178                         schedule();
1179                 }
1180         }
1181         __set_current_state(TASK_RUNNING);
1182
1183         EXIT;
1184 out:
1185         ll_stop_agl(sai);
1186
1187         /*
1188          * wait for inflight statahead RPCs to finish, and then we can free sai
1189          * safely because statahead RPC will access sai data
1190          */
1191         while (sai->sai_sent != sai->sai_replied)
1192                 /* in case we're not woken up, timeout wait */
1193                 msleep(125);
1194
1195         /* release resources held by statahead RPCs */
1196         sa_handle_callback(sai);
1197
1198         CDEBUG(D_READA, "statahead thread stopped: sai %p, parent %.*s\n",
1199                sai, parent->d_name.len, parent->d_name.name);
1200
1201         spin_lock(&lli->lli_sa_lock);
1202         sai->sai_task = NULL;
1203         spin_unlock(&lli->lli_sa_lock);
1204         wake_up(&sai->sai_waitq);
1205
1206         ll_sai_put(sai);
1207
1208         return rc;
1209 }
1210
1211 /* authorize opened dir handle @key to statahead */
1212 void ll_authorize_statahead(struct inode *dir, void *key)
1213 {
1214         struct ll_inode_info *lli = ll_i2info(dir);
1215
1216         spin_lock(&lli->lli_sa_lock);
1217         if (!lli->lli_opendir_key && !lli->lli_sai) {
1218                 /*
1219                  * if lli_sai is not NULL, it means previous statahead is not
1220                  * finished yet, we'd better not start a new statahead for now.
1221                  */
1222                 LASSERT(lli->lli_opendir_pid == 0);
1223                 lli->lli_opendir_key = key;
1224                 lli->lli_opendir_pid = current->pid;
1225                 lli->lli_sa_enabled = 1;
1226         }
1227         spin_unlock(&lli->lli_sa_lock);
1228 }
1229
1230 /*
1231  * deauthorize opened dir handle @key to statahead, and notify statahead thread
1232  * to quit if it's running.
1233  */
1234 void ll_deauthorize_statahead(struct inode *dir, void *key)
1235 {
1236         struct ll_inode_info *lli = ll_i2info(dir);
1237         struct ll_statahead_info *sai;
1238
1239         LASSERT(lli->lli_opendir_key == key);
1240         LASSERT(lli->lli_opendir_pid != 0);
1241
1242         CDEBUG(D_READA, "deauthorize statahead for "DFID"\n",
1243                PFID(&lli->lli_fid));
1244
1245         spin_lock(&lli->lli_sa_lock);
1246         lli->lli_opendir_key = NULL;
1247         lli->lli_opendir_pid = 0;
1248         lli->lli_sa_enabled = 0;
1249         sai = lli->lli_sai;
1250         if (sai && sai->sai_task) {
1251                 /*
1252                  * statahead thread may not have quit yet because it needs to
1253                  * cache entries, now it's time to tell it to quit.
1254                  *
1255                  * wake_up_process() provides the necessary barriers
1256                  * to pair with set_current_state().
1257                  */
1258                 struct task_struct *task = sai->sai_task;
1259
1260                 sai->sai_task = NULL;
1261                 wake_up_process(task);
1262         }
1263         spin_unlock(&lli->lli_sa_lock);
1264 }
1265
1266 enum {
1267         /**
1268          * not first dirent, or is "."
1269          */
1270         LS_NOT_FIRST_DE = 0,
1271         /**
1272          * the first non-hidden dirent
1273          */
1274         LS_FIRST_DE,
1275         /**
1276          * the first hidden dirent, that is "."
1277          */
1278         LS_FIRST_DOT_DE
1279 };
1280
1281 /* file is first dirent under @dir */
1282 static int is_first_dirent(struct inode *dir, struct dentry *dentry)
1283 {
1284         struct ll_dir_chain   chain;
1285         struct qstr          *target = &dentry->d_name;
1286         struct md_op_data    *op_data;
1287         int                   dot_de;
1288         struct page          *page = NULL;
1289         int                   rc = LS_NOT_FIRST_DE;
1290         __u64                 pos = 0;
1291
1292         ENTRY;
1293
1294         op_data = ll_prep_md_op_data(NULL, dir, dir, NULL, 0, 0,
1295                                      LUSTRE_OPC_ANY, dir);
1296         if (IS_ERR(op_data))
1297                 RETURN(PTR_ERR(op_data));
1298         /**
1299          *FIXME choose the start offset of the readdir
1300          */
1301
1302         ll_dir_chain_init(&chain);
1303         page = ll_get_dir_page(dir, op_data, 0, &chain);
1304
1305         while (1) {
1306                 struct lu_dirpage *dp;
1307                 struct lu_dirent  *ent;
1308
1309                 if (IS_ERR(page)) {
1310                         struct ll_inode_info *lli = ll_i2info(dir);
1311
1312                         rc = PTR_ERR(page);
1313                         CERROR("%s: reading dir "DFID" at %llu opendir_pid = %u : rc = %d\n",
1314                                ll_i2sbi(dir)->ll_fsname,
1315                                PFID(ll_inode2fid(dir)), pos,
1316                                lli->lli_opendir_pid, rc);
1317                         break;
1318                 }
1319
1320                 dp = page_address(page);
1321                 for (ent = lu_dirent_start(dp); ent != NULL;
1322                      ent = lu_dirent_next(ent)) {
1323                         __u64 hash;
1324                         int namelen;
1325                         char *name;
1326
1327                         hash = le64_to_cpu(ent->lde_hash);
1328                         /*
1329                          * The ll_get_dir_page() can return any page containing
1330                          * the given hash which may be not the start hash.
1331                          */
1332                         if (unlikely(hash < pos))
1333                                 continue;
1334
1335                         namelen = le16_to_cpu(ent->lde_namelen);
1336                         if (unlikely(namelen == 0))
1337                                 /*
1338                                  * skip dummy record.
1339                                  */
1340                                 continue;
1341
1342                         name = ent->lde_name;
1343                         if (name[0] == '.') {
1344                                 if (namelen == 1)
1345                                         /*
1346                                          * skip "."
1347                                          */
1348                                         continue;
1349                                 else if (name[1] == '.' && namelen == 2)
1350                                         /*
1351                                          * skip ".."
1352                                          */
1353                                         continue;
1354                                 else
1355                                         dot_de = 1;
1356                         } else {
1357                                 dot_de = 0;
1358                         }
1359
1360                         if (dot_de && target->name[0] != '.') {
1361                                 CDEBUG(D_READA, "%.*s skip hidden file %.*s\n",
1362                                        target->len, target->name,
1363                                        namelen, name);
1364                                 continue;
1365                         }
1366
1367                         if (target->len != namelen ||
1368                             memcmp(target->name, name, namelen) != 0)
1369                                 rc = LS_NOT_FIRST_DE;
1370                         else if (!dot_de)
1371                                 rc = LS_FIRST_DE;
1372                         else
1373                                 rc = LS_FIRST_DOT_DE;
1374
1375                         ll_release_page(dir, page, false);
1376                         GOTO(out, rc);
1377                 }
1378                 pos = le64_to_cpu(dp->ldp_hash_end);
1379                 if (pos == MDS_DIR_END_OFF) {
1380                         /*
1381                          * End of directory reached.
1382                          */
1383                         ll_release_page(dir, page, false);
1384                         GOTO(out, rc);
1385                 } else {
1386                         /*
1387                          * chain is exhausted
1388                          * Normal case: continue to the next page.
1389                          */
1390                         ll_release_page(dir, page, le32_to_cpu(dp->ldp_flags) &
1391                                               LDF_COLLIDE);
1392                         page = ll_get_dir_page(dir, op_data, pos, &chain);
1393                 }
1394         }
1395         EXIT;
1396 out:
1397         ll_dir_chain_fini(&chain);
1398         ll_finish_md_op_data(op_data);
1399
1400         return rc;
1401 }
1402
1403 /**
1404  * revalidate @dentryp from statahead cache
1405  *
1406  * \param[in] dir       parent directory
1407  * \param[in] sai       sai structure
1408  * \param[out] dentryp  pointer to dentry which will be revalidated
1409  * \param[in] unplug    unplug statahead window only (normally for negative
1410  *                      dentry)
1411  * \retval              1 on success, dentry is saved in @dentryp
1412  * \retval              0 if revalidation failed (no proper lock on client)
1413  * \retval              negative number upon error
1414  */
1415 static int revalidate_statahead_dentry(struct inode *dir,
1416                                        struct ll_statahead_info *sai,
1417                                        struct dentry **dentryp,
1418                                        bool unplug)
1419 {
1420         struct sa_entry *entry = NULL;
1421         struct ll_dentry_data *ldd;
1422         struct ll_inode_info *lli = ll_i2info(dir);
1423         int rc = 0;
1424
1425         ENTRY;
1426
1427         if ((*dentryp)->d_name.name[0] == '.') {
1428                 if (sai->sai_ls_all ||
1429                     sai->sai_miss_hidden >= sai->sai_skip_hidden) {
1430                         /*
1431                          * Hidden dentry is the first one, or statahead
1432                          * thread does not skip so many hidden dentries
1433                          * before "sai_ls_all" enabled as below.
1434                          */
1435                 } else {
1436                         if (!sai->sai_ls_all)
1437                                 /*
1438                                  * It maybe because hidden dentry is not
1439                                  * the first one, "sai_ls_all" was not
1440                                  * set, then "ls -al" missed. Enable
1441                                  * "sai_ls_all" for such case.
1442                                  */
1443                                 sai->sai_ls_all = 1;
1444
1445                         /*
1446                          * Such "getattr" has been skipped before
1447                          * "sai_ls_all" enabled as above.
1448                          */
1449                         sai->sai_miss_hidden++;
1450                         RETURN(-EAGAIN);
1451                 }
1452         }
1453
1454         if (unplug)
1455                 GOTO(out, rc = 1);
1456
1457         entry = sa_get(sai, &(*dentryp)->d_name);
1458         if (!entry)
1459                 GOTO(out, rc = -EAGAIN);
1460
1461         /* if statahead is busy in readdir, help it do post-work */
1462         if (!sa_ready(entry) && sai->sai_in_readpage)
1463                 sa_handle_callback(sai);
1464
1465         if (!sa_ready(entry)) {
1466                 spin_lock(&lli->lli_sa_lock);
1467                 sai->sai_index_wait = entry->se_index;
1468                 spin_unlock(&lli->lli_sa_lock);
1469                 rc = wait_event_idle_timeout(sai->sai_waitq, sa_ready(entry),
1470                                              cfs_time_seconds(30));
1471                 if (rc == 0) {
1472                         /*
1473                          * entry may not be ready, so it may be used by inflight
1474                          * statahead RPC, don't free it.
1475                          */
1476                         entry = NULL;
1477                         GOTO(out, rc = -EAGAIN);
1478                 }
1479         }
1480
1481         /*
1482          * We need to see the value that was set immediately before we
1483          * were woken up.
1484          */
1485         if (smp_load_acquire(&entry->se_state) == SA_ENTRY_SUCC &&
1486             entry->se_inode) {
1487                 struct inode *inode = entry->se_inode;
1488                 struct lookup_intent it = { .it_op = IT_GETATTR,
1489                                             .it_lock_handle =
1490                                                 entry->se_handle };
1491                 __u64 bits;
1492
1493                 rc = md_revalidate_lock(ll_i2mdexp(dir), &it,
1494                                         ll_inode2fid(inode), &bits);
1495                 if (rc == 1) {
1496                         if (!(*dentryp)->d_inode) {
1497                                 struct dentry *alias;
1498
1499                                 alias = ll_splice_alias(inode, *dentryp);
1500                                 if (IS_ERR(alias)) {
1501                                         ll_intent_release(&it);
1502                                         GOTO(out, rc = PTR_ERR(alias));
1503                                 }
1504                                 *dentryp = alias;
1505                                 /*
1506                                  * statahead prepared this inode, transfer inode
1507                                  * refcount from sa_entry to dentry
1508                                  */
1509                                 entry->se_inode = NULL;
1510                         } else if ((*dentryp)->d_inode != inode) {
1511                                 /* revalidate, but inode is recreated */
1512                                 CDEBUG(D_READA,
1513                                        "%s: stale dentry %.*s inode " DFID", statahead inode "DFID "\n",
1514                                        ll_i2sbi(inode)->ll_fsname,
1515                                        (*dentryp)->d_name.len,
1516                                        (*dentryp)->d_name.name,
1517                                        PFID(ll_inode2fid((*dentryp)->d_inode)),
1518                                        PFID(ll_inode2fid(inode)));
1519                                 ll_intent_release(&it);
1520                                 GOTO(out, rc = -ESTALE);
1521                         }
1522
1523                         if ((bits & MDS_INODELOCK_LOOKUP) &&
1524                             d_lustre_invalid(*dentryp))
1525                                 d_lustre_revalidate(*dentryp);
1526                         ll_intent_release(&it);
1527                 }
1528         }
1529 out:
1530         /*
1531          * statahead cached sa_entry can be used only once, and will be killed
1532          * right after use, so if lookup/revalidate accessed statahead cache,
1533          * set dentry ldd_sa_generation to parent lli_sa_generation, later if we
1534          * stat this file again, we know we've done statahead before, see
1535          * dentry_may_statahead().
1536          */
1537         ldd = ll_d2d(*dentryp);
1538         /* ldd can be NULL if llite lookup failed. */
1539         if (ldd)
1540                 ldd->lld_sa_generation = lli->lli_sa_generation;
1541         sa_put(sai, entry);
1542         spin_lock(&lli->lli_sa_lock);
1543         if (sai->sai_task)
1544                 wake_up_process(sai->sai_task);
1545         spin_unlock(&lli->lli_sa_lock);
1546
1547         RETURN(rc);
1548 }
1549
1550 /**
1551  * start statahead thread
1552  *
1553  * \param[in] dir       parent directory
1554  * \param[in] dentry    dentry that triggers statahead, normally the first
1555  *                      dirent under @dir
1556  * \retval              -EAGAIN on success, because when this function is
1557  *                      called, it's already in lookup call, so client should
1558  *                      do it itself instead of waiting for statahead thread
1559  *                      to do it asynchronously.
1560  * \retval              negative number upon error
1561  */
1562 static int start_statahead_thread(struct inode *dir, struct dentry *dentry)
1563 {
1564         struct ll_inode_info *lli = ll_i2info(dir);
1565         struct ll_statahead_info *sai = NULL;
1566         struct dentry *parent = dentry->d_parent;
1567         struct task_struct *task;
1568         struct ll_sb_info *sbi = ll_i2sbi(parent->d_inode);
1569         int first = LS_FIRST_DE;
1570         int rc = 0;
1571
1572         ENTRY;
1573
1574         /* I am the "lli_opendir_pid" owner, only me can set "lli_sai". */
1575         first = is_first_dirent(dir, dentry);
1576         if (first == LS_NOT_FIRST_DE)
1577                 /* It is not "ls -{a}l" operation, no need statahead for it. */
1578                 GOTO(out, rc = -EFAULT);
1579
1580         if (unlikely(atomic_inc_return(&sbi->ll_sa_running) >
1581                                        sbi->ll_sa_running_max)) {
1582                 CDEBUG(D_READA,
1583                        "Too many concurrent statahead instances, avoid new statahead instance temporarily.\n");
1584                 GOTO(out, rc = -EMFILE);
1585         }
1586
1587         sai = ll_sai_alloc(parent);
1588         if (!sai)
1589                 GOTO(out, rc = -ENOMEM);
1590
1591         sai->sai_ls_all = (first == LS_FIRST_DOT_DE);
1592
1593         /*
1594          * if current lli_opendir_key was deauthorized, or dir re-opened by
1595          * another process, don't start statahead, otherwise the newly spawned
1596          * statahead thread won't be notified to quit.
1597          */
1598         spin_lock(&lli->lli_sa_lock);
1599         if (unlikely(lli->lli_sai || !lli->lli_opendir_key ||
1600                      lli->lli_opendir_pid != current->pid)) {
1601                 spin_unlock(&lli->lli_sa_lock);
1602                 GOTO(out, rc = -EPERM);
1603         }
1604         lli->lli_sai = sai;
1605         spin_unlock(&lli->lli_sa_lock);
1606
1607         CDEBUG(D_READA, "start statahead thread: [pid %d] [parent %.*s]\n",
1608                current->pid, parent->d_name.len, parent->d_name.name);
1609
1610         task = kthread_create(ll_statahead_thread, parent, "ll_sa_%u",
1611                               lli->lli_opendir_pid);
1612         if (IS_ERR(task)) {
1613                 spin_lock(&lli->lli_sa_lock);
1614                 lli->lli_sai = NULL;
1615                 spin_unlock(&lli->lli_sa_lock);
1616                 rc = PTR_ERR(task);
1617                 CERROR("can't start ll_sa thread, rc: %d\n", rc);
1618                 GOTO(out, rc);
1619         }
1620
1621         if (ll_i2sbi(parent->d_inode)->ll_flags & LL_SBI_AGL_ENABLED)
1622                 ll_start_agl(parent, sai);
1623
1624         atomic_inc(&ll_i2sbi(parent->d_inode)->ll_sa_total);
1625         sai->sai_task = task;
1626
1627         wake_up_process(task);
1628         /*
1629          * We don't stat-ahead for the first dirent since we are already in
1630          * lookup.
1631          */
1632         RETURN(-EAGAIN);
1633
1634 out:
1635         /*
1636          * once we start statahead thread failed, disable statahead so that
1637          * subsequent stat won't waste time to try it.
1638          */
1639         spin_lock(&lli->lli_sa_lock);
1640         if (lli->lli_opendir_pid == current->pid)
1641                 lli->lli_sa_enabled = 0;
1642         spin_unlock(&lli->lli_sa_lock);
1643
1644         if (sai)
1645                 ll_sai_free(sai);
1646         if (first != LS_NOT_FIRST_DE)
1647                 atomic_dec(&sbi->ll_sa_running);
1648
1649         RETURN(rc);
1650 }
1651
1652 /**
1653  * statahead entry function, this is called when client getattr on a file, it
1654  * will start statahead thread if this is the first dir entry, else revalidate
1655  * dentry from statahead cache.
1656  *
1657  * \param[in]  dir      parent directory
1658  * \param[out] dentryp  dentry to getattr
1659  * \param[in]  unplug   unplug statahead window only (normally for negative
1660  *                      dentry)
1661  * \retval              1 on success
1662  * \retval              0 revalidation from statahead cache failed, caller needs
1663  *                      to getattr from server directly
1664  * \retval              negative number on error, caller often ignores this and
1665  *                      then getattr from server
1666  */
1667 int ll_statahead(struct inode *dir, struct dentry **dentryp, bool unplug)
1668 {
1669         struct ll_statahead_info *sai;
1670
1671         sai = ll_sai_get(dir);
1672         if (sai) {
1673                 int rc;
1674
1675                 rc = revalidate_statahead_dentry(dir, sai, dentryp, unplug);
1676                 CDEBUG(D_READA, "revalidate statahead %.*s: %d.\n",
1677                        (*dentryp)->d_name.len, (*dentryp)->d_name.name, rc);
1678                 ll_sai_put(sai);
1679                 return rc;
1680         }
1681         return start_statahead_thread(dir, *dentryp);
1682 }