[patch 09/10] Use struct path in fs_struct

2007-10-09 Thread Jan Blunck
* Use struct path in fs_struct. Signed-off-by: Andreas Gruenbacher <[EMAIL PROTECTED]> Signed-off-by: Jan Blunck <[EMAIL PROTECTED]> Acked-by: Christoph Hellwig <[EMAIL PROTECTED]> --- fs/dcache.c | 34 --- fs/namei.c| 53 +

Re: [patch 09/10] Use struct path in fs_struct

2007-09-29 Thread Christoph Hellwig
On Sat, Sep 29, 2007 at 11:24:26AM +0200, Christoph Hellwig wrote: > On Fri, Sep 28, 2007 at 10:39:48PM +0200, Andreas Gruenbacher wrote: > > On Friday 28 September 2007 20:42, Christoph Hellwig wrote: > > > __d_path should probably switch to taking a struct path * aswell. > > > > Indeed, it now e

Re: [patch 09/10] Use struct path in fs_struct

2007-09-29 Thread Christoph Hellwig
On Fri, Sep 28, 2007 at 10:39:48PM +0200, Andreas Gruenbacher wrote: > On Friday 28 September 2007 20:42, Christoph Hellwig wrote: > > __d_path should probably switch to taking a struct path * aswell. > > Indeed, it now easily can. Here we go... > > > One less parameter to __d_path > > All call

Re: [patch 09/10] Use struct path in fs_struct

2007-09-28 Thread Andreas Gruenbacher
On Friday 28 September 2007 20:42, Christoph Hellwig wrote: > __d_path should probably switch to taking a struct path * aswell. Indeed, it now easily can. Here we go... One less parameter to __d_path All callers to __d_path pass the dentry and vfsmount of a struct path to __d_path. Pass the str

Re: [patch 09/10] Use struct path in fs_struct

2007-09-28 Thread Christoph Hellwig
> - res = __d_path(dentry, vfsmnt, root, rootmnt, buf, buflen); > + res = __d_path(dentry, vfsmnt, root.dentry, root.mnt, buf, buflen); __d_path should probably switch to taking a struct path * aswell. Otherwise fine. - To unsubscribe from this list: send the line "unsubscribe linux-kerne

[patch 09/10] Use struct path in fs_struct

2007-09-27 Thread jblunck
* Use struct path in fs_struct. Signed-off-by: Andreas Gruenbacher <[EMAIL PROTECTED]> Signed-off-by: Jan Blunck <[EMAIL PROTECTED]> --- fs/dcache.c | 31 + fs/namei.c| 47 +- fs/namespace.c|