Whamcloud - gitweb
Land b1_2 onto HEAD (20040317_2319)
[fs/lustre-release.git] / lustre / kernel_patches / patches / vfs_intent-2.4.21-chaos.patch
1  fs/dcache.c               |   19 ++
2  fs/exec.c                 |   17 +-
3  fs/namei.c                |  295 +++++++++++++++++++++++++++++++++++++++-------
4  fs/namespace.c            |   28 +++-
5  fs/open.c                 |  172 +++++++++++++++++++-------
6  fs/stat.c                 |   52 +++++---
7  include/linux/dcache.h    |   60 +++++++++
8  include/linux/fs.h        |   32 ++++
9  include/linux/fs_struct.h |    4 
10  kernel/exit.c             |    3 
11  kernel/fork.c             |    3 
12  kernel/ksyms.c            |    1 
13  12 files changed, 558 insertions(+), 128 deletions(-)
14
15 Index: linux-ia64/fs/dcache.c
16 ===================================================================
17 --- linux-ia64.orig/fs/dcache.c 2004-03-17 15:47:15.000000000 -0800
18 +++ linux-ia64/fs/dcache.c      2004-03-17 16:05:28.000000000 -0800
19 @@ -186,6 +186,13 @@ int d_invalidate(struct dentry * dentry)
20                 spin_unlock(&dcache_lock);
21                 return 0;
22         }
23 +
24 +       /* network invalidation by Lustre */
25 +       if (dentry->d_flags & DCACHE_LUSTRE_INVALID) {
26 +               spin_unlock(&dcache_lock);
27 +               return 0;
28 +       }
29 +
30         /*
31          * Check whether to do a partial shrink_dcache
32          * to get rid of unused child entries.
33 @@ -850,13 +857,19 @@ void d_delete(struct dentry * dentry)
34   * Adds a dentry to the hash according to its name.
35   */
36   
37 -void d_rehash(struct dentry * entry)
38 +void __d_rehash(struct dentry * entry, int lock)
39  {
40         struct list_head *list = d_hash(entry->d_parent, entry->d_name.hash);
41         if (!list_empty(&entry->d_hash)) BUG();
42 -       spin_lock(&dcache_lock);
43 +       if (lock) spin_lock(&dcache_lock);
44         list_add(&entry->d_hash, list);
45 -       spin_unlock(&dcache_lock);
46 +       if (lock) spin_unlock(&dcache_lock);
47 +}
48 +EXPORT_SYMBOL(__d_rehash);
49 +
50 +void d_rehash(struct dentry * entry)
51 +{
52 +       __d_rehash(entry, 1);
53  }
54  
55  #define do_switch(x,y) do { \
56 Index: linux-ia64/fs/exec.c
57 ===================================================================
58 --- linux-ia64.orig/fs/exec.c   2004-03-17 15:47:15.000000000 -0800
59 +++ linux-ia64/fs/exec.c        2004-03-17 16:05:28.000000000 -0800
60 @@ -119,8 +119,10 @@ asmlinkage long sys_uselib(const char * 
61         struct file * file;
62         struct nameidata nd;
63         int error;
64 +       struct lookup_intent it = { .it_op = IT_OPEN,
65 +                                   .it_flags = FMODE_READ|FMODE_EXEC };
66  
67 -       error = user_path_walk(library, &nd);
68 +       error = user_path_walk_it(library, &nd, &it);
69         if (error)
70                 goto out;
71  
72 @@ -132,7 +134,8 @@ asmlinkage long sys_uselib(const char * 
73         if (error)
74                 goto exit;
75  
76 -       file = dentry_open(nd.dentry, nd.mnt, O_RDONLY);
77 +       file = dentry_open_it(nd.dentry, nd.mnt, O_RDONLY, &it);
78 +       intent_release(&it);
79         error = PTR_ERR(file);
80         if (IS_ERR(file))
81                 goto out;
82 @@ -400,8 +403,10 @@ struct file *open_exec(const char *name)
83         struct inode *inode;
84         struct file *file;
85         int err = 0;
86 +       struct lookup_intent it = { .it_op = IT_OPEN,
87 +                                   .it_flags = FMODE_READ|FMODE_EXEC };
88  
89 -       err = path_lookup(name, LOOKUP_FOLLOW|LOOKUP_POSITIVE, &nd);
90 +       err = path_lookup_it(name, LOOKUP_FOLLOW|LOOKUP_POSITIVE, &nd, &it);
91         file = ERR_PTR(err);
92         if (!err) {
93                 inode = nd.dentry->d_inode;
94 @@ -413,7 +418,8 @@ struct file *open_exec(const char *name)
95                                 err = -EACCES;
96                         file = ERR_PTR(err);
97                         if (!err) {
98 -                               file = dentry_open(nd.dentry, nd.mnt, O_RDONLY);
99 +                               file = dentry_open_it(nd.dentry, nd.mnt, O_RDONLY, &it);
100 +                               intent_release(&it);
101                                 if (!IS_ERR(file)) {
102                                         err = deny_write_access(file);
103                                         if (err) {
104 @@ -425,6 +431,7 @@ out:
105                                 return file;
106                         }
107                 }
108 +               intent_release(&it);
109                 path_release(&nd);
110         }
111         goto out;
112 @@ -1348,7 +1355,7 @@ int do_coredump(long signr, int exit_cod
113                 goto close_fail;
114         if (!file->f_op->write)
115                 goto close_fail;
116 -       if (do_truncate(file->f_dentry, 0) != 0)
117 +       if (do_truncate(file->f_dentry, 0, 0) != 0)
118                 goto close_fail;
119  
120         retval = binfmt->core_dump(signr, regs, file);
121 Index: linux-ia64/fs/namei.c
122 ===================================================================
123 --- linux-ia64.orig/fs/namei.c  2004-03-17 15:47:15.000000000 -0800
124 +++ linux-ia64/fs/namei.c       2004-03-17 16:06:13.000000000 -0800
125 @@ -94,6 +94,13 @@
126   * XEmacs seems to be relying on it...
127   */
128  
129 +void intent_release(struct lookup_intent *it)
130 +{
131 +       if (it && it->it_op_release)
132 +               it->it_op_release(it);
133 +
134 +}
135 +
136  /* In order to reduce some races, while at the same time doing additional
137   * checking and hopefully speeding things up, we copy filenames to the
138   * kernel data space before using them..
139 @@ -260,10 +267,19 @@ void path_release(struct nameidata *nd)
140   * Internal lookup() using the new generic dcache.
141   * SMP-safe
142   */
143 -static struct dentry * cached_lookup(struct dentry * parent, struct qstr * name, int flags)
144 +static struct dentry *cached_lookup(struct dentry *parent, struct qstr *name,
145 +                                   int flags, struct lookup_intent *it)
146  {
147         struct dentry * dentry = d_lookup(parent, name);
148  
149 +       if (dentry && dentry->d_op && dentry->d_op->d_revalidate_it) {
150 +               if (!dentry->d_op->d_revalidate_it(dentry, flags, it) &&
151 +                   !d_invalidate(dentry)) {
152 +                       dput(dentry);
153 +                       dentry = NULL;
154 +               }
155 +               return dentry;
156 +       } else
157         if (dentry && dentry->d_op && dentry->d_op->d_revalidate) {
158                 if (!dentry->d_op->d_revalidate(dentry, flags) && !d_invalidate(dentry)) {
159                         dput(dentry);
160 @@ -281,11 +297,15 @@ static struct dentry * cached_lookup(str
161   * make sure that nobody added the entry to the dcache in the meantime..
162   * SMP-safe
163   */
164 -static struct dentry * real_lookup(struct dentry * parent, struct qstr * name, int flags)
165 +static struct dentry *real_lookup(struct dentry *parent, struct qstr *name,
166 +                                 int flags, struct lookup_intent *it)
167  {
168         struct dentry * result;
169         struct inode *dir = parent->d_inode;
170 +       int counter = 0;
171  
172 +again:
173 +       counter++;
174         down(&dir->i_sem);
175         /*
176          * First re-do the cached lookup just in case it was created
177 @@ -300,6 +320,9 @@ static struct dentry * real_lookup(struc
178                 result = ERR_PTR(-ENOMEM);
179                 if (dentry) {
180                         lock_kernel();
181 +                       if (dir->i_op->lookup_it)
182 +                               result = dir->i_op->lookup_it(dir, dentry, it, flags);
183 +                       else
184                         result = dir->i_op->lookup(dir, dentry);
185                         unlock_kernel();
186                         if (result)
187 @@ -321,6 +344,15 @@ static struct dentry * real_lookup(struc
188                         dput(result);
189                         result = ERR_PTR(-ENOENT);
190                 }
191 +       } else if (result->d_op && result->d_op->d_revalidate_it) {
192 +               if (!result->d_op->d_revalidate_it(result, flags, it) &&
193 +                   !d_invalidate(result)) {
194 +                       dput(result);
195 +                       if (counter > 10)
196 +                               result = ERR_PTR(-ESTALE);
197 +                       if (!IS_ERR(result))
198 +                               goto again;
199 +               }
200         }
201         return result;
202  }
203 @@ -332,7 +364,8 @@ static struct dentry * real_lookup(struc
204   * Without that kind of total limit, nasty chains of consecutive
205   * symlinks can cause almost arbitrarily long lookups. 
206   */
207 -static inline int do_follow_link(struct dentry *dentry, struct nameidata *nd)
208 +static inline int do_follow_link(struct dentry *dentry, struct nameidata *nd,
209 +                                struct lookup_intent *it)
210  {
211         int err;
212         if (current->link_count >= 8)
213 @@ -346,10 +379,12 @@ static inline int do_follow_link(struct 
214         current->link_count++;
215         current->total_link_count++;
216         UPDATE_ATIME(dentry->d_inode);
217 +       nd->intent = it;
218         err = dentry->d_inode->i_op->follow_link(dentry, nd);
219         current->link_count--;
220         return err;
221  loop:
222 +       intent_release(it);
223         path_release(nd);
224         return -ELOOP;
225  }
226 @@ -447,7 +482,8 @@ static inline void follow_dotdot(struct 
227   *
228   * We expect 'base' to be positive and a directory.
229   */
230 -int link_path_walk(const char * name, struct nameidata *nd)
231 +int link_path_walk_it(const char *name, struct nameidata *nd,
232 +                     struct lookup_intent *it)
233  {
234         struct dentry *dentry;
235         struct inode *inode;
236 @@ -524,12 +560,12 @@ int link_path_walk(const char * name, st
237                                 break;
238                 }
239                 /* This does the actual lookups.. */
240 -               dentry = cached_lookup(nd->dentry, &this, LOOKUP_CONTINUE);
241 +               dentry = cached_lookup(nd->dentry, &this, LOOKUP_CONTINUE, NULL);
242                 if (!dentry) {
243                         err = -EWOULDBLOCKIO;
244                         if (atomic)
245                                 break;
246 -                       dentry = real_lookup(nd->dentry, &this, LOOKUP_CONTINUE);
247 +                       dentry = real_lookup(nd->dentry, &this, LOOKUP_CONTINUE, NULL);
248                         err = PTR_ERR(dentry);
249                         if (IS_ERR(dentry))
250                                 break;
251 @@ -547,7 +583,7 @@ int link_path_walk(const char * name, st
252                         goto out_dput;
253  
254                 if (inode->i_op->follow_link) {
255 -                       err = do_follow_link(dentry, nd);
256 +                       err = do_follow_link(dentry, nd, NULL);
257                         dput(dentry);
258                         if (err)
259                                 goto return_err;
260 @@ -563,7 +599,7 @@ int link_path_walk(const char * name, st
261                         nd->dentry = dentry;
262                 }
263                 err = -ENOTDIR; 
264 -               if (!inode->i_op->lookup)
265 +               if (!inode->i_op->lookup && !inode->i_op->lookup_it)
266                         break;
267                 continue;
268                 /* here ends the main loop */
269 @@ -590,12 +626,12 @@ last_component:
270                         if (err < 0)
271                                 break;
272                 }
273 -               dentry = cached_lookup(nd->dentry, &this, 0);
274 +               dentry = cached_lookup(nd->dentry, &this, 0, it);
275                 if (!dentry) {
276                         err = -EWOULDBLOCKIO;
277                         if (atomic)
278                                 break;
279 -                       dentry = real_lookup(nd->dentry, &this, 0);
280 +                       dentry = real_lookup(nd->dentry, &this, 0, it);
281                         err = PTR_ERR(dentry);
282                         if (IS_ERR(dentry))
283                                 break;
284 @@ -605,7 +641,7 @@ last_component:
285                 inode = dentry->d_inode;
286                 if ((lookup_flags & LOOKUP_FOLLOW)
287                     && inode && inode->i_op && inode->i_op->follow_link) {
288 -                       err = do_follow_link(dentry, nd);
289 +                       err = do_follow_link(dentry, nd, it);
290                         dput(dentry);
291                         if (err)
292                                 goto return_err;
293 @@ -619,7 +655,8 @@ last_component:
294                         goto no_inode;
295                 if (lookup_flags & LOOKUP_DIRECTORY) {
296                         err = -ENOTDIR; 
297 -                       if (!inode->i_op || !inode->i_op->lookup)
298 +                       if (!inode->i_op ||
299 +                           (!inode->i_op->lookup && !inode->i_op->lookup_it))
300                                 break;
301                 }
302                 goto return_base;
303 @@ -643,6 +680,27 @@ return_reval:
304                  * Check the cached dentry for staleness.
305                  */
306                 dentry = nd->dentry;
307 +               if (dentry && dentry->d_op && dentry->d_op->d_revalidate_it) {
308 +                       err = -ESTALE;
309 +                       if (!dentry->d_op->d_revalidate_it(dentry, 0, it)) {
310 +                               struct dentry *new;
311 +                               err = permission(dentry->d_parent->d_inode,
312 +                                               MAY_EXEC);
313 +                               if (err)
314 +                                       break;
315 +                               new = real_lookup(dentry->d_parent,
316 +                                               &dentry->d_name, 0, NULL);
317 +                               d_invalidate(dentry);
318 +                               dput(dentry);
319 +                               if (IS_ERR(new)) {
320 +                                       err = PTR_ERR(new);
321 +                                       break;
322 +                               }
323 +                               nd->dentry = new;
324 +                       }
325 +                       if (!nd->dentry->d_inode)
326 +                               goto no_inode;
327 +               } else
328                 if (dentry && dentry->d_op && dentry->d_op->d_revalidate) {
329                         err = -ESTALE;
330                         if (!dentry->d_op->d_revalidate(dentry, 0)) {
331 @@ -656,15 +714,28 @@ out_dput:
332                 dput(dentry);
333                 break;
334         }
335 +       if (err)
336 +               intent_release(it);
337         path_release(nd);
338  return_err:
339         return err;
340  }
341  
342 +int link_path_walk(const char * name, struct nameidata *nd)
343 +{
344 +       return link_path_walk_it(name, nd, NULL);
345 +}
346 +
347 +int path_walk_it(const char * name, struct nameidata *nd, struct lookup_intent *it)
348 +{
349 +       current->total_link_count = 0;
350 +       return link_path_walk_it(name, nd, it);
351 +}
352 +
353  int path_walk(const char * name, struct nameidata *nd)
354  {
355         current->total_link_count = 0;
356 -       return link_path_walk(name, nd);
357 +       return link_path_walk_it(name, nd, NULL);
358  }
359  
360  /* SMP-safe */
361 @@ -749,6 +820,17 @@ walk_init_root(const char *name, struct 
362  }
363  
364  /* SMP-safe */
365 +int path_lookup_it(const char *path, unsigned flags, struct nameidata *nd,
366 +                  struct lookup_intent *it)
367 +{
368 +       int error = 0;
369 +       if (path_init(path, flags, nd))
370 +               error = path_walk_it(path, nd, it);
371 +       return error;
372 +}
373 +
374 +
375 +/* SMP-safe */
376  int path_lookup(const char *path, unsigned flags, struct nameidata *nd)
377  {
378         int error = 0;
379 @@ -763,6 +845,7 @@ int path_init(const char *name, unsigned
380  {
381         nd->last_type = LAST_ROOT; /* if there are only slashes... */
382         nd->flags = flags;
383 +       nd->intent = NULL;
384         if (*name=='/')
385                 return walk_init_root(name,nd);
386         read_lock(&current->fs->lock);
387 @@ -777,7 +860,8 @@ int path_init(const char *name, unsigned
388   * needs parent already locked. Doesn't follow mounts.
389   * SMP-safe.
390   */
391 -struct dentry * lookup_hash(struct qstr *name, struct dentry * base)
392 +struct dentry * lookup_hash_it(struct qstr *name, struct dentry * base,
393 +                              struct lookup_intent *it)
394  {
395         struct dentry * dentry;
396         struct inode *inode;
397 @@ -800,13 +884,16 @@ struct dentry * lookup_hash(struct qstr 
398                         goto out;
399         }
400  
401 -       dentry = cached_lookup(base, name, 0);
402 +       dentry = cached_lookup(base, name, 0, it);
403         if (!dentry) {
404                 struct dentry *new = d_alloc(base, name);
405                 dentry = ERR_PTR(-ENOMEM);
406                 if (!new)
407                         goto out;
408                 lock_kernel();
409 +               if (inode->i_op->lookup_it)
410 +                       dentry = inode->i_op->lookup_it(inode, new, it, 0);
411 +               else
412                 dentry = inode->i_op->lookup(inode, new);
413                 unlock_kernel();
414                 if (!dentry)
415 @@ -818,6 +905,12 @@ out:
416         return dentry;
417  }
418  
419 +struct dentry * lookup_hash(struct qstr *name, struct dentry * base)
420 +{
421 +       return lookup_hash_it(name, base, NULL);
422 +}
423 +
424 +
425  /* SMP-safe */
426  struct dentry * lookup_one_len(const char * name, struct dentry * base, int len)
427  {
428 @@ -839,7 +932,7 @@ struct dentry * lookup_one_len(const cha
429         }
430         this.hash = end_name_hash(hash);
431  
432 -       return lookup_hash(&this, base);
433 +       return lookup_hash_it(&this, base, NULL);
434  access:
435         return ERR_PTR(-EACCES);
436  }
437 @@ -870,6 +963,23 @@ int __user_walk(const char *name, unsign
438         return err;
439  }
440  
441 +int __user_walk_it(const char *name, unsigned flags, struct nameidata *nd,
442 +                  struct lookup_intent *it)
443 +{
444 +       char *tmp;
445 +       int err;
446 +
447 +       tmp = getname(name);
448 +       err = PTR_ERR(tmp);
449 +       if (!IS_ERR(tmp)) {
450 +               err = 0;
451 +               if (path_init(tmp, flags, nd))
452 +                       err = path_walk_it(tmp, nd, it);
453 +               putname(tmp);
454 +       }
455 +       return err;
456 +}
457 +
458  /*
459   * It's inline, so penalty for filesystems that don't use sticky bit is
460   * minimal.
461 @@ -967,7 +1077,8 @@ static inline int lookup_flags(unsigned 
462         return retval;
463  }
464  
465 -int vfs_create(struct inode *dir, struct dentry *dentry, int mode)
466 +static int vfs_create_it(struct inode *dir, struct dentry *dentry, int mode,
467 +                        struct lookup_intent *it)
468  {
469         int error;
470  
471 @@ -980,12 +1091,15 @@ int vfs_create(struct inode *dir, struct
472                 goto exit_lock;
473  
474         error = -EACCES;        /* shouldn't it be ENOSYS? */
475 -       if (!dir->i_op || !dir->i_op->create)
476 +       if (!dir->i_op || (!dir->i_op->create && !dir->i_op->create_it))
477                 goto exit_lock;
478  
479         DQUOT_INIT(dir);
480         lock_kernel();
481 -       error = dir->i_op->create(dir, dentry, mode);
482 +       if (dir->i_op->create_it)
483 +               error = dir->i_op->create_it(dir, dentry, mode, it);
484 +       else
485 +               error = dir->i_op->create(dir, dentry, mode);
486         unlock_kernel();
487  exit_lock:
488         up(&dir->i_zombie);
489 @@ -994,6 +1108,11 @@ exit_lock:
490         return error;
491  }
492  
493 +int vfs_create(struct inode *dir, struct dentry *dentry, int mode)
494 +{
495 +       return vfs_create_it(dir, dentry, mode, NULL);
496 +}
497 +
498  /*
499   *     open_namei()
500   *
501 @@ -1008,7 +1127,8 @@ exit_lock:
502   * for symlinks (where the permissions are checked later).
503   * SMP-safe
504   */
505 -int open_namei(const char * pathname, int flag, int mode, struct nameidata *nd)
506 +int open_namei_it(const char *pathname, int flag, int mode,
507 +                 struct nameidata *nd, struct lookup_intent *it)
508  {
509         int acc_mode, error = 0;
510         struct inode *inode;
511 @@ -1018,11 +1138,14 @@ int open_namei(const char * pathname, in
512  
513         acc_mode = ACC_MODE(flag);
514  
515 +       if (it)
516 +               it->it_flags = flag;
517 +
518         /*
519          * The simplest case - just a plain lookup.
520          */
521         if (!(flag & O_CREAT)) {
522 -               error = path_lookup(pathname, lookup_flags(flag), nd);
523 +               error = path_lookup_it(pathname, lookup_flags(flag), nd, it);
524                 if (error)
525                         return error;
526                 dentry = nd->dentry;
527 @@ -1032,6 +1155,10 @@ int open_namei(const char * pathname, in
528         /*
529          * Create - we need to know the parent.
530          */
531 +       if (it) {
532 +               it->it_create_mode = mode;
533 +               it->it_op |= IT_CREAT;
534 +       }
535         error = path_lookup(pathname, LOOKUP_PARENT, nd);
536         if (error)
537                 return error;
538 @@ -1047,7 +1174,7 @@ int open_namei(const char * pathname, in
539  
540         dir = nd->dentry;
541         down(&dir->d_inode->i_sem);
542 -       dentry = lookup_hash(&nd->last, nd->dentry);
543 +       dentry = lookup_hash_it(&nd->last, nd->dentry, it);
544  
545  do_last:
546         error = PTR_ERR(dentry);
547 @@ -1056,11 +1183,12 @@ do_last:
548                 goto exit;
549         }
550  
551 +       it->it_create_mode = mode;
552         /* Negative dentry, just create the file */
553         if (!dentry->d_inode) {
554                 if (!IS_POSIXACL(dir->d_inode))
555                         mode &= ~current->fs->umask;
556 -               error = vfs_create(dir->d_inode, dentry, mode);
557 +               error = vfs_create_it(dir->d_inode, dentry, mode, it);
558                 up(&dir->d_inode->i_sem);
559                 dput(nd->dentry);
560                 nd->dentry = dentry;
561 @@ -1164,7 +1292,7 @@ ok:
562                 if (!error) {
563                         DQUOT_INIT(inode);
564                         
565 -                       error = do_truncate(dentry, 0);
566 +                       error = do_truncate(dentry, 0, 1);
567                 }
568                 put_write_access(inode);
569                 if (error)
570 @@ -1176,8 +1304,10 @@ ok:
571         return 0;
572  
573  exit_dput:
574 +       intent_release(it);
575         dput(dentry);
576  exit:
577 +       intent_release(it);
578         path_release(nd);
579         return error;
580  
581 @@ -1196,7 +1326,10 @@ do_link:
582          * are done. Procfs-like symlinks just set LAST_BIND.
583          */
584         UPDATE_ATIME(dentry->d_inode);
585 +       nd->intent = it;
586         error = dentry->d_inode->i_op->follow_link(dentry, nd);
587 +       if (error)
588 +               intent_release(it);
589         dput(dentry);
590         if (error)
591                 return error;
592 @@ -1218,13 +1351,20 @@ do_link:
593         }
594         dir = nd->dentry;
595         down(&dir->d_inode->i_sem);
596 -       dentry = lookup_hash(&nd->last, nd->dentry);
597 +       dentry = lookup_hash_it(&nd->last, nd->dentry, it);
598         putname(nd->last.name);
599         goto do_last;
600  }
601  
602 +int open_namei(const char *pathname, int flag, int mode, struct nameidata *nd)
603 +{
604 +       return open_namei_it(pathname, flag, mode, nd, NULL);
605 +}
606 +
607 +
608  /* SMP-safe */
609 -static struct dentry *lookup_create(struct nameidata *nd, int is_dir)
610 +static struct dentry *lookup_create(struct nameidata *nd, int is_dir,
611 +                                   struct lookup_intent *it)
612  {
613         struct dentry *dentry;
614  
615 @@ -1232,7 +1372,7 @@ static struct dentry *lookup_create(stru
616         dentry = ERR_PTR(-EEXIST);
617         if (nd->last_type != LAST_NORM)
618                 goto fail;
619 -       dentry = lookup_hash(&nd->last, nd->dentry);
620 +       dentry = lookup_hash_it(&nd->last, nd->dentry, it);
621         if (IS_ERR(dentry))
622                 goto fail;
623         if (!is_dir && nd->last.name[nd->last.len] && !dentry->d_inode)
624 @@ -1288,7 +1428,20 @@ asmlinkage long sys_mknod(const char * f
625         error = path_lookup(tmp, LOOKUP_PARENT, &nd);
626         if (error)
627                 goto out;
628 -       dentry = lookup_create(&nd, 0);
629 +
630 +       if (nd.last_type != LAST_NORM) {
631 +               error = -EEXIST;
632 +               goto out2;
633 +       }
634 +       if (nd.dentry->d_inode->i_op->mknod_raw) {
635 +               struct inode_operations *op = nd.dentry->d_inode->i_op;
636 +               error = op->mknod_raw(&nd, mode, dev);
637 +               /* the file system wants to use normal vfs path now */
638 +               if (error != -EOPNOTSUPP)
639 +                       goto out2;
640 +       }
641 +
642 +       dentry = lookup_create(&nd, 0, NULL);
643         error = PTR_ERR(dentry);
644  
645         if (!IS_POSIXACL(nd.dentry->d_inode))
646 @@ -1310,6 +1463,7 @@ asmlinkage long sys_mknod(const char * f
647                 dput(dentry);
648         }
649         up(&nd.dentry->d_inode->i_sem);
650 +out2:
651         path_release(&nd);
652  out:
653         putname(tmp);
654 @@ -1357,7 +1511,18 @@ asmlinkage long sys_mkdir(const char * p
655                 error = path_lookup(tmp, LOOKUP_PARENT, &nd);
656                 if (error)
657                         goto out;
658 -               dentry = lookup_create(&nd, 1);
659 +               if (nd.last_type != LAST_NORM) {
660 +                       error = -EEXIST;
661 +                       goto out2;
662 +               }
663 +               if (nd.dentry->d_inode->i_op->mkdir_raw) {
664 +                       struct inode_operations *op = nd.dentry->d_inode->i_op;
665 +                       error = op->mkdir_raw(&nd, mode);
666 +                       /* the file system wants to use normal vfs path now */
667 +                       if (error != -EOPNOTSUPP)
668 +                               goto out2;
669 +               }
670 +               dentry = lookup_create(&nd, 1, NULL);
671                 error = PTR_ERR(dentry);
672                 if (!IS_ERR(dentry)) {
673                         if (!IS_POSIXACL(nd.dentry->d_inode))
674 @@ -1366,6 +1531,7 @@ asmlinkage long sys_mkdir(const char * p
675                         dput(dentry);
676                 }
677                 up(&nd.dentry->d_inode->i_sem);
678 +out2:
679                 path_release(&nd);
680  out:
681                 putname(tmp);
682 @@ -1466,8 +1632,16 @@ asmlinkage long sys_rmdir(const char * p
683                         error = -EBUSY;
684                         goto exit1;
685         }
686 +       if (nd.dentry->d_inode->i_op->rmdir_raw) {
687 +               struct inode_operations *op = nd.dentry->d_inode->i_op;
688 +
689 +               error = op->rmdir_raw(&nd);
690 +               /* the file system wants to use normal vfs path now */
691 +               if (error != -EOPNOTSUPP)
692 +                       goto exit1;
693 +       }
694         down(&nd.dentry->d_inode->i_sem);
695 -       dentry = lookup_hash(&nd.last, nd.dentry);
696 +       dentry = lookup_hash_it(&nd.last, nd.dentry, NULL);
697         error = PTR_ERR(dentry);
698         if (!IS_ERR(dentry)) {
699                 error = vfs_rmdir(nd.dentry->d_inode, dentry);
700 @@ -1525,8 +1699,15 @@ asmlinkage long sys_unlink(const char * 
701         error = -EISDIR;
702         if (nd.last_type != LAST_NORM)
703                 goto exit1;
704 +       if (nd.dentry->d_inode->i_op->unlink_raw) {
705 +               struct inode_operations *op = nd.dentry->d_inode->i_op;
706 +               error = op->unlink_raw(&nd);
707 +               /* the file system wants to use normal vfs path now */
708 +               if (error != -EOPNOTSUPP)
709 +                       goto exit1;
710 +       }
711         down(&nd.dentry->d_inode->i_sem);
712 -       dentry = lookup_hash(&nd.last, nd.dentry);
713 +       dentry = lookup_hash_it(&nd.last, nd.dentry, NULL);
714         error = PTR_ERR(dentry);
715         if (!IS_ERR(dentry)) {
716                 /* Why not before? Because we want correct error value */
717 @@ -1593,15 +1774,27 @@ asmlinkage long sys_symlink(const char *
718                 error = path_lookup(to, LOOKUP_PARENT, &nd);
719                 if (error)
720                         goto out;
721 -               dentry = lookup_create(&nd, 0);
722 +               if (nd.last_type != LAST_NORM) {
723 +                       error = -EEXIST;
724 +                       goto out2;
725 +               }
726 +               if (nd.dentry->d_inode->i_op->symlink_raw) {
727 +                       struct inode_operations *op = nd.dentry->d_inode->i_op;
728 +                       error = op->symlink_raw(&nd, from);
729 +                       /* the file system wants to use normal vfs path now */
730 +                       if (error != -EOPNOTSUPP)
731 +                               goto out2;
732 +               }
733 +               dentry = lookup_create(&nd, 0, NULL);
734                 error = PTR_ERR(dentry);
735                 if (!IS_ERR(dentry)) {
736                         error = vfs_symlink(nd.dentry->d_inode, dentry, from);
737                         dput(dentry);
738                 }
739                 up(&nd.dentry->d_inode->i_sem);
740 +       out2:
741                 path_release(&nd);
742 -out:
743 +       out:
744                 putname(to);
745         }
746         putname(from);
747 @@ -1677,7 +1870,18 @@ asmlinkage long sys_link(const char * ol
748                 error = -EXDEV;
749                 if (old_nd.mnt != nd.mnt)
750                         goto out_release;
751 -               new_dentry = lookup_create(&nd, 0);
752 +               if (nd.last_type != LAST_NORM) {
753 +                       error = -EEXIST;
754 +                       goto out_release;
755 +               }
756 +               if (nd.dentry->d_inode->i_op->link_raw) {
757 +                       struct inode_operations *op = nd.dentry->d_inode->i_op;
758 +                       error = op->link_raw(&old_nd, &nd);
759 +                       /* the file system wants to use normal vfs path now */
760 +                       if (error != -EOPNOTSUPP)
761 +                               goto out_release;
762 +               }
763 +               new_dentry = lookup_create(&nd, 0, NULL);
764                 error = PTR_ERR(new_dentry);
765                 if (!IS_ERR(new_dentry)) {
766                         error = vfs_link(old_nd.dentry, nd.dentry->d_inode, new_dentry);
767 @@ -1721,7 +1925,7 @@ exit:
768   *        locking].
769   */
770  int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
771 -              struct inode *new_dir, struct dentry *new_dentry)
772 +                  struct inode *new_dir, struct dentry *new_dentry)
773  {
774         int error;
775         struct inode *target;
776 @@ -1800,7 +2004,7 @@ out_unlock:
777  }
778  
779  int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry,
780 -              struct inode *new_dir, struct dentry *new_dentry)
781 +                    struct inode *new_dir, struct dentry *new_dentry)
782  {
783         int error;
784  
785 @@ -1888,9 +2092,18 @@ static inline int do_rename(const char *
786         if (newnd.last_type != LAST_NORM)
787                 goto exit2;
788  
789 +       if (old_dir->d_inode->i_op->rename_raw) {
790 +               lock_kernel();
791 +               error = old_dir->d_inode->i_op->rename_raw(&oldnd, &newnd);
792 +               unlock_kernel();
793 +               /* the file system wants to use normal vfs path now */
794 +               if (error != -EOPNOTSUPP)
795 +                       goto exit2;
796 +       }
797 +
798         double_lock(new_dir, old_dir);
799  
800 -       old_dentry = lookup_hash(&oldnd.last, old_dir);
801 +       old_dentry = lookup_hash_it(&oldnd.last, old_dir, NULL);
802         error = PTR_ERR(old_dentry);
803         if (IS_ERR(old_dentry))
804                 goto exit3;
805 @@ -1906,16 +2119,16 @@ static inline int do_rename(const char *
806                 if (newnd.last.name[newnd.last.len])
807                         goto exit4;
808         }
809 -       new_dentry = lookup_hash(&newnd.last, new_dir);
810 +       new_dentry = lookup_hash_it(&newnd.last, new_dir, NULL);
811         error = PTR_ERR(new_dentry);
812         if (IS_ERR(new_dentry))
813                 goto exit4;
814  
815 +
816         lock_kernel();
817         error = vfs_rename(old_dir->d_inode, old_dentry,
818                                    new_dir->d_inode, new_dentry);
819         unlock_kernel();
820 -
821         dput(new_dentry);
822  exit4:
823         dput(old_dentry);
824 @@ -1966,20 +2179,26 @@ out:
825  }
826  
827  static inline int
828 -__vfs_follow_link(struct nameidata *nd, const char *link)
829 +__vfs_follow_link(struct nameidata *nd, const char *link,
830 +                 struct lookup_intent *it)
831  {
832         int res = 0;
833         char *name;
834         if (IS_ERR(link))
835                 goto fail;
836  
837 +       if (it == NULL)
838 +               it = nd->intent;
839 +       else if (it != nd->intent)
840 +               printk("it != nd->intent: tell phil@clusterfs.com\n");
841 +
842         if (*link == '/') {
843                 path_release(nd);
844                 if (!walk_init_root(link, nd))
845                         /* weird __emul_prefix() stuff did it */
846                         goto out;
847         }
848 -       res = link_path_walk(link, nd);
849 +       res = link_path_walk_it(link, nd, it);
850  out:
851         if (current->link_count || res || nd->last_type!=LAST_NORM)
852                 return res;
853 @@ -2003,7 +2222,13 @@ fail:
854  
855  int vfs_follow_link(struct nameidata *nd, const char *link)
856  {
857 -       return __vfs_follow_link(nd, link);
858 +       return __vfs_follow_link(nd, link, NULL);
859 +}
860 +
861 +int vfs_follow_link_it(struct nameidata *nd, const char *link,
862 +                      struct lookup_intent *it)
863 +{
864 +       return __vfs_follow_link(nd, link, it);
865  }
866  
867  /* get the link contents into pagecache */
868 @@ -2045,7 +2270,7 @@ int page_follow_link(struct dentry *dent
869  {
870         struct page *page = NULL;
871         char *s = page_getlink(dentry, &page);
872 -       int res = __vfs_follow_link(nd, s);
873 +       int res = __vfs_follow_link(nd, s, NULL);
874         if (page) {
875                 kunmap(page);
876                 page_cache_release(page);
877 Index: linux-ia64/fs/namespace.c
878 ===================================================================
879 --- linux-ia64.orig/fs/namespace.c      2004-03-17 15:47:15.000000000 -0800
880 +++ linux-ia64/fs/namespace.c   2004-03-17 16:05:28.000000000 -0800
881 @@ -98,6 +98,7 @@ static void detach_mnt(struct vfsmount *
882  {
883         old_nd->dentry = mnt->mnt_mountpoint;
884         old_nd->mnt = mnt->mnt_parent;
885 +       UNPIN(old_nd->dentry, old_nd->mnt, 1);
886         mnt->mnt_parent = mnt;
887         mnt->mnt_mountpoint = mnt->mnt_root;
888         list_del_init(&mnt->mnt_child);
889 @@ -109,6 +110,7 @@ static void attach_mnt(struct vfsmount *
890  {
891         mnt->mnt_parent = mntget(nd->mnt);
892         mnt->mnt_mountpoint = dget(nd->dentry);
893 +       PIN(nd->dentry, nd->mnt, 1);
894         list_add(&mnt->mnt_hash, mount_hashtable+hash(nd->mnt, nd->dentry));
895         list_add(&mnt->mnt_child, &nd->mnt->mnt_mounts);
896         nd->dentry->d_mounted++;
897 @@ -488,14 +490,17 @@ static int do_loopback(struct nameidata 
898  {
899         struct nameidata old_nd;
900         struct vfsmount *mnt = NULL;
901 +       struct lookup_intent it = { .it_op = IT_GETATTR };
902         int err = mount_is_safe(nd);
903         if (err)
904                 return err;
905         if (!old_name || !*old_name)
906                 return -EINVAL;
907 -       err = path_lookup(old_name, LOOKUP_POSITIVE|LOOKUP_FOLLOW, &old_nd);
908 -       if (err)
909 +       err = path_lookup_it(old_name, LOOKUP_POSITIVE|LOOKUP_FOLLOW, &old_nd, &it);
910 +       if (err) {
911 +               intent_release(&it);
912                 return err;
913 +       }
914  
915         down_write(&current->namespace->sem);
916         err = -EINVAL;
917 @@ -518,6 +523,7 @@ static int do_loopback(struct nameidata 
918         }
919  
920         up_write(&current->namespace->sem);
921 +       intent_release(&it);
922         path_release(&old_nd);
923         return err;
924  }
925 @@ -701,6 +707,7 @@ long do_mount(char * dev_name, char * di
926                   unsigned long flags, void *data_page)
927  {
928         struct nameidata nd;
929 +       struct lookup_intent it = { .it_op = IT_GETATTR };
930         int retval = 0;
931         int mnt_flags = 0;
932  
933 @@ -725,10 +732,11 @@ long do_mount(char * dev_name, char * di
934         flags &= ~(MS_NOSUID|MS_NOEXEC|MS_NODEV);
935  
936         /* ... and get the mountpoint */
937 -       retval = path_lookup(dir_name, LOOKUP_FOLLOW|LOOKUP_POSITIVE, &nd);
938 -       if (retval)
939 +       retval = path_lookup_it(dir_name, LOOKUP_FOLLOW|LOOKUP_POSITIVE, &nd, &it);
940 +       if (retval) {
941 +               intent_release(&it);
942                 return retval;
943 -
944 +       }
945         if (flags & MS_REMOUNT)
946                 retval = do_remount(&nd, flags & ~MS_REMOUNT, mnt_flags,
947                                     data_page);
948 @@ -739,6 +747,8 @@ long do_mount(char * dev_name, char * di
949         else
950                 retval = do_add_mount(&nd, type_page, flags, mnt_flags,
951                                       dev_name, data_page);
952 +
953 +       intent_release(&it);
954         path_release(&nd);
955         return retval;
956  }
957 @@ -904,6 +914,8 @@ asmlinkage long sys_pivot_root(const cha
958  {
959         struct vfsmount *tmp;
960         struct nameidata new_nd, old_nd, parent_nd, root_parent, user_nd;
961 +       struct lookup_intent new_it = { .it_op = IT_GETATTR };
962 +       struct lookup_intent old_it = { .it_op = IT_GETATTR };
963         int error;
964  
965         if (!capable(CAP_SYS_ADMIN))
966 @@ -911,14 +923,14 @@ asmlinkage long sys_pivot_root(const cha
967  
968         lock_kernel();
969  
970 -       error = __user_walk(new_root, LOOKUP_POSITIVE|LOOKUP_FOLLOW|LOOKUP_DIRECTORY, &new_nd);
971 +       error = __user_walk_it(new_root, LOOKUP_POSITIVE|LOOKUP_FOLLOW|LOOKUP_DIRECTORY, &new_nd, &new_it);
972         if (error)
973                 goto out0;
974         error = -EINVAL;
975         if (!check_mnt(new_nd.mnt))
976                 goto out1;
977  
978 -       error = __user_walk(put_old, LOOKUP_POSITIVE|LOOKUP_FOLLOW|LOOKUP_DIRECTORY, &old_nd);
979 +       error = __user_walk_it(put_old, LOOKUP_POSITIVE|LOOKUP_FOLLOW|LOOKUP_DIRECTORY, &old_nd, &old_it);
980         if (error)
981                 goto out1;
982  
983 @@ -973,8 +985,10 @@ out2:
984         up(&old_nd.dentry->d_inode->i_zombie);
985         up_write(&current->namespace->sem);
986         path_release(&user_nd);
987 +       intent_release(&old_it);
988         path_release(&old_nd);
989  out1:
990 +       intent_release(&new_it);
991         path_release(&new_nd);
992  out0:
993         unlock_kernel();
994 Index: linux-ia64/fs/open.c
995 ===================================================================
996 --- linux-ia64.orig/fs/open.c   2004-03-17 15:47:15.000000000 -0800
997 +++ linux-ia64/fs/open.c        2004-03-17 16:05:28.000000000 -0800
998 @@ -19,6 +19,8 @@
999  #include <asm/uaccess.h>
1000  
1001  #define special_file(m) (S_ISCHR(m)||S_ISBLK(m)||S_ISFIFO(m)||S_ISSOCK(m))
1002 +extern int path_walk_it(const char *name, struct nameidata *nd,
1003 +                       struct lookup_intent *it);
1004  
1005  int vfs_statfs(struct super_block *sb, struct statfs *buf)
1006  {
1007 @@ -95,9 +97,10 @@ void fd_install(unsigned int fd, struct 
1008         write_unlock(&files->file_lock);
1009  }
1010  
1011 -int do_truncate(struct dentry *dentry, loff_t length)
1012 +int do_truncate(struct dentry *dentry, loff_t length, int called_from_open)
1013  {
1014         struct inode *inode = dentry->d_inode;
1015 +       struct inode_operations *op = dentry->d_inode->i_op;
1016         int error;
1017         struct iattr newattrs;
1018  
1019 @@ -109,7 +112,13 @@ int do_truncate(struct dentry *dentry, l
1020         down(&inode->i_sem);
1021         newattrs.ia_size = length;
1022         newattrs.ia_valid = ATTR_SIZE | ATTR_CTIME;
1023 -       error = notify_change(dentry, &newattrs);
1024 +       if (called_from_open)
1025 +               newattrs.ia_valid |= ATTR_FROM_OPEN;
1026 +       if (op->setattr_raw) {
1027 +               newattrs.ia_valid |= ATTR_RAW;
1028 +               error = op->setattr_raw(inode, &newattrs);
1029 +       } else
1030 +               error = notify_change(dentry, &newattrs);
1031         up(&inode->i_sem);
1032         up_write(&inode->i_alloc_sem);
1033         return error;
1034 @@ -120,12 +129,13 @@ static inline long do_sys_truncate(const
1035         struct nameidata nd;
1036         struct inode * inode;
1037         int error;
1038 +       struct lookup_intent it = { .it_op = IT_GETATTR };
1039  
1040         error = -EINVAL;
1041         if (length < 0) /* sorry, but loff_t says... */
1042                 goto out;
1043  
1044 -       error = user_path_walk(path, &nd);
1045 +       error = user_path_walk_it(path, &nd, &it);
1046         if (error)
1047                 goto out;
1048         inode = nd.dentry->d_inode;
1049 @@ -165,11 +175,13 @@ static inline long do_sys_truncate(const
1050         error = locks_verify_truncate(inode, NULL, length);
1051         if (!error) {
1052                 DQUOT_INIT(inode);
1053 -               error = do_truncate(nd.dentry, length);
1054 +               intent_release(&it);
1055 +               error = do_truncate(nd.dentry, length, 0);
1056         }
1057         put_write_access(inode);
1058  
1059  dput_and_out:
1060 +       intent_release(&it);
1061         path_release(&nd);
1062  out:
1063         return error;
1064 @@ -217,7 +229,7 @@ static inline long do_sys_ftruncate(unsi
1065  
1066         error = locks_verify_truncate(inode, file, length);
1067         if (!error)
1068 -               error = do_truncate(dentry, length);
1069 +               error = do_truncate(dentry, length, 0);
1070  out_putf:
1071         fput(file);
1072  out:
1073 @@ -262,11 +274,13 @@ asmlinkage long sys_utime(char * filenam
1074         struct inode * inode;
1075         struct iattr newattrs;
1076  
1077 -       error = user_path_walk(filename, &nd);
1078 +       error = user_path_walk_it(filename, &nd, NULL);
1079         if (error)
1080                 goto out;
1081         inode = nd.dentry->d_inode;
1082  
1083 +       /* this is safe without a Lustre lock because it only depends
1084 +          on the super block */
1085         error = -EROFS;
1086         if (IS_RDONLY(inode))
1087                 goto dput_and_out;
1088 @@ -281,11 +295,25 @@ asmlinkage long sys_utime(char * filenam
1089                         goto dput_and_out;
1090  
1091                 newattrs.ia_valid |= ATTR_ATIME_SET | ATTR_MTIME_SET;
1092 -       } else {
1093 +       }
1094 +
1095 +       if (inode->i_op->setattr_raw) {
1096 +               struct inode_operations *op = nd.dentry->d_inode->i_op;
1097 +
1098 +               newattrs.ia_valid |= ATTR_RAW;
1099 +               error = op->setattr_raw(inode, &newattrs);
1100 +               /* the file system wants to use normal vfs path now */
1101 +               if (error != -EOPNOTSUPP)
1102 +                       goto dput_and_out;
1103 +       }
1104 +
1105 +       error = -EPERM;
1106 +       if (!times) {
1107                 if (current->fsuid != inode->i_uid &&
1108                     (error = permission(inode,MAY_WRITE)) != 0)
1109                         goto dput_and_out;
1110         }
1111 +
1112         error = notify_change(nd.dentry, &newattrs);
1113  dput_and_out:
1114         path_release(&nd);
1115 @@ -306,12 +334,14 @@ asmlinkage long sys_utimes(char * filena
1116         struct inode * inode;
1117         struct iattr newattrs;
1118  
1119 -       error = user_path_walk(filename, &nd);
1120 +       error = user_path_walk_it(filename, &nd, NULL);
1121  
1122         if (error)
1123                 goto out;
1124         inode = nd.dentry->d_inode;
1125  
1126 +       /* this is safe without a Lustre lock because it only depends
1127 +          on the super block */
1128         error = -EROFS;
1129         if (IS_RDONLY(inode))
1130                 goto dput_and_out;
1131 @@ -326,7 +356,20 @@ asmlinkage long sys_utimes(char * filena
1132                 newattrs.ia_atime = times[0].tv_sec;
1133                 newattrs.ia_mtime = times[1].tv_sec;
1134                 newattrs.ia_valid |= ATTR_ATIME_SET | ATTR_MTIME_SET;
1135 -       } else {
1136 +       }
1137 +
1138 +       if (inode->i_op->setattr_raw) {
1139 +               struct inode_operations *op = nd.dentry->d_inode->i_op;
1140 +
1141 +               newattrs.ia_valid |= ATTR_RAW;
1142 +               error = op->setattr_raw(inode, &newattrs);
1143 +               /* the file system wants to use normal vfs path now */
1144 +               if (error != -EOPNOTSUPP)
1145 +                       goto dput_and_out;
1146 +       }
1147 +
1148 +       error = -EPERM;
1149 +       if (!utimes) {
1150                 if (current->fsuid != inode->i_uid &&
1151                     (error = permission(inode,MAY_WRITE)) != 0)
1152                         goto dput_and_out;
1153 @@ -349,6 +392,7 @@ asmlinkage long sys_access(const char * 
1154         int old_fsuid, old_fsgid;
1155         kernel_cap_t old_cap;
1156         int res;
1157 +       struct lookup_intent it = { .it_op = IT_GETATTR };
1158  
1159         if (mode & ~S_IRWXO)    /* where's F_OK, X_OK, W_OK, R_OK? */
1160                 return -EINVAL;
1161 @@ -366,13 +410,14 @@ asmlinkage long sys_access(const char * 
1162         else
1163                 current->cap_effective = current->cap_permitted;
1164  
1165 -       res = user_path_walk(filename, &nd);
1166 +       res = user_path_walk_it(filename, &nd, &it);
1167         if (!res) {
1168                 res = permission(nd.dentry->d_inode, mode);
1169                 /* SuS v2 requires we report a read only fs too */
1170                 if(!res && (mode & S_IWOTH) && IS_RDONLY(nd.dentry->d_inode)
1171                    && !special_file(nd.dentry->d_inode->i_mode))
1172                         res = -EROFS;
1173 +               intent_release(&it);
1174                 path_release(&nd);
1175         }
1176  
1177 @@ -387,8 +432,9 @@ asmlinkage long sys_chdir(const char * f
1178  {
1179         int error;
1180         struct nameidata nd;
1181 +       struct lookup_intent it = { .it_op = IT_GETATTR };
1182  
1183 -       error = __user_walk(filename,LOOKUP_POSITIVE|LOOKUP_FOLLOW|LOOKUP_DIRECTORY,&nd);
1184 +       error = __user_walk_it(filename,LOOKUP_POSITIVE|LOOKUP_FOLLOW|LOOKUP_DIRECTORY,&nd, &it);
1185         if (error)
1186                 goto out;
1187  
1188 @@ -399,6 +445,7 @@ asmlinkage long sys_chdir(const char * f
1189         set_fs_pwd(current->fs, nd.mnt, nd.dentry);
1190  
1191  dput_and_out:
1192 +       intent_release(&it);
1193         path_release(&nd);
1194  out:
1195         return error;
1196 @@ -438,9 +485,10 @@ asmlinkage long sys_chroot(const char * 
1197  {
1198         int error;
1199         struct nameidata nd;
1200 +       struct lookup_intent it = { .it_op = IT_GETATTR };
1201  
1202 -       error = __user_walk(filename, LOOKUP_POSITIVE | LOOKUP_FOLLOW |
1203 -                     LOOKUP_DIRECTORY | LOOKUP_NOALT, &nd);
1204 +       error = __user_walk_it(filename, LOOKUP_POSITIVE | LOOKUP_FOLLOW |
1205 +                     LOOKUP_DIRECTORY | LOOKUP_NOALT, &nd, &it);
1206         if (error)
1207                 goto out;
1208  
1209 @@ -456,39 +504,56 @@ asmlinkage long sys_chroot(const char * 
1210         set_fs_altroot();
1211         error = 0;
1212  dput_and_out:
1213 +       intent_release(&it);
1214         path_release(&nd);
1215  out:
1216         return error;
1217  }
1218  
1219 -asmlinkage long sys_fchmod(unsigned int fd, mode_t mode)
1220 +int chmod_common(struct dentry *dentry, mode_t mode)
1221  {
1222 -       struct inode * inode;
1223 -       struct dentry * dentry;
1224 -       struct file * file;
1225 -       int err = -EBADF;
1226 +       struct inode *inode = dentry->d_inode;
1227         struct iattr newattrs;
1228 +       int err = -EROFS;
1229  
1230 -       file = fget(fd);
1231 -       if (!file)
1232 +       if (IS_RDONLY(inode))
1233                 goto out;
1234  
1235 -       dentry = file->f_dentry;
1236 -       inode = dentry->d_inode;
1237 +       if (inode->i_op->setattr_raw) {
1238 +               newattrs.ia_mode = mode;
1239 +               newattrs.ia_valid = ATTR_MODE | ATTR_CTIME;
1240 +               newattrs.ia_valid |= ATTR_RAW;
1241 +               err = inode->i_op->setattr_raw(inode, &newattrs);
1242 +               /* the file system wants to use normal vfs path now */
1243 +               if (err != -EOPNOTSUPP)
1244 +                       goto out;
1245 +       }
1246  
1247 -       err = -EROFS;
1248 -       if (IS_RDONLY(inode))
1249 -               goto out_putf;
1250         err = -EPERM;
1251         if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
1252 -               goto out_putf;
1253 +               goto out;
1254 +
1255         if (mode == (mode_t) -1)
1256                 mode = inode->i_mode;
1257         newattrs.ia_mode = (mode & S_IALLUGO) | (inode->i_mode & ~S_IALLUGO);
1258         newattrs.ia_valid = ATTR_MODE | ATTR_CTIME;
1259         err = notify_change(dentry, &newattrs);
1260  
1261 -out_putf:
1262 +out:
1263 +       return err;
1264 +}
1265 +
1266 +asmlinkage long sys_fchmod(unsigned int fd, mode_t mode)
1267 +{
1268 +       struct file * file;
1269 +       int err = -EBADF;
1270 +
1271 +       file = fget(fd);
1272 +       if (!file)
1273 +               goto out;
1274 +
1275 +       err = chmod_common(file->f_dentry, mode);
1276 +
1277         fput(file);
1278  out:
1279         return err;
1280 @@ -497,30 +562,14 @@ out:
1281  asmlinkage long sys_chmod(const char * filename, mode_t mode)
1282  {
1283         struct nameidata nd;
1284 -       struct inode * inode;
1285         int error;
1286 -       struct iattr newattrs;
1287  
1288         error = user_path_walk(filename, &nd);
1289         if (error)
1290                 goto out;
1291 -       inode = nd.dentry->d_inode;
1292 -
1293 -       error = -EROFS;
1294 -       if (IS_RDONLY(inode))
1295 -               goto dput_and_out;
1296  
1297 -       error = -EPERM;
1298 -       if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
1299 -               goto dput_and_out;
1300 +       error = chmod_common(nd.dentry, mode);
1301  
1302 -       if (mode == (mode_t) -1)
1303 -               mode = inode->i_mode;
1304 -       newattrs.ia_mode = (mode & S_IALLUGO) | (inode->i_mode & ~S_IALLUGO);
1305 -       newattrs.ia_valid = ATTR_MODE | ATTR_CTIME;
1306 -       error = notify_change(nd.dentry, &newattrs);
1307 -
1308 -dput_and_out:
1309         path_release(&nd);
1310  out:
1311         return error;
1312 @@ -540,6 +589,20 @@ static int chown_common(struct dentry * 
1313         error = -EROFS;
1314         if (IS_RDONLY(inode))
1315                 goto out;
1316 +
1317 +       if (inode->i_op->setattr_raw) {
1318 +               struct inode_operations *op = dentry->d_inode->i_op;
1319 +
1320 +               newattrs.ia_uid = user;
1321 +               newattrs.ia_gid = group;
1322 +               newattrs.ia_valid = ATTR_UID | ATTR_GID | ATTR_CTIME;
1323 +               newattrs.ia_valid |= ATTR_RAW;
1324 +               error = op->setattr_raw(inode, &newattrs);
1325 +               /* the file system wants to use normal vfs path now */
1326 +               if (error != -EOPNOTSUPP)
1327 +                       return error;
1328 +       }
1329 +
1330         error = -EPERM;
1331         if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
1332                 goto out;
1333 @@ -644,6 +707,7 @@ struct file *filp_open(const char * file
1334  {
1335         int namei_flags, error;
1336         struct nameidata nd;
1337 +       struct lookup_intent it = { .it_op = IT_OPEN };
1338  
1339         namei_flags = flags;
1340         if ((namei_flags+1) & O_ACCMODE)
1341 @@ -651,14 +715,15 @@ struct file *filp_open(const char * file
1342         if (namei_flags & O_TRUNC)
1343                 namei_flags |= 2;
1344  
1345 -       error = open_namei(filename, namei_flags, mode, &nd);
1346 -       if (!error)
1347 -               return dentry_open(nd.dentry, nd.mnt, flags);
1348 +       error = open_namei_it(filename, namei_flags, mode, &nd, &it);
1349 +       if (error)
1350 +               return ERR_PTR(error);
1351  
1352 -       return ERR_PTR(error);
1353 +       return dentry_open_it(nd.dentry, nd.mnt, flags, &it);
1354  }
1355  
1356 -struct file *dentry_open(struct dentry *dentry, struct vfsmount *mnt, int flags)
1357 +struct file *dentry_open_it(struct dentry *dentry, struct vfsmount *mnt,
1358 +                           int flags, struct lookup_intent *it)
1359  {
1360         struct file * f;
1361         struct inode *inode;
1362 @@ -695,7 +760,9 @@ struct file *dentry_open(struct dentry *
1363         }
1364  
1365         if (f->f_op && f->f_op->open) {
1366 +               f->f_it = it;
1367                 error = f->f_op->open(inode,f);
1368 +               f->f_it = NULL;
1369                 if (error)
1370                         goto cleanup_all;
1371         }
1372 @@ -708,6 +775,7 @@ struct file *dentry_open(struct dentry *
1373                                         inode->i_mapping->a_ops->direct_sector_IO)))
1374                 goto cleanup_all;
1375  
1376 +       intent_release(it);
1377         return f;
1378  
1379  cleanup_all:
1380 @@ -722,11 +790,17 @@ cleanup_all:
1381  cleanup_file:
1382         put_filp(f);
1383  cleanup_dentry:
1384 +       intent_release(it);
1385         dput(dentry);
1386         mntput(mnt);
1387         return ERR_PTR(error);
1388  }
1389  
1390 +struct file *dentry_open(struct dentry *dentry, struct vfsmount *mnt, int flags)
1391 +{
1392 +       return dentry_open_it(dentry, mnt, flags, NULL);
1393 +}
1394 +
1395  /*
1396   * Find an empty file descriptor entry, and mark it busy.
1397   */
1398 Index: linux-ia64/fs/stat.c
1399 ===================================================================
1400 --- linux-ia64.orig/fs/stat.c   2004-03-17 15:47:15.000000000 -0800
1401 +++ linux-ia64/fs/stat.c        2004-03-17 16:06:13.000000000 -0800
1402 @@ -17,10 +17,12 @@
1403   * Revalidate the inode. This is required for proper NFS attribute caching.
1404   */
1405  static __inline__ int
1406 -do_revalidate(struct dentry *dentry)
1407 +do_revalidate(struct dentry *dentry, struct lookup_intent *it)
1408  {
1409         struct inode * inode = dentry->d_inode;
1410 -       if (inode->i_op && inode->i_op->revalidate)
1411 +       if (inode->i_op && inode->i_op->revalidate_it)
1412 +               return inode->i_op->revalidate_it(dentry, it);
1413 +       else if (inode->i_op && inode->i_op->revalidate)
1414                 return inode->i_op->revalidate(dentry);
1415         return 0;
1416  }
1417 @@ -143,13 +145,15 @@ static int cp_new_stat(struct inode * in
1418  asmlinkage long sys_stat(char * filename, struct __old_kernel_stat * statbuf)
1419  {
1420         struct nameidata nd;
1421 +       struct lookup_intent it = { .it_op = IT_GETATTR };
1422         int error;
1423  
1424 -       error = user_path_walk(filename, &nd);
1425 +       error = user_path_walk_it(filename, &nd, &it);
1426         if (!error) {
1427 -               error = do_revalidate(nd.dentry);
1428 +               error = do_revalidate(nd.dentry, &it);
1429                 if (!error)
1430                         error = cp_old_stat(nd.dentry->d_inode, statbuf);
1431 +               intent_release(&it);
1432                 path_release(&nd);
1433         }
1434         return error;
1435 @@ -159,13 +163,15 @@ asmlinkage long sys_stat(char * filename
1436  asmlinkage long sys_newstat(char * filename, struct stat * statbuf)
1437  {
1438         struct nameidata nd;
1439 +       struct lookup_intent it = { .it_op = IT_GETATTR };
1440         int error;
1441  
1442 -       error = user_path_walk(filename, &nd);
1443 +       error = user_path_walk_it(filename, &nd, &it);
1444         if (!error) {
1445 -               error = do_revalidate(nd.dentry);
1446 +               error = do_revalidate(nd.dentry, &it);
1447                 if (!error)
1448                         error = cp_new_stat(nd.dentry->d_inode, statbuf);
1449 +               intent_release(&it);
1450                 path_release(&nd);
1451         }
1452         return error;
1453 @@ -180,13 +186,15 @@ asmlinkage long sys_newstat(char * filen
1454  asmlinkage long sys_lstat(char * filename, struct __old_kernel_stat * statbuf)
1455  {
1456         struct nameidata nd;
1457 +       struct lookup_intent it = { .it_op = IT_GETATTR };
1458         int error;
1459  
1460 -       error = user_path_walk_link(filename, &nd);
1461 +       error = user_path_walk_link_it(filename, &nd, &it);
1462         if (!error) {
1463 -               error = do_revalidate(nd.dentry);
1464 +               error = do_revalidate(nd.dentry, &it);
1465                 if (!error)
1466                         error = cp_old_stat(nd.dentry->d_inode, statbuf);
1467 +               intent_release(&it);
1468                 path_release(&nd);
1469         }
1470         return error;
1471 @@ -197,13 +205,15 @@ asmlinkage long sys_lstat(char * filenam
1472  asmlinkage long sys_newlstat(char * filename, struct stat * statbuf)
1473  {
1474         struct nameidata nd;
1475 +       struct lookup_intent it = { .it_op = IT_GETATTR };
1476         int error;
1477  
1478 -       error = user_path_walk_link(filename, &nd);
1479 +       error = user_path_walk_link_it(filename, &nd, &it);
1480         if (!error) {
1481 -               error = do_revalidate(nd.dentry);
1482 +               error = do_revalidate(nd.dentry, &it);
1483                 if (!error)
1484                         error = cp_new_stat(nd.dentry->d_inode, statbuf);
1485 +               intent_release(&it);
1486                 path_release(&nd);
1487         }
1488         return error;
1489 @@ -224,7 +234,7 @@ asmlinkage long sys_fstat(unsigned int f
1490         if (f) {
1491                 struct dentry * dentry = f->f_dentry;
1492  
1493 -               err = do_revalidate(dentry);
1494 +               err = do_revalidate(dentry, NULL);
1495                 if (!err)
1496                         err = cp_old_stat(dentry->d_inode, statbuf);
1497                 fput(f);
1498 @@ -243,7 +253,7 @@ asmlinkage long sys_newfstat(unsigned in
1499         if (f) {
1500                 struct dentry * dentry = f->f_dentry;
1501  
1502 -               err = do_revalidate(dentry);
1503 +               err = do_revalidate(dentry, NULL);
1504                 if (!err)
1505                         err = cp_new_stat(dentry->d_inode, statbuf);
1506                 fput(f);
1507 @@ -265,7 +275,7 @@ asmlinkage long sys_readlink(const char 
1508  
1509                 error = -EINVAL;
1510                 if (inode->i_op && inode->i_op->readlink &&
1511 -                   !(error = do_revalidate(nd.dentry))) {
1512 +                   !(error = do_revalidate(nd.dentry, NULL))) {
1513                         UPDATE_ATIME(inode);
1514                         error = inode->i_op->readlink(nd.dentry, buf, bufsiz);
1515                 }
1516 @@ -341,12 +351,14 @@ asmlinkage long sys_stat64(char * filena
1517  {
1518         struct nameidata nd;
1519         int error;
1520 +       struct lookup_intent it = { .it_op = IT_GETATTR };
1521  
1522 -       error = user_path_walk(filename, &nd);
1523 +       error = user_path_walk_it(filename, &nd, &it);
1524         if (!error) {
1525 -               error = do_revalidate(nd.dentry);
1526 +               error = do_revalidate(nd.dentry, &it);
1527                 if (!error)
1528                         error = cp_new_stat64(nd.dentry->d_inode, statbuf);
1529 +               intent_release(&it);
1530                 path_release(&nd);
1531         }
1532         return error;
1533 @@ -356,12 +368,14 @@ asmlinkage long sys_lstat64(char * filen
1534  {
1535         struct nameidata nd;
1536         int error;
1537 +       struct lookup_intent it = { .it_op = IT_GETATTR };
1538  
1539 -       error = user_path_walk_link(filename, &nd);
1540 +       error = user_path_walk_link_it(filename, &nd, &it);
1541         if (!error) {
1542 -               error = do_revalidate(nd.dentry);
1543 +               error = do_revalidate(nd.dentry, &it);
1544                 if (!error)
1545                         error = cp_new_stat64(nd.dentry->d_inode, statbuf);
1546 +               intent_release(&it);
1547                 path_release(&nd);
1548         }
1549         return error;
1550 @@ -376,7 +390,7 @@ asmlinkage long sys_fstat64(unsigned lon
1551         if (f) {
1552                 struct dentry * dentry = f->f_dentry;
1553  
1554 -               err = do_revalidate(dentry);
1555 +               err = do_revalidate(dentry, NULL);
1556                 if (!err)
1557                         err = cp_new_stat64(dentry->d_inode, statbuf);
1558                 fput(f);
1559 Index: linux-ia64/include/linux/dcache.h
1560 ===================================================================
1561 --- linux-ia64.orig/include/linux/dcache.h      2004-03-17 15:47:15.000000000 -0800
1562 +++ linux-ia64/include/linux/dcache.h   2004-03-17 16:05:28.000000000 -0800
1563 @@ -6,6 +6,51 @@
1564  #include <asm/atomic.h>
1565  #include <linux/mount.h>
1566  #include <linux/kernel.h>
1567 +#include <linux/string.h>
1568 +
1569 +#define IT_OPEN     0x0001
1570 +#define IT_CREAT    0x0002
1571 +#define IT_READDIR  0x0004
1572 +#define IT_GETATTR  0x0008
1573 +#define IT_LOOKUP   0x0010
1574 +#define IT_UNLINK   0x0020
1575 +#define IT_GETXATTR 0x0040
1576 +#define IT_EXEC     0x0080
1577 +#define IT_PIN      0x0100
1578 +
1579 +#define IT_FL_LOCKED   0x0001
1580 +#define IT_FL_FOLLOWED 0x0002 /* set by vfs_follow_link */
1581 +
1582 +#define INTENT_MAGIC 0x19620323
1583 +
1584 +
1585 +struct lustre_intent_data {
1586 +       int       it_disposition;
1587 +       int       it_status;
1588 +       __u64     it_lock_handle;
1589 +       void     *it_data;
1590 +       int       it_lock_mode;
1591 +       int it_int_flags;
1592 +};
1593 +struct lookup_intent {
1594 +       int     it_magic;
1595 +       void    (*it_op_release)(struct lookup_intent *);
1596 +       int     it_op;
1597 +       int     it_flags;
1598 +       int     it_create_mode;
1599 +       union {
1600 +               struct lustre_intent_data lustre;
1601 +       } d;
1602 +};
1603 +
1604 +static inline void intent_init(struct lookup_intent *it, int op, int flags)
1605 +{
1606 +       memset(it, 0, sizeof(*it));
1607 +       it->it_magic = INTENT_MAGIC;
1608 +       it->it_op = op;
1609 +       it->it_flags = flags;
1610 +}
1611 +
1612  
1613  /*
1614   * linux/include/linux/dcache.h
1615 @@ -96,8 +141,22 @@ struct dentry_operations {
1616         int (*d_delete)(struct dentry *);
1617         void (*d_release)(struct dentry *);
1618         void (*d_iput)(struct dentry *, struct inode *);
1619 +       int (*d_revalidate_it)(struct dentry *, int, struct lookup_intent *);
1620 +       void (*d_pin)(struct dentry *, struct vfsmount * , int);
1621 +       void (*d_unpin)(struct dentry *, struct vfsmount *, int);
1622  };
1623  
1624 +#define PIN(de,mnt,flag)  if (de && de->d_op && de->d_op->d_pin) \
1625 +                               de->d_op->d_pin(de, mnt, flag);
1626 +#define UNPIN(de,mnt,flag)  if (de && de->d_op && de->d_op->d_unpin) \
1627 +                               de->d_op->d_unpin(de, mnt, flag);
1628 +
1629 +
1630 +/* defined in fs/namei.c */
1631 +extern void intent_release(struct lookup_intent *it);
1632 +/* defined in fs/dcache.c */
1633 +extern void __d_rehash(struct dentry * entry, int lock);
1634 +
1635  /* the dentry parameter passed to d_hash and d_compare is the parent
1636   * directory of the entries to be compared. It is used in case these
1637   * functions need any directory specific information for determining
1638 @@ -129,6 +188,7 @@ d_iput:             no              no              yes
1639                                          * s_nfsd_free_path semaphore will be down
1640                                          */
1641  #define DCACHE_REFERENCED      0x0008  /* Recently used, don't discard. */
1642 +#define DCACHE_LUSTRE_INVALID  0x0010  /* Lustre invalidated */
1643  
1644  extern spinlock_t dcache_lock;
1645  
1646 Index: linux-ia64/include/linux/fs.h
1647 ===================================================================
1648 --- linux-ia64.orig/include/linux/fs.h  2004-03-17 16:05:28.000000000 -0800
1649 +++ linux-ia64/include/linux/fs.h       2004-03-17 16:05:52.000000000 -0800
1650 @@ -73,6 +73,7 @@ extern int leases_enable, dir_notify_ena
1651  
1652  #define FMODE_READ 1
1653  #define FMODE_WRITE 2
1654 +#define FMODE_EXEC 4
1655  
1656  #define READ 0
1657  #define WRITE 1
1658 @@ -359,6 +360,9 @@ extern void set_bh_page(struct buffer_he
1659  #define ATTR_MTIME_SET 256
1660  #define ATTR_FORCE     512     /* Not a change, but a change it */
1661  #define ATTR_ATTR_FLAG 1024
1662 +#define ATTR_RAW       0x0800  /* file system, not vfs will massage attrs */
1663 +#define ATTR_FROM_OPEN 0x1000  /* called from open path, ie O_TRUNC */
1664 +#define ATTR_CTIME_SET 0x2000
1665  
1666  /*
1667   * This is the Inode Attributes structure, used for notify_change().  It
1668 @@ -496,6 +500,7 @@ struct inode {
1669         struct pipe_inode_info  *i_pipe;
1670         struct block_device     *i_bdev;
1671         struct char_device      *i_cdev;
1672 +       void                    *i_filterdata;
1673  
1674         unsigned long           i_dnotify_mask; /* Directory notify events */
1675         struct dnotify_struct   *i_dnotify; /* for directory notifications */
1676 @@ -598,6 +603,7 @@ struct file {
1677  
1678         /* needed for tty driver, and maybe others */
1679         void                    *private_data;
1680 +       struct lookup_intent    *f_it;
1681  
1682         /* preallocated helper kiobuf to speedup O_DIRECT */
1683         struct kiobuf           *f_iobuf;
1684 @@ -726,6 +732,7 @@ struct nameidata {
1685         struct qstr last;
1686         unsigned int flags;
1687         int last_type;
1688 +       struct lookup_intent *intent;
1689  };
1690  
1691  /*
1692 @@ -846,7 +853,8 @@ extern int vfs_symlink(struct inode *, s
1693  extern int vfs_link(struct dentry *, struct inode *, struct dentry *);
1694  extern int vfs_rmdir(struct inode *, struct dentry *);
1695  extern int vfs_unlink(struct inode *, struct dentry *);
1696 -extern int vfs_rename(struct inode *, struct dentry *, struct inode *, struct dentry *);
1697 +int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
1698 +              struct inode *new_dir, struct dentry *new_dentry);
1699  
1700  /*
1701   * File types
1702 @@ -920,21 +928,32 @@ struct file_operations {
1703  
1704  struct inode_operations {
1705         int (*create) (struct inode *,struct dentry *,int);
1706 +       int (*create_it) (struct inode *,struct dentry *,int, struct lookup_intent *);
1707         struct dentry * (*lookup) (struct inode *,struct dentry *);
1708 +       struct dentry * (*lookup_it) (struct inode *,struct dentry *, struct lookup_intent *, int flags);
1709         int (*link) (struct dentry *,struct inode *,struct dentry *);
1710 +       int (*link_raw) (struct nameidata *,struct nameidata *);
1711         int (*unlink) (struct inode *,struct dentry *);
1712 +       int (*unlink_raw) (struct nameidata *);
1713         int (*symlink) (struct inode *,struct dentry *,const char *);
1714 +       int (*symlink_raw) (struct nameidata *,const char *);
1715         int (*mkdir) (struct inode *,struct dentry *,int);
1716 +       int (*mkdir_raw) (struct nameidata *,int);
1717         int (*rmdir) (struct inode *,struct dentry *);
1718 +       int (*rmdir_raw) (struct nameidata *);
1719         int (*mknod) (struct inode *,struct dentry *,int,int);
1720 +       int (*mknod_raw) (struct nameidata *,int,dev_t);
1721         int (*rename) (struct inode *, struct dentry *,
1722                         struct inode *, struct dentry *);
1723 +       int (*rename_raw) (struct nameidata *, struct nameidata *);
1724         int (*readlink) (struct dentry *, char *,int);
1725         int (*follow_link) (struct dentry *, struct nameidata *);
1726         void (*truncate) (struct inode *);
1727         int (*permission) (struct inode *, int);
1728         int (*revalidate) (struct dentry *);
1729 +       int (*revalidate_it) (struct dentry *, struct lookup_intent *);
1730         int (*setattr) (struct dentry *, struct iattr *);
1731 +       int (*setattr_raw) (struct inode *, struct iattr *);
1732         int (*getattr) (struct dentry *, struct iattr *);
1733         int (*setxattr) (struct dentry *, const char *, const void *, size_t, int);
1734         ssize_t (*getxattr) (struct dentry *, const char *, void *, size_t);
1735 @@ -1131,10 +1150,14 @@ static inline int get_lease(struct inode
1736  
1737  asmlinkage long sys_open(const char *, int, int);
1738  asmlinkage long sys_close(unsigned int);       /* yes, it's really unsigned */
1739 -extern int do_truncate(struct dentry *, loff_t start);
1740 +extern int do_truncate(struct dentry *, loff_t start, int called_from_open);
1741  
1742  extern struct file *filp_open(const char *, int, int);
1743  extern struct file * dentry_open(struct dentry *, struct vfsmount *, int);
1744 +extern int open_namei_it(const char *filename, int namei_flags, int mode,
1745 +                        struct nameidata *nd, struct lookup_intent *it);
1746 +extern struct file *dentry_open_it(struct dentry *dentry, struct vfsmount *mnt,
1747 +                           int flags, struct lookup_intent *it);
1748  extern int filp_close(struct file *, fl_owner_t id);
1749  extern char * getname(const char *);
1750  
1751 @@ -1425,6 +1448,7 @@ typedef int (*read_actor_t)(read_descrip
1752  extern loff_t default_llseek(struct file *file, loff_t offset, int origin);
1753  
1754  extern int FASTCALL(__user_walk(const char *, unsigned, struct nameidata *));
1755 +extern int FASTCALL(__user_walk_it(const char *, unsigned, struct nameidata *, struct lookup_intent *it));
1756  extern int FASTCALL(path_init(const char *, unsigned, struct nameidata *));
1757  extern int FASTCALL(path_walk(const char *, struct nameidata *));
1758  extern int FASTCALL(path_lookup(const char *, unsigned, struct nameidata *));
1759 @@ -1436,6 +1460,8 @@ extern struct dentry * lookup_one_len(co
1760  extern struct dentry * lookup_hash(struct qstr *, struct dentry *);
1761  #define user_path_walk(name,nd)         __user_walk(name, LOOKUP_FOLLOW|LOOKUP_POSITIVE, nd)
1762  #define user_path_walk_link(name,nd) __user_walk(name, LOOKUP_POSITIVE, nd)
1763 +#define user_path_walk_it(name,nd,it)  __user_walk_it(name, LOOKUP_FOLLOW|LOOKUP_POSITIVE, nd, it)
1764 +#define user_path_walk_link_it(name,nd,it) __user_walk_it(name, LOOKUP_POSITIVE, nd, it)
1765  
1766  extern void inode_init_once(struct inode *);
1767  extern void iput(struct inode *);
1768 @@ -1599,6 +1625,8 @@ extern struct file_operations generic_ro
1769  
1770  extern int vfs_readlink(struct dentry *, char *, int, const char *);
1771  extern int vfs_follow_link(struct nameidata *, const char *);
1772 +extern int vfs_follow_link_it(struct nameidata *, const char *,
1773 +                             struct lookup_intent *it);
1774  extern int page_readlink(struct dentry *, char *, int);
1775  extern int page_follow_link(struct dentry *, struct nameidata *);
1776  extern struct inode_operations page_symlink_inode_operations;
1777 Index: linux-ia64/include/linux/fs_struct.h
1778 ===================================================================
1779 --- linux-ia64.orig/include/linux/fs_struct.h   2004-03-17 15:47:15.000000000 -0800
1780 +++ linux-ia64/include/linux/fs_struct.h        2004-03-17 16:05:28.000000000 -0800
1781 @@ -37,10 +37,12 @@ static inline void set_fs_root(struct fs
1782         write_lock(&fs->lock);
1783         old_root = fs->root;
1784         old_rootmnt = fs->rootmnt;
1785 +       PIN(dentry, mnt, 1);
1786         fs->rootmnt = mntget(mnt);
1787         fs->root = dget(dentry);
1788         write_unlock(&fs->lock);
1789         if (old_root) {
1790 +               UNPIN(old_root, old_rootmnt, 1);
1791                 dput(old_root);
1792                 mntput(old_rootmnt);
1793         }
1794 @@ -60,10 +62,12 @@ static inline void set_fs_pwd(struct fs_
1795         write_lock(&fs->lock);
1796         old_pwd = fs->pwd;
1797         old_pwdmnt = fs->pwdmnt;
1798 +       PIN(dentry, mnt, 0);
1799         fs->pwdmnt = mntget(mnt);
1800         fs->pwd = dget(dentry);
1801         write_unlock(&fs->lock);
1802         if (old_pwd) {
1803 +               UNPIN(old_pwd, old_pwdmnt, 0);
1804                 dput(old_pwd);
1805                 mntput(old_pwdmnt);
1806         }
1807 Index: linux-ia64/kernel/exit.c
1808 ===================================================================
1809 --- linux-ia64.orig/kernel/exit.c       2004-03-17 15:47:15.000000000 -0800
1810 +++ linux-ia64/kernel/exit.c    2004-03-17 16:05:28.000000000 -0800
1811 @@ -347,11 +347,14 @@ static inline void __put_fs_struct(struc
1812  {
1813         /* No need to hold fs->lock if we are killing it */
1814         if (atomic_dec_and_test(&fs->count)) {
1815 +               UNPIN(fs->pwd, fs->pwdmnt, 0);
1816 +               UNPIN(fs->root, fs->rootmnt, 1);
1817                 dput(fs->root);
1818                 mntput(fs->rootmnt);
1819                 dput(fs->pwd);
1820                 mntput(fs->pwdmnt);
1821                 if (fs->altroot) {
1822 +                       UNPIN(fs->altroot, fs->altrootmnt, 1);
1823                         dput(fs->altroot);
1824                         mntput(fs->altrootmnt);
1825                 }
1826 Index: linux-ia64/kernel/fork.c
1827 ===================================================================
1828 --- linux-ia64.orig/kernel/fork.c       2004-03-17 15:47:15.000000000 -0800
1829 +++ linux-ia64/kernel/fork.c    2004-03-17 16:05:28.000000000 -0800
1830 @@ -463,10 +463,13 @@ static inline struct fs_struct *__copy_f
1831                 fs->umask = old->umask;
1832                 read_lock(&old->lock);
1833                 fs->rootmnt = mntget(old->rootmnt);
1834 +               PIN(old->pwd, old->pwdmnt, 0);
1835 +               PIN(old->root, old->rootmnt, 1);
1836                 fs->root = dget(old->root);
1837                 fs->pwdmnt = mntget(old->pwdmnt);
1838                 fs->pwd = dget(old->pwd);
1839                 if (old->altroot) {
1840 +                       PIN(old->altroot, old->altrootmnt, 1);
1841                         fs->altrootmnt = mntget(old->altrootmnt);
1842                         fs->altroot = dget(old->altroot);
1843                 } else {
1844 Index: linux-ia64/kernel/ksyms.c
1845 ===================================================================
1846 --- linux-ia64.orig/kernel/ksyms.c      2004-03-17 16:05:28.000000000 -0800
1847 +++ linux-ia64/kernel/ksyms.c   2004-03-17 16:05:51.000000000 -0800
1848 @@ -318,6 +318,7 @@ EXPORT_SYMBOL(read_cache_page);
1849  EXPORT_SYMBOL(set_page_dirty);
1850  EXPORT_SYMBOL(vfs_readlink);
1851  EXPORT_SYMBOL(vfs_follow_link);
1852 +EXPORT_SYMBOL(vfs_follow_link_it);
1853  EXPORT_SYMBOL(page_readlink);
1854  EXPORT_SYMBOL(page_follow_link);
1855  EXPORT_SYMBOL(page_symlink_inode_operations);