Re: [RFC 1/2] FS: mount_bdev from vfs instead of filesystem specific mount function.

2015-01-19 Thread Al Viro
On Mon, Jan 19, 2015 at 09:47:20PM +0100, Fabian Frederick wrote: > Currently, a lot of filesystem mounting functions feature in > file_system_type only to be called from vfs mount_fs and call mount_bdev. > > This patch adds fill_super function to that structure and lets vfs > call mount_bdev

[RFC 1/2] FS: mount_bdev from vfs instead of filesystem specific mount function.

2015-01-19 Thread Fabian Frederick
Currently, a lot of filesystem mounting functions feature in file_system_type only to be called from vfs mount_fs and call mount_bdev. This patch adds fill_super function to that structure and lets vfs call mount_bdev when no mount function is declared. Signed-off-by: Fabian Frederick ---

Re: [RFC 1/2] FS: mount_bdev from vfs instead of filesystem specific mount function.

2015-01-19 Thread Al Viro
On Mon, Jan 19, 2015 at 09:47:20PM +0100, Fabian Frederick wrote: Currently, a lot of filesystem mounting functions feature in file_system_type only to be called from vfs mount_fs and call mount_bdev. This patch adds fill_super function to that structure and lets vfs call mount_bdev when no

[RFC 1/2] FS: mount_bdev from vfs instead of filesystem specific mount function.

2015-01-19 Thread Fabian Frederick
Currently, a lot of filesystem mounting functions feature in file_system_type only to be called from vfs mount_fs and call mount_bdev. This patch adds fill_super function to that structure and lets vfs call mount_bdev when no mount function is declared. Signed-off-by: Fabian Frederick