Re: [PATCH 0/8] remove d_time from dentry

2016-06-22 Thread Miklos Szeredi
Pushed an updated one to git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git d_time Changes: - rename d_allocate to d_init - use kfree_rcu() for fuse and nfs dentry->d_fsdata Thanks, Miklos --- Miklos Szeredi (8): vfs: new d_init method ceph: don't use ->d_time

[PATCH 0/8] remove d_time from dentry

2016-06-22 Thread Miklos Szeredi
dentry->d_time is not used by the VFS anymore, it's essentially a fs-private data. And it just wastes space in the dentry for the vast majority of filesystems. This series moves the few uses to ->d_fsdata. Introduce ->d_allocate() method to make it easier to allocate fs specific structure togeth