]> Pileus Git - ~andy/linux/blob - drivers/staging/lustre/lustre/llite/dcache.c
Merge branch 'pm-cpufreq'
[~andy/linux] / drivers / staging / lustre / lustre / llite / dcache.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.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2012, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36
37 #include <linux/fs.h>
38 #include <linux/sched.h>
39 #include <linux/quotaops.h>
40
41 #define DEBUG_SUBSYSTEM S_LLITE
42
43 #include <obd_support.h>
44 #include <lustre_lite.h>
45 #include <lustre/lustre_idl.h>
46 #include <lustre_dlm.h>
47
48 #include "llite_internal.h"
49
50 static void free_dentry_data(struct rcu_head *head)
51 {
52         struct ll_dentry_data *lld;
53
54         lld = container_of(head, struct ll_dentry_data, lld_rcu_head);
55         OBD_FREE_PTR(lld);
56 }
57
58 /* should NOT be called with the dcache lock, see fs/dcache.c */
59 static void ll_release(struct dentry *de)
60 {
61         struct ll_dentry_data *lld;
62
63         LASSERT(de != NULL);
64         lld = ll_d2d(de);
65         if (lld == NULL) /* NFS copies the de->d_op methods (bug 4655) */
66                 return;
67
68         if (lld->lld_it) {
69                 ll_intent_release(lld->lld_it);
70                 OBD_FREE(lld->lld_it, sizeof(*lld->lld_it));
71         }
72         LASSERT(lld->lld_cwd_count == 0);
73         LASSERT(lld->lld_mnt_count == 0);
74         de->d_fsdata = NULL;
75         call_rcu(&lld->lld_rcu_head, free_dentry_data);
76 }
77
78 /* Compare if two dentries are the same.  Don't match if the existing dentry
79  * is marked invalid.  Returns 1 if different, 0 if the same.
80  *
81  * This avoids a race where ll_lookup_it() instantiates a dentry, but we get
82  * an AST before calling d_revalidate_it().  The dentry still exists (marked
83  * INVALID) so d_lookup() matches it, but we have no lock on it (so
84  * lock_match() fails) and we spin around real_lookup(). */
85 int ll_dcompare(const struct dentry *parent, const struct dentry *dentry,
86                 unsigned int len, const char *str, const struct qstr *name)
87 {
88         if (len != name->len)
89                 return 1;
90
91         if (memcmp(str, name->name, len))
92                 return 1;
93
94         CDEBUG(D_DENTRY, "found name %.*s(%p) flags %#x refc %d\n",
95                name->len, name->name, dentry, dentry->d_flags,
96                d_count(dentry));
97
98         /* mountpoint is always valid */
99         if (d_mountpoint((struct dentry *)dentry))
100                 return 0;
101
102         if (d_lustre_invalid(dentry))
103                 return 1;
104
105         return 0;
106 }
107
108 static inline int return_if_equal(struct ldlm_lock *lock, void *data)
109 {
110         if ((lock->l_flags &
111              (LDLM_FL_CANCELING | LDLM_FL_DISCARD_DATA)) ==
112             (LDLM_FL_CANCELING | LDLM_FL_DISCARD_DATA))
113                 return LDLM_ITER_CONTINUE;
114         return LDLM_ITER_STOP;
115 }
116
117 /* find any ldlm lock of the inode in mdc and lov
118  * return 0    not find
119  *      1    find one
120  *      < 0    error */
121 static int find_cbdata(struct inode *inode)
122 {
123         struct ll_sb_info *sbi = ll_i2sbi(inode);
124         struct lov_stripe_md *lsm;
125         int rc = 0;
126
127         LASSERT(inode);
128         rc = md_find_cbdata(sbi->ll_md_exp, ll_inode2fid(inode),
129                             return_if_equal, NULL);
130         if (rc != 0)
131                  return rc;
132
133         lsm = ccc_inode_lsm_get(inode);
134         if (lsm == NULL)
135                 return rc;
136
137         rc = obd_find_cbdata(sbi->ll_dt_exp, lsm, return_if_equal, NULL);
138         ccc_inode_lsm_put(inode, lsm);
139
140         return rc;
141 }
142
143 /**
144  * Called when last reference to a dentry is dropped and dcache wants to know
145  * whether or not it should cache it:
146  * - return 1 to delete the dentry immediately
147  * - return 0 to cache the dentry
148  * Should NOT be called with the dcache lock, see fs/dcache.c
149  */
150 static int ll_ddelete(const struct dentry *de)
151 {
152         LASSERT(de);
153
154         CDEBUG(D_DENTRY, "%s dentry %.*s (%p, parent %p, inode %p) %s%s\n",
155                d_lustre_invalid((struct dentry *)de) ? "deleting" : "keeping",
156                de->d_name.len, de->d_name.name, de, de->d_parent, de->d_inode,
157                d_unhashed((struct dentry *)de) ? "" : "hashed,",
158                list_empty(&de->d_subdirs) ? "" : "subdirs");
159
160         /* kernel >= 2.6.38 last refcount is decreased after this function. */
161         LASSERT(d_count(de) == 1);
162
163         /* Disable this piece of code temproarily because this is called
164          * inside dcache_lock so it's not appropriate to do lots of work
165          * here. ATTENTION: Before this piece of code enabling, LU-2487 must be
166          * resolved. */
167 #if 0
168         /* if not ldlm lock for this inode, set i_nlink to 0 so that
169          * this inode can be recycled later b=20433 */
170         if (de->d_inode && !find_cbdata(de->d_inode))
171                 clear_nlink(de->d_inode);
172 #endif
173
174         if (d_lustre_invalid((struct dentry *)de))
175                 return 1;
176         return 0;
177 }
178
179 static int ll_set_dd(struct dentry *de)
180 {
181         LASSERT(de != NULL);
182
183         CDEBUG(D_DENTRY, "ldd on dentry %.*s (%p) parent %p inode %p refc %d\n",
184                 de->d_name.len, de->d_name.name, de, de->d_parent, de->d_inode,
185                 d_count(de));
186
187         if (de->d_fsdata == NULL) {
188                 struct ll_dentry_data *lld;
189
190                 OBD_ALLOC_PTR(lld);
191                 if (likely(lld != NULL)) {
192                         spin_lock(&de->d_lock);
193                         if (likely(de->d_fsdata == NULL))
194                                 de->d_fsdata = lld;
195                         else
196                                 OBD_FREE_PTR(lld);
197                         spin_unlock(&de->d_lock);
198                 } else {
199                         return -ENOMEM;
200                 }
201         }
202
203         return 0;
204 }
205
206 int ll_dops_init(struct dentry *de, int block, int init_sa)
207 {
208         struct ll_dentry_data *lld = ll_d2d(de);
209         int rc = 0;
210
211         if (lld == NULL && block != 0) {
212                 rc = ll_set_dd(de);
213                 if (rc)
214                         return rc;
215
216                 lld = ll_d2d(de);
217         }
218
219         if (lld != NULL && init_sa != 0)
220                 lld->lld_sa_generation = 0;
221
222         /* kernel >= 2.6.38 d_op is set in d_alloc() */
223         LASSERT(de->d_op == &ll_d_ops);
224         return rc;
225 }
226
227 void ll_intent_drop_lock(struct lookup_intent *it)
228 {
229         if (it->it_op && it->d.lustre.it_lock_mode) {
230                 struct lustre_handle handle;
231
232                 handle.cookie = it->d.lustre.it_lock_handle;
233
234                 CDEBUG(D_DLMTRACE, "releasing lock with cookie "LPX64
235                        " from it %p\n", handle.cookie, it);
236                 ldlm_lock_decref(&handle, it->d.lustre.it_lock_mode);
237
238                 /* bug 494: intent_release may be called multiple times, from
239                  * this thread and we don't want to double-decref this lock */
240                 it->d.lustre.it_lock_mode = 0;
241                 if (it->d.lustre.it_remote_lock_mode != 0) {
242                         handle.cookie = it->d.lustre.it_remote_lock_handle;
243
244                         CDEBUG(D_DLMTRACE, "releasing remote lock with cookie"
245                                LPX64" from it %p\n", handle.cookie, it);
246                         ldlm_lock_decref(&handle,
247                                          it->d.lustre.it_remote_lock_mode);
248                         it->d.lustre.it_remote_lock_mode = 0;
249                 }
250         }
251 }
252
253 void ll_intent_release(struct lookup_intent *it)
254 {
255         CDEBUG(D_INFO, "intent %p released\n", it);
256         ll_intent_drop_lock(it);
257         /* We are still holding extra reference on a request, need to free it */
258         if (it_disposition(it, DISP_ENQ_OPEN_REF))
259                  ptlrpc_req_finished(it->d.lustre.it_data); /* ll_file_open */
260         if (it_disposition(it, DISP_ENQ_CREATE_REF)) /* create rec */
261                 ptlrpc_req_finished(it->d.lustre.it_data);
262         if (it_disposition(it, DISP_ENQ_COMPLETE)) /* saved req from revalidate
263                                                     * to lookup */
264                 ptlrpc_req_finished(it->d.lustre.it_data);
265
266         it->d.lustre.it_disposition = 0;
267         it->d.lustre.it_data = NULL;
268 }
269
270 void ll_invalidate_aliases(struct inode *inode)
271 {
272         struct dentry *dentry;
273         struct ll_d_hlist_node *p;
274
275         LASSERT(inode != NULL);
276
277         CDEBUG(D_INODE, "marking dentries for ino %lu/%u(%p) invalid\n",
278                inode->i_ino, inode->i_generation, inode);
279
280         ll_lock_dcache(inode);
281         ll_d_hlist_for_each_entry(dentry, p, &inode->i_dentry, d_alias) {
282                 CDEBUG(D_DENTRY, "dentry in drop %.*s (%p) parent %p "
283                        "inode %p flags %d\n", dentry->d_name.len,
284                        dentry->d_name.name, dentry, dentry->d_parent,
285                        dentry->d_inode, dentry->d_flags);
286
287                 if (unlikely(dentry == dentry->d_sb->s_root)) {
288                         CERROR("%s: called on root dentry=%p, fid="DFID"\n",
289                                ll_get_fsname(dentry->d_sb, NULL, 0),
290                                dentry, PFID(ll_inode2fid(inode)));
291                         lustre_dump_dentry(dentry, 1);
292                         dump_stack();
293                 }
294
295                 d_lustre_invalidate(dentry, 0);
296         }
297         ll_unlock_dcache(inode);
298 }
299
300 int ll_revalidate_it_finish(struct ptlrpc_request *request,
301                             struct lookup_intent *it,
302                             struct dentry *de)
303 {
304         int rc = 0;
305
306         if (!request)
307                 return 0;
308
309         if (it_disposition(it, DISP_LOOKUP_NEG))
310                 return -ENOENT;
311
312         rc = ll_prep_inode(&de->d_inode, request, NULL, it);
313
314         return rc;
315 }
316
317 void ll_lookup_finish_locks(struct lookup_intent *it, struct dentry *dentry)
318 {
319         LASSERT(it != NULL);
320         LASSERT(dentry != NULL);
321
322         if (it->d.lustre.it_lock_mode && dentry->d_inode != NULL) {
323                 struct inode *inode = dentry->d_inode;
324                 struct ll_sb_info *sbi = ll_i2sbi(dentry->d_inode);
325
326                 CDEBUG(D_DLMTRACE, "setting l_data to inode %p (%lu/%u)\n",
327                        inode, inode->i_ino, inode->i_generation);
328                 ll_set_lock_data(sbi->ll_md_exp, inode, it, NULL);
329         }
330
331         /* drop lookup or getattr locks immediately */
332         if (it->it_op == IT_LOOKUP || it->it_op == IT_GETATTR) {
333                 /* on 2.6 there are situation when several lookups and
334                  * revalidations may be requested during single operation.
335                  * therefore, we don't release intent here -bzzz */
336                 ll_intent_drop_lock(it);
337         }
338 }
339
340 void ll_frob_intent(struct lookup_intent **itp, struct lookup_intent *deft)
341 {
342         struct lookup_intent *it = *itp;
343
344         if (!it || it->it_op == IT_GETXATTR)
345                 it = *itp = deft;
346
347 }
348
349 int ll_revalidate_it(struct dentry *de, int lookup_flags,
350                      struct lookup_intent *it)
351 {
352         struct md_op_data *op_data;
353         struct ptlrpc_request *req = NULL;
354         struct lookup_intent lookup_it = { .it_op = IT_LOOKUP };
355         struct obd_export *exp;
356         struct inode *parent = de->d_parent->d_inode;
357         int rc;
358
359         CDEBUG(D_VFSTRACE, "VFS Op:name=%s,intent=%s\n", de->d_name.name,
360                LL_IT2STR(it));
361
362         if (de->d_inode == NULL) {
363                 __u64 ibits;
364
365                 /* We can only use negative dentries if this is stat or lookup,
366                    for opens and stuff we do need to query server. */
367                 /* If there is IT_CREAT in intent op set, then we must throw
368                    away this negative dentry and actually do the request to
369                    kernel to create whatever needs to be created (if possible)*/
370                 if (it && (it->it_op & IT_CREAT))
371                         return 0;
372
373                 if (d_lustre_invalid(de))
374                         return 0;
375
376                 ibits = MDS_INODELOCK_UPDATE;
377                 rc = ll_have_md_lock(parent, &ibits, LCK_MINMODE);
378                 GOTO(out_sa, rc);
379         }
380
381         /* Never execute intents for mount points.
382          * Attributes will be fixed up in ll_inode_revalidate_it */
383         if (d_mountpoint(de))
384                 GOTO(out_sa, rc = 1);
385
386         /* need to get attributes in case root got changed from other client */
387         if (de == de->d_sb->s_root) {
388                 rc = __ll_inode_revalidate_it(de, it, MDS_INODELOCK_LOOKUP);
389                 if (rc == 0)
390                         rc = 1;
391                 GOTO(out_sa, rc);
392         }
393
394         exp = ll_i2mdexp(de->d_inode);
395
396         OBD_FAIL_TIMEOUT(OBD_FAIL_MDC_REVALIDATE_PAUSE, 5);
397         ll_frob_intent(&it, &lookup_it);
398         LASSERT(it);
399
400         if (it->it_op == IT_LOOKUP && !d_lustre_invalid(de))
401                 return 1;
402
403         if (it->it_op == IT_OPEN) {
404                 struct inode *inode = de->d_inode;
405                 struct ll_inode_info *lli = ll_i2info(inode);
406                 struct obd_client_handle **och_p;
407                 __u64 *och_usecount;
408                 __u64 ibits;
409
410                 /*
411                  * We used to check for MDS_INODELOCK_OPEN here, but in fact
412                  * just having LOOKUP lock is enough to justify inode is the
413                  * same. And if inode is the same and we have suitable
414                  * openhandle, then there is no point in doing another OPEN RPC
415                  * just to throw away newly received openhandle.  There are no
416                  * security implications too, if file owner or access mode is
417                  * change, LOOKUP lock is revoked.
418                  */
419
420
421                 if (it->it_flags & FMODE_WRITE) {
422                         och_p = &lli->lli_mds_write_och;
423                         och_usecount = &lli->lli_open_fd_write_count;
424                 } else if (it->it_flags & FMODE_EXEC) {
425                         och_p = &lli->lli_mds_exec_och;
426                         och_usecount = &lli->lli_open_fd_exec_count;
427                 } else {
428                         och_p = &lli->lli_mds_read_och;
429                         och_usecount = &lli->lli_open_fd_read_count;
430                 }
431                 /* Check for the proper lock. */
432                 ibits = MDS_INODELOCK_LOOKUP;
433                 if (!ll_have_md_lock(inode, &ibits, LCK_MINMODE))
434                         goto do_lock;
435                 mutex_lock(&lli->lli_och_mutex);
436                 if (*och_p) { /* Everything is open already, do nothing */
437                         /*(*och_usecount)++;  Do not let them steal our open
438                           handle from under us */
439                         SET_BUT_UNUSED(och_usecount);
440                         /* XXX The code above was my original idea, but in case
441                            we have the handle, but we cannot use it due to later
442                            checks (e.g. O_CREAT|O_EXCL flags set), nobody
443                            would decrement counter increased here. So we just
444                            hope the lock won't be invalidated in between. But
445                            if it would be, we'll reopen the open request to
446                            MDS later during file open path */
447                         mutex_unlock(&lli->lli_och_mutex);
448                         return 1;
449                 } else {
450                         mutex_unlock(&lli->lli_och_mutex);
451                 }
452         }
453
454         if (it->it_op == IT_GETATTR) {
455                 rc = ll_statahead_enter(parent, &de, 0);
456                 if (rc == 1)
457                         goto mark;
458                 else if (rc != -EAGAIN && rc != 0)
459                         GOTO(out, rc = 0);
460         }
461
462 do_lock:
463         op_data = ll_prep_md_op_data(NULL, parent, de->d_inode,
464                                      de->d_name.name, de->d_name.len,
465                                      0, LUSTRE_OPC_ANY, NULL);
466         if (IS_ERR(op_data))
467                 return PTR_ERR(op_data);
468
469         if (!IS_POSIXACL(parent) || !exp_connect_umask(exp))
470                 it->it_create_mode &= ~current_umask();
471         it->it_create_mode |= M_CHECK_STALE;
472         rc = md_intent_lock(exp, op_data, NULL, 0, it,
473                             lookup_flags,
474                             &req, ll_md_blocking_ast, 0);
475         it->it_create_mode &= ~M_CHECK_STALE;
476         ll_finish_md_op_data(op_data);
477
478         /* If req is NULL, then md_intent_lock only tried to do a lock match;
479          * if all was well, it will return 1 if it found locks, 0 otherwise. */
480         if (req == NULL && rc >= 0) {
481                 if (!rc)
482                         goto do_lookup;
483                 GOTO(out, rc);
484         }
485
486         if (rc < 0) {
487                 if (rc != -ESTALE) {
488                         CDEBUG(D_INFO, "ll_intent_lock: rc %d : it->it_status "
489                                "%d\n", rc, it->d.lustre.it_status);
490                 }
491                 GOTO(out, rc = 0);
492         }
493
494 revalidate_finish:
495         rc = ll_revalidate_it_finish(req, it, de);
496         if (rc != 0) {
497                 if (rc != -ESTALE && rc != -ENOENT)
498                         ll_intent_release(it);
499                 GOTO(out, rc = 0);
500         }
501
502         if ((it->it_op & IT_OPEN) && de->d_inode &&
503             !S_ISREG(de->d_inode->i_mode) &&
504             !S_ISDIR(de->d_inode->i_mode)) {
505                 ll_release_openhandle(de, it);
506         }
507         rc = 1;
508
509 out:
510         /* We do not free request as it may be reused during following lookup
511          * (see comment in mdc/mdc_locks.c::mdc_intent_lock()), request will
512          * be freed in ll_lookup_it or in ll_intent_release. But if
513          * request was not completed, we need to free it. (bug 5154, 9903) */
514         if (req != NULL && !it_disposition(it, DISP_ENQ_COMPLETE))
515                 ptlrpc_req_finished(req);
516         if (rc == 0) {
517                 /* mdt may grant layout lock for the newly created file, so
518                  * release the lock to avoid leaking */
519                 ll_intent_drop_lock(it);
520                 ll_invalidate_aliases(de->d_inode);
521         } else {
522                 __u64 bits = 0;
523                 __u64 matched_bits = 0;
524
525                 CDEBUG(D_DENTRY, "revalidated dentry %.*s (%p) parent %p "
526                        "inode %p refc %d\n", de->d_name.len,
527                        de->d_name.name, de, de->d_parent, de->d_inode,
528                        d_count(de));
529
530                 ll_set_lock_data(exp, de->d_inode, it, &bits);
531
532                 /* Note: We have to match both LOOKUP and PERM lock
533                  * here to make sure the dentry is valid and no one
534                  * changing the permission.
535                  * But if the client connects < 2.4 server, which will
536                  * only grant LOOKUP lock, so we can only Match LOOKUP
537                  * lock for old server */
538                 if (exp_connect_flags(ll_i2mdexp(de->d_inode)) &&
539                                                         OBD_CONNECT_LVB_TYPE)
540                         matched_bits =
541                                 MDS_INODELOCK_LOOKUP | MDS_INODELOCK_PERM;
542                 else
543                         matched_bits = MDS_INODELOCK_LOOKUP;
544
545                 if (((bits & matched_bits) == matched_bits) &&
546                     d_lustre_invalid(de))
547                         d_lustre_revalidate(de);
548                 ll_lookup_finish_locks(it, de);
549         }
550
551 mark:
552         if (it != NULL && it->it_op == IT_GETATTR && rc > 0)
553                 ll_statahead_mark(parent, de);
554         return rc;
555
556         /*
557          * This part is here to combat evil-evil race in real_lookup on 2.6
558          * kernels.  The race details are: We enter do_lookup() looking for some
559          * name, there is nothing in dcache for this name yet and d_lookup()
560          * returns NULL.  We proceed to real_lookup(), and while we do this,
561          * another process does open on the same file we looking up (most simple
562          * reproducer), open succeeds and the dentry is added. Now back to
563          * us. In real_lookup() we do d_lookup() again and suddenly find the
564          * dentry, so we call d_revalidate on it, but there is no lock, so
565          * without this code we would return 0, but unpatched real_lookup just
566          * returns -ENOENT in such a case instead of retrying the lookup. Once
567          * this is dealt with in real_lookup(), all of this ugly mess can go and
568          * we can just check locks in ->d_revalidate without doing any RPCs
569          * ever.
570          */
571 do_lookup:
572         if (it != &lookup_it) {
573                 /* MDS_INODELOCK_UPDATE needed for IT_GETATTR case. */
574                 if (it->it_op == IT_GETATTR)
575                         lookup_it.it_op = IT_GETATTR;
576                 ll_lookup_finish_locks(it, de);
577                 it = &lookup_it;
578         }
579
580         /* Do real lookup here. */
581         op_data = ll_prep_md_op_data(NULL, parent, NULL, de->d_name.name,
582                                      de->d_name.len, 0, (it->it_op & IT_CREAT ?
583                                                          LUSTRE_OPC_CREATE :
584                                                          LUSTRE_OPC_ANY), NULL);
585         if (IS_ERR(op_data))
586                 return PTR_ERR(op_data);
587
588         rc = md_intent_lock(exp, op_data, NULL, 0,  it, 0, &req,
589                             ll_md_blocking_ast, 0);
590         if (rc >= 0) {
591                 struct mdt_body *mdt_body;
592                 struct lu_fid fid = {.f_seq = 0, .f_oid = 0, .f_ver = 0};
593                 mdt_body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
594
595                 if (de->d_inode)
596                         fid = *ll_inode2fid(de->d_inode);
597
598                 /* see if we got same inode, if not - return error */
599                 if (lu_fid_eq(&fid, &mdt_body->fid1)) {
600                         ll_finish_md_op_data(op_data);
601                         op_data = NULL;
602                         goto revalidate_finish;
603                 }
604                 ll_intent_release(it);
605         }
606         ll_finish_md_op_data(op_data);
607         GOTO(out, rc = 0);
608
609 out_sa:
610         /*
611          * For rc == 1 case, should not return directly to prevent losing
612          * statahead windows; for rc == 0 case, the "lookup" will be done later.
613          */
614         if (it != NULL && it->it_op == IT_GETATTR && rc == 1)
615                 ll_statahead_enter(parent, &de, 1);
616         goto mark;
617 }
618
619 /*
620  * Always trust cached dentries. Update statahead window if necessary.
621  */
622 int ll_revalidate_nd(struct dentry *dentry, unsigned int flags)
623 {
624         struct inode *parent = dentry->d_parent->d_inode;
625         int unplug = 0;
626
627         CDEBUG(D_VFSTRACE, "VFS Op:name=%s,flags=%u\n",
628                dentry->d_name.name, flags);
629
630         if (!(flags & (LOOKUP_PARENT|LOOKUP_OPEN|LOOKUP_CREATE)) &&
631             ll_need_statahead(parent, dentry) > 0) {
632                 if (flags & LOOKUP_RCU)
633                         return -ECHILD;
634
635                 if (dentry->d_inode == NULL)
636                         unplug = 1;
637                 do_statahead_enter(parent, &dentry, unplug);
638                 ll_statahead_mark(parent, dentry);
639         }
640
641         return 1;
642 }
643
644
645 void ll_d_iput(struct dentry *de, struct inode *inode)
646 {
647         LASSERT(inode);
648         if (!find_cbdata(inode))
649                 clear_nlink(inode);
650         iput(inode);
651 }
652
653 struct dentry_operations ll_d_ops = {
654         .d_revalidate = ll_revalidate_nd,
655         .d_release = ll_release,
656         .d_delete  = ll_ddelete,
657         .d_iput    = ll_d_iput,
658         .d_compare = ll_dcompare,
659 };